/* index page  css */


/* CUSTOM 5 COLUMN */

.col-custom-5 {
    width: 20%;
    padding: 0 10px;
}


/* CARD */

.cat-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    text-decoration: none;
    border: 1px solid #f1f1f1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    gap: 15px;
    height: 100%;
}

.cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}


/* ICON */

.cat-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-icon-img {
    width: 65px;
    height: 67px;
    object-fit: contain;
}


/* TEXT */

.cat-name {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
    line-height: 1.4;
}

.cat-count {
    font-size: 14px;
    color: #777;
}


/* RESPONSIVE */

@media(max-width:1199px) {
    .col-custom-5 {
        width: 25%;
    }
}

@media(max-width:991px) {
    .col-custom-5 {
        width: 33.33%;
    }
}

@media(max-width:767px) {
    .col-custom-5 {
        width: 50%;
    }
    .cat-card {
        padding: 15px;
    }
    .cat-icon {
        width: 65px;
        height: 65px;
        min-width: 65px;
    }
    .cat-icon-img {
        width: 45px;
        height: 45px;
    }
}

@media(max-width:575px) {
    .col-custom-5 {
        width: 100%;
    }
}

/* ========================================
   MINI PRODUCTS SECTION
======================================== */

.mini-products-section{
    padding:80px 0;
}

/* COLUMN */

.mini-product-column{
    /* border-radius:18px; */
    padding:24px;
    height:100%;
    border:1px solid #e5e7eb;
    /* box-shadow:0 6px 25px rgba(0,0,0,.05); */
    transition:all .3s ease;
}

.mini-product-column:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

/* HEADER */

.mini-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.mini-heading{
    font-size:20px;
    font-weight:700;
    color:#111827;
    margin:0;
}


.mini-divider{
    height:1px;
    background:#e5e7eb;
    margin-bottom:20px;
}

/* PRODUCT CARD */

.mini-product-card{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px;
    border-radius:12px;
    margin-bottom:12px;
    transition:.3s;
}

.mini-product-card:last-child{
    margin-bottom:0;
}

.mini-product-card:hover{
    background:#f8fafc;
    transform:translateX(5px);
}

/* IMAGE */

.mini-product-image{
    width:80px;
    height:80px;
    flex-shrink:0;
    overflow:hidden;
    border-radius:12px;
    border:1px solid #e5e7eb;
    background:#fff;
}

.mini-product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:6px;
    transition:.4s;
}

.mini-product-card:hover .mini-product-image img{
    transform:scale(1.08);
}

/* CONTENT */

.mini-product-content{
    flex:1;
}

.mini-product-content h4{
    margin:0 0 6px;
    line-height:1.4;
}

.mini-product-content h4 a{
    font-size:14px;
    font-weight:600;
    color:#111827;
    text-decoration:none;
    transition:.3s;
}

.mini-product-content h4 a:hover{
    color:#ff6b00;
}

/* RATING */

.mini-rating{
    margin-bottom:6px;
}

.mini-rating i{
    color:#fbbf24;
    font-size:12px;
    margin-right:2px;
}

/* PRICE */

.mini-price{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.mini-price del{
    color:#94a3b8;
    font-size:12px;
}

.mini-price span{
    color:#ff6b00;
    font-size:16px;
    font-weight:700;
}

/* MOBILE */

@media(max-width:991px){

    .mini-product-column{
        margin-bottom:20px;
    }
}

@media(max-width:768px){

    .mini-products-section{
        padding:60px 0;
    }

    .mini-product-column{
        padding:20px;
    }

    .mini-heading{
        font-size:18px;
    }

    .mini-product-image{
        width:70px;
        height:70px;
    }

    .mini-product-content h4 a{
        font-size:13px;
    }

    .mini-price span{
        font-size:15px;
    }
}

@media(max-width:576px){

    .mini-header{
        margin-bottom:12px;
    }

    .mini-heading{
        font-size:17px;
    }

    .mini-view-btn{
        font-size:12px;
    }

    .mini-product-card{
        gap:10px;
        padding:8px;
    }

    .mini-product-image{
        width:65px;
        height:65px;
    }
}

/* SECTION */

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 700px;
}


/* BG */

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: all .8s ease;
}


/* WRAPPER */

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    /* SAME HEIGHT */
    justify-content: space-between;
    width: 100%;
    min-height: 700px;
    border-radius: 24px;
    overflow: hidden;
}


/* LEFT SECTION */

.hero-content {
    width: 50%;
    flex: 0 0 50%;
    /* SAME WIDTH */
    min-height: 700px;
    /* SAME HEIGHT */
    padding: 80px 70px;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* RIGHT SECTION */

.hero-image {
    width: 50%;
    flex: 0 0 50%;
    /* SAME WIDTH */
    min-height: 700px;
    /* SAME HEIGHT */
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* SLIDER */

.hero-product-slider {
    position: relative;
    width: 100%;
    height: 100%;
}


/* ITEM */

.hero-product-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(120px);
    transition: all .8s ease;
}


/* ACTIVE */

.hero-product-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* BIG BG TEXT */

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 10px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}


/* LEFT BG TEXT */

.hero-bg-left {
    color: rgba(255, 255, 255, 0.09);
    z-index: 1;
    animation: textSlideRight 1s ease;
}


/* RIGHT BG TEXT */

.hero-bg-right {
    color: rgba(0, 0, 0, 0.05);
    z-index: 1;
    animation: textSlideRight 1s ease;
}


/* IMAGE */

.hero-category-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 540px;
    object-fit: contain;
    animation: floatImage 4s ease-in-out infinite;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.18));
}


/* BADGE */

.hero-badge {
    position: relative;
    z-index: 3;
    display: inline-block;
    width: max-content;
    padding: 10px 22px;
    border-radius: 50px;
    background: #fff;
    color: #ff5e3a;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}


/* TITLE */

.hero-title {
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    transition: .4s ease;
}


/* PRICE */

.hero-price {
    position: relative;
    z-index: 3;
    color: #fff;
    margin-bottom: 18px;
}

.from-text {
    font-size: 24px;
}

.price {
    font-size: 60px;
    font-weight: 800;
    margin-left: 10px;
}


/* DESC */

.hero-desc {
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    max-width: 520px;
    margin-bottom: 35px;
}


/* BTN */

.hero-btn {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    padding: 18px 38px;
    border-radius: 10px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    transition: .3s ease;
}

.hero-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
}


/* FLOAT */

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-16px);
    }
    100% {
        transform: translateY(0px);
    }
}


/* BG TEXT ANIMATION */

@keyframes textSlideRight {
    0% {
        opacity: 0;
        transform: translate(100px, -50%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}


/* LEFT CONTENT ANIMATION */

.fade-slide {
    animation: fadeSlide .7s ease;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


/* MOBILE */

@media(max-width:991px) {
    .hero-wrapper {
        flex-direction: column;
    }
    .hero-content,
    .hero-image {
        width: 100%;
        flex: 0 0 100%;
        min-height: auto;
    }
    .hero-content {
        padding: 60px 30px;
        text-align: center;
        align-items: center;
    }
    .hero-image {
        min-height: 420px;
    }
    .hero-title {
        font-size: 42px;
    }
    .price {
        font-size: 42px;
    }
    .hero-bg-text {
        font-size: 60px;
    }
    .hero-category-image {
        max-width: 220px;
        height: 320px;
    }
}

@media(max-width:576px) {
    .hero-title {
        font-size: 32px;
    }
    .price {
        font-size: 34px;
    }
    .hero-desc {
        font-size: 15px;
        line-height: 25px;
    }
    .hero-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    .hero-bg-text {
        font-size: 42px;
    }
    .hero-category-image {
        max-width: 170px;
        height: 240px;
    }
}

.promo-card {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}


/* image zoom effect */

.promo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 4s ease;
    z-index: 0;
}


/* hover zoom */

.promo-card:hover::before {
    transform: scale(1.12);
}


/* content above image */

.promo-content,
.promo-badge,
.promo-overlay {
    position: relative;
    z-index: 2;
}

.safety-banner-section {
    padding: 40px 0;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.safety-banner {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    text-decoration: none;
    transition: 0.4s ease;
}


/* smooth image zoom */

.safety-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 4s ease;
    z-index: 0;
}

.safety-banner:hover::before {
    transform: scale(1.12);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.banner-content h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #fff;
}

.banner-content p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #f1f1f1;
}

.price {
    color: var(--orange);
    font-size: 24px;
    font-weight: 800;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--orange);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s ease;
}

.banner-btn:hover {
    background: #fff;
    color: var(--orange);
}

.safety-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}


/* tablet */

@media(max-width:991px) {
    .banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .safety-banner {
        min-height: 280px;
    }
    .banner-content h2 {
        font-size: 24px;
    }
}


/* mobile */

@media(max-width:575px) {
    .banner-grid {
        grid-template-columns: 1fr;
    }
    .safety-banner {
        min-height: 240px;
        padding: 20px;
    }
    .banner-content h2 {
        font-size: 20px;
    }
    .banner-content p {
        font-size: 14px;
    }
    .banner-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

.special-offer-section {
    position: relative;
    overflow: hidden;
}


/* FULL BACKGROUND */

.special-offer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}


/* CONTENT */

.special-offer-section .container {
    position: relative;
    z-index: 2;
}


/* TOP CONTENT */

.offer-left {
    text-align: center;
    color: #fff;
    max-width: 850px;
    margin: auto;
    padding-top: 80px;
}

.offer-tag {
    color: #ff7b00;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.offer-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
}


/* COUNTDOWN */

.offer-countdown {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.count-box {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    transition: .4s ease;
}

.count-box:hover {
    transform: translateY(-8px);
}

.count-box h2 {
    margin: 0;
    font-size: 34px;
    font-weight: 800;
    color: #ff6600;
}

.count-box span {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
}


/* PRODUCT AREA */

.product-carousel-wrapper {
    position: relative;
    margin-top: -90px;
    padding-bottom: 70px;
    /*width:1000px;*/
    margin:auto;
}


/* PRODUCT CARD */

.offer-product {
    margin-top: 10px;
    background: #fff;
    overflow: hidden;
    padding: 28px;
    /*border: 2px solid rgba(255, 102, 0, .15);*/
    transition: .5s ease;
    position: relative;
}


/* PRODUCT CARD */

/*.offer-product {*/
/*    position: relative;*/
/*    background: #fff;*/
/*    padding: 28px;*/
/*    overflow: hidden;*/
/*    transition: .4s ease;*/
/*    border: 1px solid rgba(255, 102, 0, .15);*/
/*}*/


/* SNAKE BORDER */

.offer-product::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient( 90deg, transparent, transparent, #ff6600, #ff9900, transparent, transparent);
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity .3s ease;
    animation: snakeBorder 4s linear infinite;
    z-index: 1;
}


/* INNER WHITE AREA */

.offer-product::after {
    content: "";
    position: absolute;
    inset: 2px;
    /*background: #fff;*/
    z-index: 2;
}


/* CONTENT ABOVE */

.offer-product-inner {
    position: relative;
    z-index: 3;
}


/* HOVER EFFECT */

.offer-product:hover::before {
    opacity: 1;
}

.offer-product:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(255, 102, 0, .15);
}


/* SNAKE ANIMATION */

@keyframes snakeBorder {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* .offer-product:hover{
    transform: translateY(-8px);
    border-color: #ff6600;
    box-shadow: 0 18px 45px rgba(255,102,0,.18);
} */

.offer-product-inner {
    display: flex;
    align-items: center;
    gap: 28px;
}


/* IMAGE */

.offer-product-img {
    width: 280px;
    overflow: hidden;
    flex-shrink: 0;
}

.offer-product-img img {
    width: 100%;
    transition: 1s;
}

.offer-product:hover img {
    transform: scale(1.08);
}


/* CONTENT */

.offer-product-content {
    flex: 1;
}

.product-category {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.product-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #111;
}

.product-price {
    margin-bottom: 18px;
}

.product-price del {
    color: #999;
    margin-right: 10px;
    font-size: 18px;
}

.product-price ins {
    text-decoration: none;
    color: #ff6600;
    font-size: 30px;
    font-weight: 800;
}

.product-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 22px;
}


/* PROGRESS */

.progress {
    height: 8px;
    background: #eee;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, #ff6600, #ff9800);
}

.sold-text {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 22px;
}


/* BUTTON */

.shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #ff6600;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    transition: .4s ease;
}

.shop-btn:hover {
    background: #111;
    transform: translateY(-3px);
}


/* SLICK ARROWS */

.product-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: #ff6600;
    color: #fff;
    z-index: 10;
    font-size: 0;
    transition: .4s ease;
}

.product-slider .slick-arrow:hover {
    background: #111;
}

.product-slider .slick-prev {
    left: -20px;
}

.product-slider .slick-next {
    right: -20px;
}

.product-slider .slick-prev::before {
    content: "←";
    font-size: 22px;
}

.product-slider .slick-next::before {
    content: "→";
    font-size: 22px;
}


/* RESPONSIVE */

@media(max-width:991px) {
    .offer-title {
        font-size: 40px;
    }
    .product-carousel-wrapper {
        margin-top: -60px;
    }
    .offer-product-inner {
        flex-direction: column;
        text-align: center;
    }
    .offer-product-img {
        width: 100%;
    }
}

@media(max-width:575px) {
    .offer-left {
        padding-top: 60px;
    }
    .offer-title {
        font-size: 28px;
    }
    .count-box {
        width: 75px;
        height: 75px;
    }
    .count-box h2 {
        font-size: 24px;
    }
    .offer-product {
        padding: 20px;
    }
    .product-title {
        font-size: 24px;
    }
    .product-slider .slick-prev {
        left: 0;
    }
    .product-slider .slick-next {
        right: 0;
    }
}


/*your custom css goes here*/

.custom-menu-wrapper {
    z-index: 999;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: #fff;
    text-decoration: none !important;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    height: 50px;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: rgba(0, 0, 0, 0.15);
    color: #fff !important;
}


/* =========================
    MEGA MENU
========================= */

.mega-menu-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 900px;
    background: #fff;
    padding: 30px;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    z-index: 99999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 8px 8px;
}

.mega-menu:hover .mega-menu-box {
    display: grid;
}

.mega-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column ul li {
    margin-bottom: 10px;
}

.mega-column ul li a {
    color: #444 !important;
    background: transparent !important;
    padding: 0 !important;
    height: auto !important;
    font-size: 14px;
    display: block;
}

.mega-column ul li a:hover {
    color: #0d6efd !important;
    padding-left: 5px !important;
}


/* =========================
    SUBMENU
========================= */

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    display: none;
    z-index: 99999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 8px 8px;
}

.dropdown-menu-custom:hover .submenu {
    display: block;
}

.submenu li a {
    color: #333 !important;
    background: #fff !important;
    padding: 12px 18px !important;
    display: block;
    height: auto !important;
    font-size: 14px;
}

.submenu li a:hover {
    background: #f5f5f5 !important;
    color: #0d6efd !important;
}

/* Desktop */
.desktop-shop-link{
    display:block !important;
}

.mobile-shop-link{
    display:none !important;
}

/* Mobile */
@media (max-width:991px){

    .desktop-shop-link{
        display:none !important;
    }

    .mobile-shop-link{
        display:block !important;
    }

    .mega-menu-box{
        display:none !important;
    }
}
/* =========================
    CART AREA
========================= */

.nav-cart-area {
    background: rgba(0, 0, 0, 0.12);
}


.custom-menu-wrapper{
    width:100%;
    z-index:999;
}

.custom-menu-wrapper.fixed-menu{
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}



@keyframes stickySlide{
    from{
        transform:translateY(-100%);
    }
    to{
        transform:translateY(0);
    }
}


/* =========================
    RESPONSIVE
========================= */

@media(max-width:1199px) {
    .mega-menu-box {
        width: 700px;
    }
}

.search-input-box .form-control:focus {
    border-width: 2px !important;
    border-color: orange !important;
}

.nav-user-info:hover .nav-user-img {
    border-color: orange !important;
}

.hov-text-orange {
    transition: color 0.3s ease;
}

.hov-text-orange:hover {
    color: orange !important;
}



/* home page top brand css */

.brands-section{
    padding:80px 0;
    background:#f8fafc;
    overflow:hidden;
}

.brands-slider{
    overflow:hidden;
    position:relative;
}

.brands-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation: scrollBrands 25s linear infinite;
}

.brand-card{
    min-width:220px;
    height:100px;
    background:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    color:#334155;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    border:1px solid #e2e8f0;
}

.brand-card:hover{
    transform:translateY(-5px);
}
.brands-track:hover{
    animation-play-state: paused;
}


@keyframes scrollBrands{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}




/* contact page css */


.contactUs-hero{
    padding:50px 0 90px;
    position:relative;
    overflow:hidden;

    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f4f8ff 25%,
        #e8f2ff 60%,
        #eef7ff 100%
    );
}



.contact-badge{
    display:inline-block;
    padding:8px 16px;
    background:rgba(255,113,31,.15);
    color:#ff711f;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.contact-title{
    font-size:58px;
    font-weight:800;
     color:#1e293b;
    line-height:1.1;
    margin-bottom:20px;
}

.contact-desc{
     color:#1e293b;
    font-size:17px;
    line-height:1.8;
    max-width:600px;
}

.hero-contact-list{
    margin-top:30px;
}

.hero-contact-item{
    display:flex;
    align-items:center;
    gap:15px;
   color:#1e293b;
    margin-bottom:15px;
}

.hero-contact-item i{
    color:#ff711f;
}

.contact-icon .fas.fa-phone-alt{
    transform: rotate(90deg);
}

.hero-contact-item .fas.fa-phone-alt{
    transform: rotate(90deg);
}


.contact-img{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(15,23,42,.15);
    transition:.4s ease;
}

.contact-img:hover{
    transform:translateY(-5px);
}


.contact-info-section{
    margin-top:-70px;
    position:relative;
    z-index:5;
}

.contact-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
}

.contact-icon{
    width:75px;
    height:75px;
    background:#fff3eb;
    color:#ff711f;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:26px;
    margin-bottom:20px;
}



.contact-form-section{
    padding:90px 0;
    background:#f8fafc;
}

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.contact-form-box h2{
    font-size:34px;
    font-weight:800;
    margin-bottom:30px;
}

.form-control{
    height:60px;
    border-radius:12px;
    border:1px solid #e5e7eb;
}

textarea.form-control{
    height:auto;
}

.contact-btn{
    background:#ff711f;
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.contact-btn:hover{
    background:#e96312;
}

.contact-map{
    height:100%;
    min-height:520px;
    overflow:hidden;
    border-radius:24px;
}

.contact-map iframe{
    width:100%;
    height:100%;
    border:none;
}

/* MOBILE */

@media(max-width:768px){

    .contact-title{
        font-size:40px;
    }

    .contact-form-box{
        padding:25px;
    }

    .contact-map{
        margin-top:30px;
        min-height:350px;
    }
} 


/*responsive slider*/

@media (max-width: 991px) {

    .hero-section{
        padding:40px 0;
        position:relative;
    }

    /* FULL ORANGE BG */
    .hero-bg{
        background: linear-gradient(
            135deg,
            rgba(255,94,58,0.96) 0%,
            rgba(255,94,58,0.90) 100%
        ) !important;
    }

    .hero-wrapper{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:25px;
    }

    /* CONTENT FIRST */
    .hero-content{
        width:100%;
        order:1;
        text-align:center;
        padding:20px;
    }

    /* IMAGE SECOND */
    .hero-image{
        width:100%;
        order:2;
        display:flex;
        justify-content:center;
        align-items:center;
    }

    .hero-product-slider{
        width:100%;
    }

    .hero-product-item{
        width:100%;
        text-align:center;
    }

    .hero-category-image{
        width:100%;
        max-width:420px;
        height:auto;
        display:block;
        margin:auto;
    }

    .hero-title{
        font-size:42px !important;
        line-height:1.2;
        color:#fff;
        margin-bottom:15px;
    }

    .hero-desc{
        font-size:16px;
        line-height:1.6;
        color:#fff;
        max-width:100%;
        margin-bottom:20px;
    }

    .hero-btn{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        margin:auto;
    }

    .hero-bg-left,
    .hero-bg-right{
        display:none !important;
    }
}

/* TABLET */

@media (max-width:768px){

    .hero-section{
        padding:30px 0;
        min-height:auto;
    }

    .hero-title{
        font-size:34px !important;
    }

    .hero-badge{
        font-size:12px;
        padding:8px 16px;
    }

    .hero-desc{
        font-size:15px;
    }

    .hero-category-image{
        max-width:340px;
    }
}

/* MOBILE */

@media (max-width:576px){

    .hero-section{
        padding:20px 0;
        overflow:hidden;
    }
.hero-image{
    min-height: 240px;
}
    .hero-wrapper{
        gap:15px;
    }

    .hero-content{
        padding:10px;
    }

    .hero-title{
        font-size:28px !important;
        line-height:1.3;
        margin-bottom:10px;
    }

    .hero-desc{
        font-size:14px;
        line-height:1.6;
        margin-bottom:15px;
    }

    .hero-badge{
        font-size:11px;
        padding:6px 14px;
        margin-bottom:10px;
    }

    .hero-btn{
        width:auto;
        min-width:180px;
        padding:12px 20px;
        font-size:14px;
    }

    .hero-category-image{
        width:100%;
        max-width:280px;
        margin-top:10px;
    }

    .hero-wrapper {
    
    min-height: 0px;
    }
}

/* EXTRA SMALL */

@media (max-width:375px){

    .hero-title{
        font-size:24px !important;
    }

    .hero-desc{
        font-size:9px;
    }

    .hero-category-image{
        max-width:220px;
    }

    .hero-btn{
        font-size:13px;
        padding:10px 16px;
    }
}


/* =========================
   CATEGORY RESPONSIVE
========================= */

/* DESKTOP - 5 CARDS */
.col-custom-5{
    width:20%;
    padding-left:12px;
    padding-right:12px;
}

/* TABLET - 3 CARDS */
@media (max-width:991px){

    .col-custom-5{
        width:33.3333%;
    }

}

/* MOBILE - 2 CARDS */
@media (max-width:767px){

    .section-header{
        gap:15px;
    }

    .section-title{
        font-size:24px;
    }

    .section-sub{
        font-size:14px;
    }

    .btn-view-all{
        font-size:13px;
        padding:8px 14px;
    }

    .col-custom-5{
        width:50%;
        padding-left:8px;
        padding-right:8px;
    }

    .cat-card{
        /*flex-direction:column;*/
        text-align:center;
        padding:15px 10px;
        height:100%;
    }

    .cat-icon{
        margin-right:0 !important;
        margin-bottom:10px;
    }

    .cat-icon-img{
        width:50px;
        height:50px;
        object-fit:contain;
    }

    .cat-name{
        font-size:14px;
        line-height:1.4;
        margin-bottom:4px;
    }

    .cat-count{
        font-size:12px;
    }
}

/* SMALL MOBILE */
@media (max-width:480px){

    .section-title{
        font-size:22px;
    }

    .section-sub{
        font-size:13px;
    }

    .cat-card{
        padding:12px 8px;
    }

    .cat-icon-img{
        width:42px;
        height:42px;
    }

    .cat-name{
        font-size:13px;
    }

    .cat-count{
        font-size:11px;
    }
}


@media (max-width: 991px){
    .pl-s{
        padding-left: 60px !important;
    }
}


.cart-icon-svg{
    width:24px;
    height:24px;
}

@media (max-width: 991px){
    .cart-icon-svg{
               width: 24px;
        height: 24px;
      
    }
    .nav-links li a {
    color: #fff;
    text-decoration: none !important;
    /* padding: 15px 18px; */
    display: flex;
    align-items: center;
     gap: 2px; 
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    height: 50px;
}

}

/*@media (min-width: 325px) and (max-width: 500px) {*/

/*    .cart-icon-svg{*/
/*        width: 2px;*/
/*        height: 20px;*/
/*        margin-right: 1px;*/
/*    }*/
    
/*}*/





