html, body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

/* ================= NAVBAR ================= */

.navbar-custom{
    background:#d8c6df;
    padding:16px 0;
    box-shadow:0 2px 12px rgba(0,0,0,0.05);
    z-index:999;
}

.navbar-custom .container{
    max-width:1240px;
    align-items:center;
}

/* LOGO */
.navbar-logo{
    height:48px;
    width:auto;
    object-fit:contain;
}

.navbar-brand{
    margin-right:28px;
}

/* NAV LINKS */
.nav-link{
    font-weight:600;
    font-size:15px;
    margin-right:8px;
    padding:10px 14px !important;
    color:#000 !important;
    position:relative;
    transition:.3s;
}

.nav-link:hover{
    color:#6f2dbd !important;
}

.nav-link.active{
    color:#6f2dbd !important;
    font-weight:700;
}


/* DROPDOWN */
.dropdown-menu{
    border:none;
    border-radius:8px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.dropdown-item:hover{
    background:#f3e9fb;
    color:#6f2dbd;
}

/* BUTTON */
.btn-touch{
    background:#6f2dbd;
    color:#fff;
    padding:11px 24px;
    border-radius:10px;
    font-weight:600;
    font-size:15px;
    transition:.3s;
}

.btn-touch:hover{
    background:#5a22a0;
    transform:translateY(-2px);
}

/* SEARCH ICON */
.search-icon{
    font-size:22px;
    cursor:pointer;
    transition:.3s;
}

.search-icon:hover{
    color:#6f2dbd;
}

/* SEARCH INPUT */
.search-input{
    position:absolute;
    top:45px;
    right:0;
    width:0;
    opacity:0;
    transition:0.4s ease;
}

.search-input.active{
    width:220px;
    opacity:1;
}

.mobile-search-panel{
    width:100%;
    max-height:0;
    opacity:0;
    overflow:hidden;
    transition:max-height .25s ease, opacity .2s ease, margin-top .2s ease;
}

.mobile-search-panel.active{
    max-height:68px;
    opacity:1;
    margin-top:10px;
}

.mobile-search-input{
    border:1px solid #d4bddf;
    border-radius:10px;
    height:42px;
    font-size:14px;
}

.mobile-search-input:focus{
    border-color:#6f2dbd;
    box-shadow:0 0 0 .15rem rgba(111,45,189,.15);
}

/* MOBILE SEARCH ICON */
.mobile-search{
    font-size:18px;
    cursor:pointer;
}

/* ================= CART ================= */

.cart-link{
    position:relative;
    display:inline-block;
    color:#000;
    text-decoration:none;
}

.cart-icon{
    font-size:22px;
    transition:.3s;
}

.account-link{
    color:#000;
    display:inline-flex;
    align-items:center;
    text-decoration:none;
}

.account-link i{
    font-size:25px;
    transition:.3s;
}

.account-link.dropdown-toggle::after{
    display:none !important;
}

.account-link:hover i{
    color:#6f2dbd;
}

.account-menu{
    min-width:170px;
    border:none;
    border-radius:10px;
    box-shadow:0 12px 28px rgba(0,0,0,0.12);
    padding:8px;
    margin-top:0 !important;
    transform:translateY(8px);
}

.account-menu .dropdown-item{
    border-radius:8px;
    font-size:14px;
    font-weight:500;
    padding:9px 12px;
}

.account-menu .dropdown-item:hover{
    background:#f3e9fb;
    color:#6f2dbd;
}

.cart-link:hover .cart-icon{
    color:#6f2dbd;
}

/* RED BADGE */
.cart-badge{
    position:absolute;
    top:-6px;
    right:-10px;
    background:#ff1e1e;
    color:#fff;
    font-size:12px;
    font-weight:600;
    width:20px;
    height:20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.mobile-cart{
    font-size:20px;
}

.nav-mobile-icon{
    width:34px;
    height:34px;
    margin-right:10px !important;
    display:flex;
    align-items:center;
    justify-content:center;
}

.mobile-account i{
    font-size:25px;
}

.mobile-account .account-menu{
    margin-top:12px !important;
    transform:none;
}

.mobile-search .search-icon{
    font-size:21px;
}

.mobile-cart .cart-icon{
    font-size:21px;
}

.navbar-toggler{
    border:none;
    box-shadow:none !important;
    padding:6px 8px;
}

.navbar-toggler-icon{
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse{
    justify-content:center !important;
    flex-grow:1;
}

.navbar-nav{
    width:100%;
    align-items:center;
    gap:2px;
}

.navbar-nav > .nav-item{
    display:flex;
    align-items:center;
}

.nav-icon-item{
    display:flex;
    align-items:center;
    justify-content:center;
}

@media (min-width:992px){
    .nav-cart-item{
        margin-left:auto !important;
        margin-right:0 !important;
    }

    .nav-account-item{
        margin-left:10px !important;
    }

    .navbar-nav > .nav-item:last-child{
        margin-left:14px !important;
    }

    .nav-icon-item .search-icon,
    .nav-icon-item .cart-icon,
    .nav-icon-item .account-link i{
        line-height:1;
    }
}

/* RESPONSIVE */
@media(max-width:991px){
    .navbar-custom{
        padding:12px 0;
    }

    .navbar-custom .container{
        display:flex;
        flex-wrap:wrap;
        align-items:center;
    }

    .navbar-brand{
        margin-right:auto;
    }

    .navbar-collapse{
        background:#d8c6df;
        padding:20px;
        border-radius:10px;
        margin-top:10px;
        flex-basis:100%;
        width:100%;
        justify-content:flex-start !important;
    }

    .navbar-nav{
        width:100%;
        align-items:flex-start !important;
        gap:0;
    }

    .nav-cart-item,
    .nav-account-item{
        margin-left:0 !important;
    }

    .navbar-nav .dropdown-menu{
        position:static;
        float:none;
        width:100%;
    }

    .nav-link{
        margin-right:0;
        margin-bottom:10px;
        padding:10px 0;
        font-size:16px;
    }

    .dropdown-menu{
        margin-top:4px;
        border-radius:8px;
        padding:6px 0;
    }

    .dropdown-item{
        padding:10px 14px;
        font-size:15px;
    }

    .btn-touch{
        width:100%;
        text-align:center;
        margin-top:10px;
    }

    .navbar-logo{
        height:38px;
    }

    .search-icon{
        font-size:22px;
    }

    .mobile-cart .cart-icon{
        font-size:24px;
    }

    .nav-mobile-icon{
        width:32px;
        height:32px;
        margin-right:8px !important;
    }

    .mobile-search .search-icon,
    .mobile-cart .cart-icon{
        font-size:20px;
    }

    .mobile-account i{
        font-size:24px;
    }

    .mobile-search-panel{
        order:4;
    }
}


/* ================= HERO ================= */

.hero{
    background:#f3f3f3;
    padding:0;
    height:120vh;
    min-height:100vh;
    display:flex;
    align-items:center;
}


.hero h1{
    font-size:52px;
    font-weight:800;
    line-height:1.2;
}

.hero span{
    color:#6f2dbd;
}

.hero p{
    font-size:18px;
    margin:25px 0;
    color:#333;
}

.btn-brand{
    background:#6f2dbd;
    color:#fff;
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
}

.btn-brand:hover{
    background:#5a22a0;
    color:#fff;
}

.hero-img{
    max-width:100%;
    animation: float 4s ease-in-out infinite;
}

.hero-brand-showcase{
    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

.hero-brand-showcase .hero-img{
    max-height:320px;
    width:auto;
    object-fit:contain;
}

@keyframes float{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0px);}
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){
    .hero{
        text-align:center;
        height:95vh;
        min-height:95vh;
    }

    .hero h1{
        font-size:38px;
    }

    .hero-img{
        margin-top:40px;
    }

    .hero .swiper-slide{
        min-height:78vh;
        padding:85px 0 60px;
    }

    .hero-brand-showcase{
        margin-top:12px;
    }

    .hero-brand-showcase .hero-img{
        max-height:170px;
    }
}

@media(max-width:576px){
    .hero{
        height:88vh;
        min-height:88vh;
    }

    .hero h1{
        font-size:30px;
    }

    .hero p{
        font-size:16px;
    }
}
/* ================= PAGINATION ================= */
.pagination{
    gap:8px;
    flex-wrap:wrap;
}

.pagination .page-item .page-link{
    border-radius:10px;
    border:1px solid #ddd;
    color:#222;
    font-weight:600;
    padding:8px 14px;
}

.pagination .page-item.active .page-link{
    background:#6f2dbd;
    border-color:#6f2dbd;
    color:#fff;
}

.pagination .page-item .page-link:hover{
    background:#f3ebff;
    border-color:#6f2dbd;
    color:#6f2dbd;
}

.pagination .page-item.disabled .page-link{
    color:#a0a0a0;
    background:#f7f7f7;
}


/* HERO STATS SECTION  */
.hero-stats{
    background:#6c3bb8;
    padding:25px 0;   
    color:#fff;
}

.stat-box{
    text-align:center;
    padding:5px 10px;  
}

.stat-number{
    font-size:36px;    
    font-weight:800;
    line-height:1;
}

.stat-text{
    margin-top:5px;   
    font-size:16px;
    font-weight:500;
    opacity:.95;
}


/* RESPONSIVE */
@media (max-width:768px){

    .hero-stats{
        padding:20px 0;
    }

    .stat-number{
        font-size:28px;
    }

    .stat-text{
        font-size:14px;
    }

}

@media (max-width:480px){

    .hero-stats{
        padding:18px 0;
    }

    .stat-number{
        font-size:24px;
    }

}

/* ================= BRANDS SECTION ================= */

.brands-section{
    background:#f6f6f6;
}

.section-title{
    font-size:40px;
    font-weight:800;
}

.section-subtitle{
    max-width:750px;
    margin:15px auto 0;
    font-size:18px;
    color:#555;
}

/* Brand Card */
.brand-card{
    background:#dccbe6;
    padding:30px;
    border-radius:20px;
    display:flex;
    gap:25px;
    align-items:center;
    transition:.4s ease;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.brand-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* Logo */
.brand-logo{
    min-width:140px;
    height:140px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.brand-logo img{
    max-width:90px;
}

/* Content */
.brand-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.brand-header h4{
    font-weight:700;
    margin-bottom:5px;
}

.brand-header i{
    font-size:20px;
    color:#6f2dbd;
}

.brand-tag{
    font-size:13px;
    font-weight:600;
    letter-spacing:.5px;
    color:#6f2dbd;
    display:block;
    margin-bottom:10px;
}

.brand-content p{
    color:#444;
    margin-bottom:10px;
}

.catalog-link{
    color:#6f2dbd;
    font-weight:600;
    text-decoration:none;
    position:relative;
}

.catalog-link::after{
    content:"";
    position:absolute;
    width:0%;
    height:2px;
    background:#6f2dbd;
    bottom:-3px;
    left:0;
    transition:.3s;
}

.catalog-link:hover::after{
    width:100%;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .brand-card{
        flex-direction:column;
        text-align:center;
    }

    .brand-header{
        justify-content:center;
        gap:10px;
    }

    .brand-logo{
        margin-bottom:15px;
    }

}

/* ================= PREMIUM SECTION ================= */

.premium-section{
    background:#f5f5f5;
}

.premium-title{
    font-size:38px;
    font-weight:800;
    color:#6f2dbd;
}

.premium-text{
    max-width:750px;
    margin-top:20px;
    font-size:16px;
    color:#555;
    line-height:1.7;
}

.premium-image img{
    max-height:350px;
    width:100%;
    object-fit:cover;
}



/* ================= WHY SECTION ================= */

.why-section{
    background:#ffffff;
}

.why-title{
    font-size:34px;
    font-weight:800;
    color:#6f2dbd;
}

.why-text{
    margin-top:15px;
    font-size:15px;
    color:#555;
    line-height:1.7;
}

/* Feature Boxes */

.feature-box{
    background:#f6f6f6;
    padding:20px;
    border-radius:12px;
    transition:.3s ease;
    height:100%;
}

.feature-box:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.icon-box{
    width:50px;
    height:50px;
    background:#6f2dbd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    font-size:20px;
    margin-bottom:12px;
}

.feature-box h6{
    font-weight:700;
    margin-bottom:6px;
}

.feature-box p{
    font-size:14px;
    color:#666;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .premium-title{
        font-size:30px;
    }

    .why-title{
        font-size:28px;
    }

}

@media(max-width:768px){

    .feature-box{
        text-align:center;
    }

    .icon-box{
        margin:auto;
        margin-bottom:12px;
    }

}

/* ================= PRODUCTS SECTION ================= */

.products-section{
    background:linear-gradient(180deg,#d6c1e6,#9a78c9);
    padding-top:80px;
    padding-bottom:80px;
}

.products-title{
    font-size:48px;
    font-weight:800;
}

.explore-btn{
    background:#fff;
    padding:10px 18px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    color:#000;
    font-size:14px;
    transition:.3s;
}

.explore-btn:hover{
    background:#6f2dbd;
    color:#fff;
}

/* ================= PRODUCT CARD ================= */

.product-card{
    background:#e9e3ee;
    border-radius:20px;
    padding:20px;
    position:relative;
    transition:.3s ease;
    height:100%;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* BRAND BADGE */

.brand-badge{
    position:absolute;
    top:-12px;
    left:20px;
    padding:6px 14px;
    font-size:14px;
    border-radius:6px;
    color:#fff;
    font-weight:600;
}

.brand-badge.red{
    background:#c62828;
}

.brand-badge.green{
    background:#2e7d32;
}

.brand-badge.yellow{
    background:#f4c430;   
    color:#000;          
}

.brand-badge.light-green{
    background:#4CAF50;   
    color:#fff;
}



/* PRODUCT IMAGE */

.product-img{
    text-align:center;
    margin-top:20px;
    margin-bottom:20px;
}

.product-img img{
    max-height:230px;
    object-fit:contain;
}

/* BODY */

.product-title-rating{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.product-title-rating h6{
    font-weight:600;
}

.rating{
    font-size:13px;
    color:#555;
}

.shipping-note{
    font-size:12px;
    color:#777;
    margin:5px 0 15px;
}

.product-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.price{
    font-weight:800;
    font-size:20px;
}

.cart-btn{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#6f2dbd;
    border:none;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.cart-btn:hover{
    background:#5a22a0;
    transform:scale(1.1);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
    .products-title{
        font-size:36px;
    }
}

@media(max-width:768px){

    .products-header{
        flex-direction:column;
        gap:15px;
        align-items:center;
        text-align:center;
    }

    .products-title{
        font-size:30px;
    }

}

    /* ================= TESTIMONIAL SECTION ================= */

        .testimonial-section {
            background: #ececec;
            padding: 80px 0;
            overflow: hidden;
        }

        .testimonial-main-title {
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 600;
            color: #1a1a1a;
            letter-spacing: -0.5px;
        }

        .testimonial-main-title span {
            color: #6b21e8;
            font-weight: 800;
        }

        /* LEFT SIDE */
        .testimonial-left {
            padding-right: 10px;
        }

        .big-quote {
            font-size: 138px;
            color: #8a63bf;
            line-height: 0.65;
            font-family: "Georgia", serif;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .testimonial-left h4 {
            font-weight: 700;
            font-size: clamp(22px, 2.6vw, 50px);
            color: #1a1a1a;
            line-height: 1.28;
            margin-top: 10px;
        }

        .testimonial-nav {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 34px;
        }

        .testimonial-nav .nav-line {
            height: 2px;
            width: 182px;
            background: #bcbcbc;
            border-radius: 2px;
            position: relative;
        }

        .testimonial-nav .nav-line::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 36px;
            height: 100%;
            border-radius: 2px;
            background: #1f1f1f;
        }

        .testimonial-nav button {
            background: none;
            border: none;
            font-size: 34px;
            color: #555;
            padding: 0;
            transition: color 0.3s;
            cursor: pointer;
            line-height: 1;
        }

        .testimonial-nav .prev-btn {
            color: #b6b6b6;
        }

        .testimonial-nav .next-btn {
            color: #1f1f1f;
        }

        .testimonial-nav button:hover {
            color: #6b21e8;
        }

        .testimonial-item {
            padding-bottom: 8px;
        }

        /* CARD - speech bubble */
        .testimonial-card {
            background: #fff;
            padding: 38px 30px 24px;
            border-radius: 24px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
            position: relative;
            min-height: 390px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            margin-bottom: 24px;
            z-index: 1;
        }

        .testimonial-card::after {
            content: "";
            position: absolute;
            bottom: -13px;
            left: 30px;
            width: 30px;
            height: 30px;
            background: #fff;
            transform: rotate(45deg);
            box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.14);
            z-index: 0;
        }

        .testimonial-card p {
            font-size: 15px;
            color: #222;
            line-height: 1.75;
            flex-grow: 1;
            margin-bottom: 18px;
        }

        .stars {
            color: #6b21e8;
            font-size: 19px;
            letter-spacing: 3px;
            margin: 0;
            line-height: 1;
        }

        /* USER - placed outside the bubble */
        .testimonial-user {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 0;
            position: relative;
            z-index: 2;
            padding-left: 20px;
        }

            .testimonial-avatar{
                width:55px;
                height:55px;
                border-radius:50%;
                overflow:hidden;
                flex-shrink:0;
            }

            .testimonial-avatar svg{
                width:100%;
                height:100%;
                display:block;
            }

        .testimonial-user .user-info strong {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.2;
        }

        .testimonial-user .user-info small {
            display: block;
            color: #666;
            font-size: 12px;
            margin-top: 2px;
        }

        /* Owl Carousel override */
        .owl-stage {
            display: flex;
            align-items: stretch;
        }

        .owl-item {
            display: flex;
        }

        .owl-item .testimonial-item {
            width: 100%;
        }

        /* RESPONSIVE */
        @media (max-width: 1399px) {
            .testimonial-card {
                min-height: 348px;
            }

            .testimonial-card p {
                font-size: 14px;
            }

            .stars {
                font-size: 18px;
            }

            .testimonial-user .user-info strong {
                font-size: 14px;
            }

            .testimonial-user .user-info small {
                font-size: 12px;
            }
        }

        @media (max-width: 1199px) {
            .testimonial-card {
                min-height: 325px;
            }

            .testimonial-user .user-info strong {
                font-size: 14px;
            }

            .testimonial-user .user-info small {
                font-size: 12px;
            }
        }

        @media (max-width: 991px) {
            .testimonial-left {
                text-align: center;
                padding-right: 0;
                margin-bottom: 40px;
            }

            .big-quote {
                font-size: 90px;
            }

            .testimonial-left h4 {
                font-size: 34px;
            }

            .testimonial-nav {
                justify-content: center;
            }

            .testimonial-card {
                min-height: 300px;
            }

            .testimonial-user {
                padding-left: 10px;
            }

            .testimonial-user .user-info strong {
                font-size: 14px;
            }

            .testimonial-user .user-info small {
                font-size: 12px;
            }
        }

        @media (max-width: 576px) {
            .testimonial-section {
                padding: 50px 0;
            }

            .testimonial-card {
                padding: 22px 20px 16px;
                min-height: auto;
            }

            .testimonial-card p {
                font-size: 14px;
            }

            .stars {
                font-size: 18px;
            }

            .testimonial-nav .nav-line {
                width: 110px;
            }

            .testimonial-nav button {
                font-size: 28px;
            }

            .testimonial-user .user-info strong {
                font-size: 16px;
            }

            .testimonial-user .user-info small {
                font-size: 13px;
            }
        }
/* ================= FAQ ================= */

.faq-section{
    background:linear-gradient(180deg,#7b4bc1,#b08ad7);
    padding:80px 0;
}

.section-title{
    font-size:36px;
    font-weight:700;
}

.faq-section .section-title{
    color:#fff;
}


.faq-wrapper{
    max-width:800px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border-radius:12px;
    margin-bottom:20px;
    overflow:hidden;
    transition:.3s;
}

.faq-question{
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-weight:600;
}

.faq-answer{
    padding:0 20px 20px;
    display:none;
    color:#555;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-icon{
    font-size:20px;
}

/* ================= HOW SECTION ================= */

.how-section{
    background:#f3f3f3;
    padding-top:80px;
    padding-bottom:80px;
}

.step-box{
    padding:20px;
}

.step-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    border:2px solid #6f2dbd;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#6f2dbd;
    margin-bottom:20px;
    transition:.3s;
}

.step-box:hover .step-icon{
    background:#6f2dbd;
    color:#fff;
}

.step-box h6{
    font-weight:700;
    margin-bottom:10px;
}

.step-box p{
    font-size:14px;
    color:#555;
}

.order-btn{
    background:#6f2dbd;
    color:#fff;
    padding:12px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.order-btn:hover{
    background:#5a22a0;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
    .section-title{
        font-size:28px;
    }
}

/* ================= FOOTER ================= */

.footer-section{
    background:#d7c1e6;
    padding-bottom:30px;
}

.footer-text{
    font-size:14px;
    color:#444;
    line-height:1.6;
}

/* TITLES */

.footer-title{
    font-weight:700;
    margin-bottom:15px;
}

/* LINKS */

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:8px;
}

.footer-links a{
    text-decoration:none;
    color:#333;
    font-size:14px;
    transition:.3s;
}

.footer-links a:hover{
    color:#6f2dbd;
}

/* CONTACT */

.footer-contact{
    list-style:none;
    padding:0;
    font-size:14px;
}

.footer-contact li{
    margin-bottom:12px;
    display:flex;
    gap:10px;
    align-items:flex-start;
}

.footer-contact i{
    color:#6f2dbd;
    font-size:16px;
}

/* SOCIAL */

.footer-social a{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#6f2dbd;
    color:#fff;
    margin-right:8px;
    border-radius:4px;
    transition:.3s;
}

.footer-social a:hover{
    background:#5a22a0;
}

/* NEWSLETTER */

.newsletter-form{
    display:flex;
    gap:10px;
}

.newsletter-form input{
    flex:1;
    padding:10px;
    border:none;
    border-radius:4px;
}

.newsletter-form button{
    background:#6f2dbd;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:4px;
    transition:.3s;
}

.newsletter-form button:hover{
    background:#5a22a0;
}

/* BOTTOM */

.footer-bottom{
    border-top:1px solid rgba(0,0,0,0.1);
    font-size:13px;
}

footer-bottom-meta{
    color:#333;
}

.footer-credit{
    font-size:13px;
    color:#555;
}

.footer-credit a{
    color:#6f2dbd;
    text-decoration:none;
    font-weight:600;
}

.footer-credit a:hover{
    color:#5a22a0;
    text-decoration:underline;
}

.footer-bottom-links a{
    margin-left:20px;
    text-decoration:none;
    color:#6f2dbd;
}

.footer-bottom-links a:hover{
    color:#5a22a0;
}


/* RESPONSIVE */

@media(max-width:768px){

    .newsletter-form{
        flex-direction:column;
    }

    .footer-bottom{
        text-align:center;
    }

    .footer-bottom-meta{
        text-align:center;
    }

    .footer-bottom-links a{
        margin:0 10px;
    }

}

/* ================= ABOUT BANNER ================= */

.about-banner{
    position:relative;
    background:url('assets/images/about/about-banner.jpg') center center/cover no-repeat;
    min-height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    overflow:hidden;
    padding:120px 20px 64px;
}

/* PURPLE OVERLAY */
.about-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(111,45,189,0.85),
        rgba(111,45,189,0.85)
    );
    z-index:1;
}

/* CONTENT ABOVE OVERLAY */
.about-banner-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
    width:100%;
}

/* TITLE */
.about-banner-title{
    font-size:clamp(34px, 6vw, 60px);
    font-weight:600;
    margin-bottom:20px;
    line-height:1.15;
}

/* SUBTITLE */
.about-banner-subtitle{
    font-size:clamp(16px, 2.2vw, 22px);
    line-height:1.6;
    font-weight:400;
    margin:0 auto;
    max-width:760px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .about-banner{
        min-height:360px;
        padding:110px 20px 56px;
    }

    .about-banner-title{
        font-size:42px;
    }

    .about-banner-subtitle{
        font-size:16px;
    }
}

@media(max-width:576px){

    .about-banner{
        min-height:auto;
        padding:100px 16px 44px;
    }

    .about-banner-title{
        font-size:32px;
        margin-bottom:14px;
    }

    .about-banner-subtitle{
        font-size:16px;
        line-height:1.5;
    }
}

/* ================= WHO WE ARE ================= */

.who-section{
    animation:fadeIn 1s ease-in-out;
}

@keyframes fadeIn{
    from{opacity:0; transform:translateY(20px);}
    to{opacity:1; transform:translateY(0);}
}

/* Badge */
.who-badge{
    display:inline-block;
    background:#6f2dbd;
    color:#fff;
    padding:8px 25px;
    border-radius:30px;
    font-weight:600;
    font-size:14px;
}

/* Title */
.who-title{
    font-size:48px;
    font-weight:800;
    color:#111;
    line-height:1.3;
}

/* Text */
.who-text{
    max-width:850px;
    font-size:17px;
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}

/* Image */
.who-image img{
    max-height:400px;   
    width:auto;
    object-fit:contain;
    transition:.4s;
}


.who-image img:hover{
    transform:scale(1.03);
}


/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .who-title{
        font-size:36px;
    }

    .who-text{
        font-size:16px;
    }

    .who-section{
        padding-top:80px;
        padding-bottom:80px;
    }
    .who-image img{
        max-height:300px;
    }
}

@media(max-width:576px){

    .who-title{
        font-size:28px;
    }

    .who-text{
        font-size:15px;
    }

    .who-badge{
        font-size:13px;
        padding:6px 18px;
    }
    .who-image img{
        max-height:240px;
    }
}

/* ================= CORE VALUES ================= */

.core-values-section{
    background:#f4f4f4;
    padding-top:100px;
    padding-bottom:100px;
}

.core-title{
    font-size:42px;
    font-weight:800;
    color:#111;
}

/* CARD */
.core-card{
    background:#fff;
    border:1px solid #ddd;
    border-radius:20px;
    padding:50px 30px;
    transition:.4s ease;
    height:100%;
}

.core-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* ICON CIRCLE */
.core-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px auto;
    border-radius:50%;
    background:#e8d8f3;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    color:#6f2dbd;
}

.core-card:hover .core-icon{
    transform:scale(1.1);
    transition:.3s;
}

/* TITLE */
.core-card h5{
    font-weight:700;
    margin-bottom:15px;
    font-size:20px;
}

/* TEXT */
.core-card p{
    font-size:16px;
    color:#555;
    line-height:1.6;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .core-title{
        font-size:34px;
    }

    .core-card{
        padding:40px 25px;
    }
}

@media(max-width:576px){

    .core-title{
        font-size:28px;
    }

    .core-card{
        padding:30px 20px;
    }

    .core-card p{
        font-size:15px;
    }
}

/* ================= CATALOG BANNER ================= */

.catalog-banner{
    position:relative;
    background:url("assets/images/banner/catalog-banner.jpg") center center/cover no-repeat;
    min-height:420px;
    color:#fff;
    overflow:hidden;
    padding:120px 20px 64px;
}

/* Purple Overlay */
.catalog-banner .overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(111,45,189,0.85);
}

/* Content above overlay */
.banner-content{
    position:relative;
    z-index:2;
    width:100%;
}

/* Title */
.catalog-title{
    font-size:clamp(34px, 6vw, 56px);
    font-weight:600;
    margin-bottom:20px;
    line-height:1.15;
}

/* Subtitle */
.catalog-subtitle{
    font-size:clamp(16px, 2.1vw, 20px);
    max-width:750px;
    margin:0 auto;
    line-height:1.6;
    opacity:0.95;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
    .catalog-banner{
        min-height:360px;
        padding:110px 20px 56px;
    }

    .catalog-title{
        font-size:42px;
    }

    .catalog-subtitle{
        font-size:18px;
    }
}

@media(max-width:576px){

    .catalog-banner{
        min-height:auto;
        padding:100px 16px 44px;
    }

    .catalog-title{
        font-size:30px;
        margin-bottom:14px;
    }

    .catalog-subtitle{
        font-size:16px;
        line-height:1.5;
    }
}

/* ================= ALL PRODUCTS ================= */

.all-products{
    background:#f8f8f8;
}

.product-search{
    padding:12px;
    border-radius:6px;
}

.product-card{
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    position:relative;
    transition:0.3s ease;
}

.product-card:hover{
    transform:translateY(-5px);
}

.brand-badge{
    position:absolute;
    top:-12px;
    left:20px;
    padding:6px 14px;
    border-radius:6px;
    font-size:13px;
    font-weight:600;
    color:#fff;
}

.brand-badge.red{
    background:#c81414;
}

.product-img{
    text-align:center;
    margin-bottom:15px;
}

.product-img img{
    max-height:200px;
    object-fit:contain;
}

.product-body h6{
    font-weight:600;
}

.add-cart-btn{
    background:#6f2dbd;
    color:#fff;
    padding:10px;
    border:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
}

.add-cart-btn:hover{
    background:#5a22a0;
}

/* Responsive */

@media(max-width:768px){
    .filter-bar select,
    .filter-bar input{
        margin-bottom:10px;
    }
}

/* ================= CONTACT BANNER ================= */

.contact-banner{
    position:relative;   
    background:url("assets/images/banner/catalog-banner.jpg") center center/cover no-repeat;
    min-height:420px;
    display:flex;
    align-items:center;           
    justify-content:center;       
    text-align:center;
    color:#fff;
    padding:120px 20px 64px;
    overflow:hidden;
}

/* Purple Overlay */
.contact-banner .overlay{
    position:absolute;
    inset:0;                         
    background:rgba(111,45,189,0.85);
    z-index:1;
}

/* Content above overlay */
.contact-banner .container{
    position:relative;
    z-index:2;
    width:100%;
}

/* Title */
.contact-title{
    font-size:clamp(34px, 6vw, 60px);
    font-weight:600;
    margin-bottom:20px;
    line-height:1.15;
}

/* Subtitle */
.contact-subtitle{
    font-size:clamp(16px, 2.1vw, 20px);
    max-width:800px;
    margin:0 auto;
    line-height:1.6;
    opacity:0.95;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .contact-banner{
        min-height:360px;
        padding:110px 20px 56px;
    }

    .contact-title{
        font-size:42px;
    }

    .contact-subtitle{
        font-size:18px;
    }
}

@media(max-width:576px){

    .contact-banner{
        min-height:auto;
        padding:100px 16px 44px;
    }

    .contact-title{
        font-size:30px;
        margin-bottom:14px;
    }

    .contact-subtitle{
        font-size:16px;
        line-height:1.5;
    }
}

@media(max-width:380px){
    .about-banner-title,
    .catalog-title,
    .contact-title{
        font-size:27px;
    }

    .about-banner-subtitle,
    .catalog-subtitle,
    .contact-subtitle{
        font-size:15px;
    }
}

/* ================= CONTACT SECTION ================= */

.contact-section{
    background:#f8f8f8;
}

/* Contact Cards */

.contact-card{
    background:#fff;
    padding:40px 25px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    transition:0.3s ease;
}

.contact-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,0.1);
}

.icon-circle{
    width:70px;
    height:70px;
    background:#f0e6fb;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:26px;
    color:#6f2dbd;
}

.contact-card h5{
    font-weight:600;
    margin-bottom:10px;
}

.contact-main{
    font-size:18px;
    font-weight:500;
    margin-bottom:5px;
}

/* Form Wrapper */

.contact-form-wrapper{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.form-title{
    font-weight:700;
    margin-bottom:35px;
}

/* Inputs */

.custom-input{
    border-radius:15px;
    padding:15px;
    border:1px solid #ddd;
    transition:0.3s ease;
}

.custom-input:focus{
    border-color:#6f2dbd;
    box-shadow:0 0 0 3px rgba(111,45,189,0.15);
}

/* Button */

.send-btn{
    background:#6f2dbd;
    color:#fff;
    padding:16px;
    border-radius:15px;
    font-weight:600;
    transition:0.3s ease;
}

.send-btn:hover{
    background:#5a22a0;
    transform:translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .contact-form-wrapper{
        padding:35px;
    }

}

@media(max-width:768px){

    .contact-card{
        padding:30px 20px;
    }

    .contact-form-wrapper{
        padding:25px;
        border-radius:20px;
    }

}

@media(max-width:576px){

    .form-title{
        font-size:22px;
    }

}

/* ================= MAP SECTION ================= */

.map-section{
    margin-top:60px;
}

.map-wrapper{
    width:100%;
    height:420px;
    position:relative;
}

.map-wrapper iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .map-wrapper{
        height:350px;
    }
}

@media(max-width:576px){

    .map-wrapper{
        height:280px;
    }
}

/* ================= THEKKANS PAGE ================= */

.thekkans-page .tk-main-content{
    margin-top:96px;
}

.thekkans-page .tk-brand-hero{
    background:#6f2dbd;
    padding:56px 0;
    position:relative;
    overflow:hidden;
}

.thekkans-page .tk-hero-inner{
    border-radius:20px;
    padding:26px;
    color:#fff;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.16);
    backdrop-filter:blur(1px);
}

.thekkans-page .tk-brand-logo-wrap{
    width:230px;
    height:230px;
    margin:0 auto;
    border-radius:50%;
    background:#fff;
    padding:16px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.thekkans-page .tk-brand-logo-wrap img{
    max-height:165px;
    object-fit:contain;
}

.thekkans-page .tk-title{
    font-size:50px;
    line-height:1.1;
    font-weight:800;
}

.thekkans-page .tk-description{
    font-size:20px;
    line-height:1.65;
    color:rgba(255,255,255,0.92);
}

.thekkans-page .tk-brand-hero::before,
.thekkans-page .tk-brand-hero::after{
    content:"";
    position:absolute;
    border-radius:50%;
    pointer-events:none;
}

.thekkans-page .tk-brand-hero::before{
    width:360px;
    height:360px;
    left:-120px;
    top:-120px;
    background:rgba(255,255,255,0.12);
}

.thekkans-page .tk-brand-hero::after{
    width:260px;
    height:260px;
    right:-100px;
    bottom:-90px;
    background:rgba(255,255,255,0.09);
}

.thekkans-page.brand-thekkans .tk-brand-hero{
    background:linear-gradient(120deg, #6f2dbd 0%, #7f31cc 52%, #5f20ad 100%);
}

.thekkans-page.brand-brahmins .tk-brand-hero{
    background:linear-gradient(120deg, #0d6e4b 0%, #0f8458 52%, #0b5f42 100%);
}

.thekkans-page.brand-marias .tk-brand-hero{
    background:linear-gradient(120deg, #8c1d3f 0%, #a5284d 50%, #7a1836 100%);
}

.thekkans-page.brand-vishnubhavan .tk-brand-hero{
    background:linear-gradient(120deg, #137a5e 0%, #15966f 48%, #0f644d 100%);
}

.thekkans-page.brand-thekkans .tk-brand-logo-wrap{
    box-shadow:0 0 0 6px rgba(255,255,255,0.08);
}

.thekkans-page.brand-brahmins .tk-brand-logo-wrap{
    box-shadow:0 0 0 6px rgba(197, 244, 216, 0.25);
}

.thekkans-page.brand-marias .tk-brand-logo-wrap{
    box-shadow:0 0 0 6px rgba(255, 208, 219, 0.23);
}

.thekkans-page.brand-vishnubhavan .tk-brand-logo-wrap{
    box-shadow:0 0 0 6px rgba(206, 251, 227, 0.22);
}

.thekkans-page .tk-products-section{
    background:#f0f0f2;
}

.thekkans-page .tk-products-count{
    font-size:24px;
    font-weight:600;
    color:#2f2f35;
}

.thekkans-page .tk-product-card{
    position:relative;
    border-radius:14px;
    background:#fff;
    box-shadow:0 8px 20px rgba(20, 16, 32, 0.08);
    overflow:hidden;
    transition:transform .25s ease, box-shadow .25s ease;
}

.thekkans-page .tk-product-card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 26px rgba(20, 16, 32, 0.12);
}

.thekkans-page .tk-product-badge{
    position:absolute;
    top:14px;
    left:14px;
    background:#be1e2d;
    color:#fff;
    font-size:14px;
    font-weight:700;
    padding:6px 12px;
    border-radius:8px;
    z-index:2;
}

.thekkans-page .tk-product-image{
    height:250px;
    padding:54px 22px 18px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.thekkans-page .tk-product-image img{
    max-height:172px;
    width:auto;
    object-fit:contain;
}

.thekkans-page .tk-product-body{
    padding:0 16px 16px;
}

.thekkans-page .tk-product-title{
    font-size:24px;
    font-weight:700;
    color:#1f1f25;
    margin-bottom:4px;
}

.thekkans-page .tk-price-label{
    color:#6f6f78;
    font-size:16px;
    margin-bottom:14px;
}

.thekkans-page .tk-product-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:0;
}

.thekkans-page .tk-product-actions .btn{
    border-radius:0;
    font-weight:700;
    font-size:15px;
    padding:10px 8px;
    width:100%;
    margin:0;
}

.thekkans-page .tk-btn-outline{
    border:1px solid #6f2dbd;
    color:#fff;
    background:#6f2dbd;
}

.thekkans-page .tk-btn-outline:hover{
    border-color:#5a22a0;
    color:#fff;
    background:#5a22a0;
}

.thekkans-page .tk-btn-solid{
    border:1px solid #6f2dbd;
    color:#fff;
    background:#6f2dbd;
}

.thekkans-page .tk-btn-solid:hover{
    border-color:#5a22a0;
    color:#fff;
    background:#5a22a0;
}

@media (max-width:1199px){
    .thekkans-page .tk-title{
        font-size:42px;
    }

    .thekkans-page .tk-description{
        font-size:18px;
    }

    .thekkans-page .tk-product-title{
        font-size:22px;
    }
}

@media (max-width:991px){
    .thekkans-page .tk-main-content{
        margin-top:82px;
    }

    .thekkans-page .tk-brand-hero{
        padding:38px 0 42px;
    }

    .thekkans-page .tk-brand-logo-wrap{
        width:186px;
        height:186px;
    }

    .thekkans-page .tk-brand-logo-wrap img{
        max-height:130px;
    }

    .thekkans-page .tk-title{
        font-size:34px;
        text-align:center;
    }

    .thekkans-page .tk-description{
        font-size:16px;
        text-align:center;
    }

    .thekkans-page .tk-products-count{
        font-size:20px;
    }
}

@media (max-width:575px){
    .thekkans-page .tk-main-content{
        margin-top:76px;
    }

    .thekkans-page .tk-hero-inner{
        padding:10px 0;
    }

    .thekkans-page .tk-brand-logo-wrap{
        width:156px;
        height:156px;
        padding:12px;
    }

    .thekkans-page .tk-brand-logo-wrap img{
        max-height:112px;
    }

    .thekkans-page .tk-title{
        font-size:28px;
        margin-top:6px;
    }

    .thekkans-page .tk-description{
        font-size:15px;
        line-height:1.55;
    }

    .thekkans-page .tk-product-image{
        height:214px;
        padding-top:48px;
    }

    .thekkans-page .tk-product-image img{
        max-height:148px;
    }

    .thekkans-page .tk-product-title{
        font-size:20px;
    }

    .thekkans-page .tk-price-label{
        font-size:13px;
    }

    .thekkans-page .tk-product-actions .btn{
        font-size:14px;
        padding:10px 6px;
    }
}

/* ================= HOME PRODUCTS (FIGMA STYLE) ================= */

.home-products{
    background:linear-gradient(180deg,#dfcde9 0%, #c8a4de 40%, #9d69cb 72%, #6f2dbd 100%);
    padding-top:64px;
    padding-bottom:72px;
}

.home-products .products-header{
    display:flex;
    margin-bottom:22px !important;
}

.home-products .products-title{
    font-size:56px;
    line-height:1.05;
    font-weight:800;
    color:#18121f;
    margin:0;
}

.home-products .products-subheader{
    margin-top:0 !important;
}

.home-products .explore-btn{
    padding:7px 14px;
    border-radius:6px;
    font-size:11px;
    font-weight:700;
    background:#fff;
    border:1px solid #eee5f4;
}

.home-products .explore-btn i{
    font-size:11px;
}

.home-products .product-card{
    border-radius:10px;
    padding:10px 10px 8px;
    background:#efedf4;
    box-shadow:0 8px 20px rgba(37, 19, 68, 0.14);
}

.home-products .product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 24px rgba(37, 19, 68, 0.2);
}

.home-products .brand-badge{
    top:-8px;
    left:10px;
    padding:4px 10px;
    border-radius:5px;
    font-size:11px;
    font-weight:700;
}

.home-products .product-img{
    margin-top:2px;
    margin-bottom:8px;
    border-radius:8px;
    background:#fff;
    min-height:150px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:12px;
}

.home-products .product-img img{
    max-height:124px;
}

.home-products .product-body{
    padding:0 2px;
}

.home-products .product-title-rating h6{
    margin:0 0 8px;
    font-size:13px;
    line-height:1.3;
    font-weight:700;
    color:#18121f;
    min-height:34px;
}

.home-products .rating{
    display:none;
}

.home-products .shipping-note{
    margin:0 0 10px;
    font-size:12px;
    line-height:1.35;
    color:#6f6f78;
}

.home-products .mini-price{
    display:block;
    font-size:20px;
    line-height:1;
    font-weight:800;
    color:#1e1f24;
    margin:2px 0 8px;
}

.home-products .product-footer{
    margin-top:0;
    display:grid;
    grid-template-columns:1fr;
    gap:0;
    align-items:stretch;
}

.home-products .mini-view-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:30px;
    padding:0 14px;
    border-radius:0;
    text-decoration:none;
    font-size:11px;
    font-weight:600;
    color:#fff;
    background:#6f2dbd;
    border:1px solid #6f2dbd;
    white-space:nowrap;
}

.home-products .mini-view-btn:hover{
    color:#6f2dbd;
    background:#fff;
}

.home-products .cart-btn{
    width:100%;
    min-width:0;
    height:30px;
    padding:0 14px;
    border-radius:4px;
    font-size:11px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    white-space:nowrap;
    color:#fff;
    background:#6f2dbd;
    border:1px solid #6f2dbd;
    text-decoration:none;
}

.home-products .cart-btn:hover{
    color:#fff;
    background:#5a22a0;
}

@media (max-width:991px){
    .home-products .products-title{
        font-size:42px;
    }
}

@media (max-width:767px){
    .home-products{
        padding-top:52px;
        padding-bottom:56px;
    }

    .home-products .products-title{
        font-size:34px;
    }

    .home-products .products-subheader{
        text-align:center !important;
    }

    .home-products .product-title-rating h6{
        min-height:auto;
    }

    .home-products .mini-price{
        font-size:18px;
    }
}

/* ================= OUR PRODUCTS CARD STYLE ================= */

.our-products-page .all-products{
    background:#efefef;
}

.our-products-page .product-card{
    background:#f6f6f8;
    border-radius:18px;
    padding:14px;
    border:1px solid #ececf2;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    overflow:hidden;
}

.our-products-page .product-card:hover{
    transform:translateY(-4px);
}

.our-products-page .brand-badge{
    top:14px;
    left:14px;
    padding:6px 12px;
    border-radius:8px;
    font-size:13px;
    font-weight:700;
}

.our-products-page .product-img{
    text-align:center;
    margin:0;
    min-height:220px;
    padding:26px 20px 16px;
    border-radius:10px;
    background:#ececed;
}

.our-products-page .product-img img{
    max-height:170px;
}

.our-products-page .product-body{
    padding:14px 2px 0;
}

.our-products-page .product-body h6{
    font-size:16px;
    line-height:1.2;
    margin-bottom:6px;
    font-weight:700;
    color:#16161d;
}

.our-products-page .product-price-label{
    margin:0 0 12px;
    font-size:14px;
    color:#666a73;
}

.our-products-page .product-card-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:0;
    margin:0;
}

.our-products-page .view-details-btn{
    height:46px;
    border-radius:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
}

.our-products-page .view-details-btn{
    color:#fff;
    background:#6f2dbd;
    border:1px solid #6f2dbd;
}

.our-products-page .view-details-btn:hover{
    background:#5a22a0;
    color:#fff;
}

.our-products-page .product-action-row{
    align-items:stretch;
}

.our-products-page .product-action-btn{
    height:52px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:600;
    line-height:1;
    white-space:nowrap;
    padding:0 12px;
}

.our-products-page .product-view-btn{
    border-color:#2b2d35;
    color:#1f2129;
    background:#fff;
}

.our-products-page .product-view-btn:hover{
    background:#f3f4f6;
    color:#1f2129;
}

.our-products-page .product-add-btn{
    color:#fff;
}

@media (max-width:991px){
    .our-products-page .product-body h6{
        font-size:16px;
    }

    .our-products-page .view-details-btn{
        font-size:14px;
    }

    .our-products-page .product-action-btn{
        height:48px;
        font-size:18px;
    }
}

@media (max-width:767px){
    .our-products-page .product-body h6{
        font-size:15px;
    }

    .our-products-page .product-price-label{
        font-size:13px;
    }

    .our-products-page .view-details-btn{
        height:42px;
        font-size:13px;
    }

    .our-products-page .product-action-btn{
        height:42px;
        font-size:14px;
        border-radius:8px;
    }
}

/* ================= VIEW DETAILS POPUP PAGE ================= */

.view-details-page{
    min-height:100vh;
    background:#ececec;
    font-family:'Poppins', sans-serif;
}

.vd-backdrop-layer{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.42);
    z-index:1040;
}

.vd-modal-content{
    border:none;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.24);
}

.vd-left-pane{
    background:#fff;
    border-right:1px solid #dddddf;
    min-height:560px;
    padding:18px 18px;
    position:relative;
}

.vd-brand-badge{
    display:inline-block;
    background:#b70f10;
    color:#fff;
    border-radius:999px;
    padding:6px 14px;
    font-size:14px;
    font-weight:700;
}

.vd-image-wrap{
    height:430px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.vd-image-wrap img{
    max-width:86%;
    max-height:340px;
    object-fit:contain;
}

.vd-right-pane{
    background:#fff;
    min-height:560px;
    padding:18px 20px 20px;
    position:relative;
}

.vd-close-btn{
    position:absolute;
    top:18px;
    right:20px;
    border:none;
    background:transparent;
    color:#5d5d67;
    font-size:18px;
    line-height:1;
}

.vd-type{
    margin-top:2px;
    color:#4f4f57;
    font-size:20px;
    font-weight:500;
}

.vd-title{
    margin:0 0 10px;
    font-size:40px;
    line-height:1.1;
    font-weight:700;
    color:#111116;
}

.vd-desc{
    color:#44454d;
    font-size:22px;
    line-height:1.45;
    max-width:95%;
}

.vd-section-title{
    margin:0 0 12px;
    font-size:24px;
    color:#22232a;
    font-weight:500;
}

.vd-size-grid{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.vd-size-btn{
    border:1px solid #d2d2d8;
    background:#fff;
    color:#4d4d56;
    padding:8px 14px;
    font-size:20px;
    line-height:1;
    font-weight:500;
}

.vd-size-btn.active{
    border-color:#6f2dbd;
    color:#6f2dbd;
    background:#f8f3ff;
}

.vd-qty-wrap{
    display:inline-flex;
    align-items:center;
    border:1px solid #d0d0d6;
    min-width:150px;
    height:44px;
}

.vd-qty-btn{
    width:44px;
    height:42px;
    border:none;
    background:#f7f7f9;
    font-size:24px;
    color:#2a2a30;
}

.vd-qty-value{
    width:60px;
    text-align:center;
    font-size:22px;
    font-weight:500;
    color:#1c1d23;
}

.vd-price-label{
    font-size:24px;
    color:#666872;
}

.vd-price{
    font-size:30px;
    font-weight:700;
    color:#14151c;
}

.vd-add-btn{
    height:56px;
    border-radius:14px;
    background:#6f2dbd;
    color:#fff;
    border:none;
    font-size:28px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.vd-add-btn:hover{
    background:#5a22a0;
    color:#fff;
}

@media (max-width:1199px){
    .vd-left-pane,
    .vd-right-pane{
        min-height:auto;
    }

    .vd-image-wrap{
        height:340px;
    }

    .vd-image-wrap img{
        max-height:250px;
    }

    .vd-type{font-size:18px;}
    .vd-title{font-size:34px;}
    .vd-desc{font-size:18px;}
    .vd-section-title{font-size:20px;}
    .vd-size-btn{font-size:16px; padding:7px 12px;}
    .vd-qty-btn{font-size:20px;}
    .vd-qty-value{font-size:18px;}
    .vd-price-label{font-size:20px;}
    .vd-price{font-size:26px;}
    .vd-add-btn{font-size:22px; height:50px;}
}

@media (max-width:991px){
    .vd-left-pane{
        border-right:none;
        border-bottom:1px solid #dddddf;
        padding-bottom:14px;
    }

    .vd-right-pane{
        padding:14px 14px 16px;
    }

    .vd-close-btn{
        top:12px;
        right:12px;
    }

    .vd-type{font-size:16px;}
    .vd-title{font-size:28px;}
    .vd-desc{font-size:16px; max-width:100%;}
    .vd-section-title{font-size:16px;}
    .vd-size-btn{font-size:14px; padding:7px 10px;}
    .vd-qty-wrap{height:40px; min-width:126px;}
    .vd-qty-btn{height:38px; width:38px; font-size:18px;}
    .vd-qty-value{width:46px; font-size:16px;}
    .vd-price-label{font-size:16px;}
    .vd-price{font-size:24px;}
    .vd-add-btn{font-size:18px; height:46px;}
}

@media (max-width:575px){
    .vd-image-wrap{
        height:250px;
    }

    .vd-image-wrap img{
        max-height:190px;
    }

    .vd-title{font-size:24px;}
    .vd-desc{font-size:14px;}
    .vd-add-btn{font-size:16px;}
}

/* ================= ADD TO CART PAGE ================= */

.add-cart-page .quote-main{
    margin-top:96px;
    background:#f3f3f3;
    min-height:62vh;
}

.add-cart-page .quote-title{
    font-size:52px;
    line-height:1.15;
    font-weight:800;
    color:#16161d;
    margin-bottom:26px;
}

.add-cart-page .quote-box{
    border:1px solid #d4d4d8;
    background:#f7f7f7;
}

.add-cart-page .quote-box-inner{
    padding:30px 40px;
}

.add-cart-page .quote-items-title{
    font-size:46px;
    font-weight:700;
    margin-bottom:24px;
    color:#17171e;
}

.add-cart-page .quote-items-wrap{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.add-cart-page .quote-item-row{
    display:grid;
    grid-template-columns:minmax(260px, 1.4fr) auto auto;
    gap:18px;
    align-items:center;
}

.add-cart-page .quote-item-info{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:0;
}

.add-cart-page .quote-thumb{
    width:84px;
    height:84px;
    border:1px solid #e2e2e5;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.add-cart-page .quote-thumb img{
    max-width:66px;
    max-height:66px;
    object-fit:contain;
}

.add-cart-page .quote-meta h3{
    margin:0 0 3px;
    font-size:28px;
    font-weight:700;
    line-height:1.2;
    color:#16161d;
}

.add-cart-page .quote-meta p{
    margin:0;
    font-size:18px;
    color:#777a84;
}

.add-cart-page .quote-meta span{
    display:block;
    margin-top:2px;
    font-size:16px;
    color:#6f2dbd;
    font-weight:600;
}

.add-cart-page .quote-pack-sizes{
    display:flex;
    align-items:center;
    gap:10px;
}

.add-cart-page .quote-pack-btn{
    border:1px solid #d0d0d6;
    background:#fff;
    color:#4f515a;
    font-size:32px;
    line-height:1;
    font-weight:500;
    padding:12px 18px;
    min-width:98px;
}

.add-cart-page .quote-pack-btn.active,
.add-cart-page .quote-pack-btn:hover{
    border-color:#6f2dbd;
    color:#6f2dbd;
    background:#f8f3ff;
}

.add-cart-page .quote-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.add-cart-page .quote-qty{
    display:flex;
    align-items:center;
    border:1px solid #d0d0d6;
    height:56px;
}

.add-cart-page .qty-btn{
    width:56px;
    height:54px;
    border:none;
    background:#fff;
    color:#30313a;
    font-size:34px;
    line-height:1;
}

.add-cart-page .qty-value{
    width:64px;
    text-align:center;
    font-size:34px;
    font-weight:500;
    color:#1d1e24;
}

.add-cart-page .quote-remove{
    border:none;
    background:transparent;
    color:#9a9aa1;
    font-size:34px;
    line-height:1;
}

.add-cart-page .quote-remove:hover{
    color:#c91414;
}

.add-cart-page .quote-submit-btn{
    min-width:420px;
    height:62px;
    border-radius:12px;
    background:#6f2dbd;
    color:#fff;
    font-size:34px;
    font-weight:700;
    border:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.add-cart-page .quote-submit-btn:hover{
    background:#5a22a0;
    color:#fff;
}

@media (max-width:1399px){
    .add-cart-page .quote-title{font-size:44px;}
    .add-cart-page .quote-items-title{font-size:38px;}
    .add-cart-page .quote-meta h3{font-size:22px;}
    .add-cart-page .quote-meta p{font-size:15px;}
    .add-cart-page .quote-meta span{font-size:14px;}
    .add-cart-page .quote-pack-btn{font-size:24px; min-width:82px; padding:10px 12px;}
    .add-cart-page .qty-btn{width:44px; height:44px; font-size:28px;}
    .add-cart-page .qty-value{width:54px; font-size:24px;}
    .add-cart-page .quote-qty{height:46px;}
    .add-cart-page .quote-remove{font-size:26px;}
    .add-cart-page .quote-submit-btn{font-size:26px; min-width:340px; height:54px;}
}

@media (max-width:991px){
    .add-cart-page .quote-main{margin-top:82px;}
    .add-cart-page .quote-title{font-size:34px; margin-bottom:18px;}
    .add-cart-page .quote-box-inner{padding:20px 18px;}
    .add-cart-page .quote-items-title{font-size:30px; margin-bottom:16px;}

    .add-cart-page .quote-item-row{
        grid-template-columns:1fr;
        gap:10px;
        border-bottom:1px solid #e3e3e8;
        padding-bottom:12px;
    }

    .add-cart-page .quote-pack-sizes{
        justify-content:flex-start;
    }

    .add-cart-page .quote-actions{
        justify-content:space-between;
    }

    .add-cart-page .quote-submit-btn{
        min-width:100%;
        font-size:20px;
        height:50px;
    }
}

@media (max-width:575px){
    .add-cart-page .quote-title{font-size:30px;}
    .add-cart-page .quote-items-title{font-size:26px;}
    .add-cart-page .quote-thumb{width:70px; height:70px;}
    .add-cart-page .quote-thumb img{max-width:54px; max-height:54px;}
    .add-cart-page .quote-meta h3{font-size:18px;}
    .add-cart-page .quote-meta p{font-size:13px;}
    .add-cart-page .quote-meta span{font-size:12px;}
    .add-cart-page .quote-pack-sizes{flex-wrap:wrap; gap:8px;}
    .add-cart-page .quote-pack-btn{font-size:16px; min-width:72px; padding:8px 10px;}
    .add-cart-page .qty-btn{width:38px; height:38px; font-size:22px;}
    .add-cart-page .qty-value{width:42px; font-size:18px;}
    .add-cart-page .quote-qty{height:40px;}
    .add-cart-page .quote-remove{font-size:22px;}
}

/* ================= AUTH PAGES ================= */

.auth-page{
    background:#f3f3f3;
}

.auth-page .footer-section{
    background:#dccbe6;
}

.auth-main{
    padding:140px 0 80px;
    min-height:70vh;
}

.auth-container{
    max-width:670px;
}

.auth-signup-container{
    max-width:860px;
}

.auth-head{
    margin-bottom:22px;
}

.auth-head h1{
    font-size:58px;
    font-weight:700;
    color:#11121a;
    margin-bottom:10px;
    line-height:1.1;
}

.auth-head p{
    margin:0;
    font-size:42px;
    color:#22242e;
    font-weight:500;
}

.auth-switch{
    border:1px solid #c7c7ce;
    border-radius:32px;
    display:grid;
    grid-template-columns:1fr 1fr;
    padding:3px;
    margin-bottom:34px;
    background:#f3f3f3;
}

.auth-switch-btn{
    border:none;
    background:transparent;
    border-radius:28px;
    height:54px;
    font-size:37px;
    font-weight:500;
    color:#2f313a;
    transition:.25s ease;
}

.auth-switch-btn.active{
    background:#6f2dbd;
    color:#fff;
}

.auth-form{
    width:100%;
}

.auth-input-wrap{
    position:relative;
}

.auth-input{
    width:100%;
    height:72px;
    border:1px solid #c8c8ce;
    border-radius:34px;
    background:#f3f3f3;
    font-size:39px;
    font-weight:400;
    color:#22242e;
    padding:0 68px 0 26px;
    outline:none;
    box-shadow:none;
}

.auth-input::placeholder{
    color:#53555f;
}

.auth-input:focus{
    border-color:#6f2dbd;
    box-shadow:0 0 0 .18rem rgba(111,45,189,.12);
}

.auth-input-icon{
    position:absolute;
    right:24px;
    top:50%;
    transform:translateY(-50%);
    font-size:38px;
    color:#6e6f76;
    pointer-events:none;
}

.auth-password-toggle{
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:transparent;
    color:#6e6f76;
    font-size:36px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.auth-login-form .auth-input-wrap + .auth-input-wrap{
    margin-top:22px;
}

.auth-row-between{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-top:20px;
}

.auth-remember{
    display:flex;
    align-items:center;
    gap:12px;
    color:#656670;
    font-size:42px;
    font-weight:500;
}

.auth-remember input{
    width:33px;
    height:33px;
    accent-color:#4f82f0;
}

.auth-forgot-link{
    font-size:42px;
    font-weight:500;
    text-decoration:none;
    color:#4f82f0;
}

.auth-forgot-link:hover{
    color:#3269e3;
}

.auth-submit-btn{
    width:100%;
    margin-top:58px;
    border:none;
    border-radius:42px;
    background:#6f2dbd;
    color:#fff;
    height:86px;
    font-size:50px;
    font-weight:500;
    transition:.25s ease;
}

.auth-submit-btn:hover{
    background:#5a22a0;
}

.auth-label{
    display:block;
    font-size:14px;
    font-weight:600;
    margin-bottom:7px;
    color:#1e1f26;
}

.auth-signup-form .auth-input{
    font-size:14px;
    height:42px;
    border-radius:21px;
    padding:0 44px 0 14px;
}

.auth-signup-form .auth-password-toggle{
    width:34px;
    height:34px;
    right:8px;
    font-size:20px;
}

.auth-signup-form .auth-submit-btn{
    max-width:560px;
    margin-left:auto;
    margin-right:auto;
    display:block;
    border-radius:28px;
    height:56px;
    font-size:34px;
    margin-top:48px;
}

@media (max-width:991px){
    .auth-main{
        padding:110px 0 56px;
    }

    .auth-container{
        max-width:760px;
    }

    .auth-head h1{
        font-size:42px;
    }

    .auth-head p{
        font-size:28px;
    }

    .auth-switch-btn{
        height:46px;
        font-size:28px;
    }

    .auth-input{
        height:58px;
        font-size:24px;
        padding:0 58px 0 22px;
    }

    .auth-input-icon{
        right:20px;
        font-size:28px;
    }

    .auth-password-toggle{
        font-size:28px;
        right:14px;
    }

    .auth-remember{
        font-size:28px;
    }

    .auth-forgot-link{
        font-size:28px;
    }

    .auth-submit-btn{
        height:72px;
        font-size:38px;
        margin-top:42px;
    }
}

@media (max-width:767px){
    .auth-main{
        padding:100px 0 44px;
    }

    .auth-head h1{
        font-size:38px;
    }

    .auth-head p{
        font-size:24px;
    }

    .auth-switch{
        margin-bottom:24px;
    }

    .auth-switch-btn{
        font-size:22px;
        height:42px;
    }

    .auth-input{
        height:52px;
        font-size:18px;
        padding:0 52px 0 16px;
    }

    .auth-login-form .auth-input-wrap + .auth-input-wrap{
        margin-top:16px;
    }

    .auth-input-icon{
        font-size:22px;
        right:16px;
    }

    .auth-password-toggle{
        font-size:22px;
        right:10px;
        width:34px;
        height:34px;
    }

    .auth-row-between{
        flex-direction:column;
        align-items:flex-start;
        margin-top:14px;
    }

    .auth-remember{
        font-size:19px;
        gap:8px;
    }

    .auth-remember input{
        width:20px;
        height:20px;
    }

    .auth-forgot-link{
        font-size:19px;
    }

    .auth-submit-btn{
        height:56px;
        font-size:28px;
        margin-top:28px;
    }

    .auth-label{
        font-size:13px;
        margin-bottom:6px;
    }

    .auth-signup-form .auth-submit-btn{
        max-width:100%;
        font-size:26px;
        height:52px;
        margin-top:28px;
    }
}

@media (max-width:480px){
    .auth-head h1{
        font-size:34px;
    }

    .auth-head p{
        font-size:21px;
    }

    .auth-switch-btn{
        font-size:20px;
    }

    .auth-input{
        font-size:17px;
    }
}

/* ================= SIGN UP PAGE TUNING ================= */

.signup-page .auth-main{
    padding:136px 0 76px;
}

.signup-page .auth-signup-container{
    max-width:600px;
}

.signup-page .auth-head{
    margin-bottom:20px;
}

.signup-page .auth-head h1{
    font-size:52px;
    line-height:1.15;
    margin-bottom:8px;
}

.signup-page .auth-head p{
    font-size:22px;
    font-weight:500;
}

.signup-page .auth-switch{
    margin-bottom:24px;
    padding:2px;
}

.signup-page .auth-switch-btn{
    height:38px;
    font-size:13px;
    font-weight:500;
}

.signup-page .auth-label{
    font-size:12px;
    font-weight:600;
    margin-bottom:6px;
}

.signup-page .auth-signup-form .row{
    --bs-gutter-x:12px;
    --bs-gutter-y:10px;
}

.signup-page .auth-signup-form .auth-input{
    height:32px;
    border-radius:16px;
    font-size:11px;
    padding:0 32px 0 12px;
}

.signup-page .auth-signup-form .auth-password-toggle{
    width:26px;
    height:26px;
    right:5px;
    font-size:14px;
}

.signup-page .auth-signup-form .auth-submit-btn{
    max-width:460px;
    height:60px;
    border-radius:30px;
    margin-top:44px;
    font-size:36px;
    font-weight:500;
}

@media (max-width:991px){
    .signup-page .auth-main{
        padding:108px 0 56px;
    }

    .signup-page .auth-signup-container{
        max-width:690px;
    }

    .signup-page .auth-head h1{
        font-size:42px;
    }

    .signup-page .auth-head p{
        font-size:21px;
    }

    .signup-page .auth-switch-btn{
        font-size:14px;
    }

    .signup-page .auth-signup-form .auth-input{
        height:38px;
        font-size:12px;
        border-radius:19px;
    }

    .signup-page .auth-signup-form .auth-submit-btn{
        height:56px;
        font-size:28px;
        max-width:420px;
    }
}

@media (max-width:767px){
    .signup-page .auth-main{
        padding:98px 0 40px;
    }

    .signup-page .auth-signup-container{
        max-width:100%;
    }

    .signup-page .auth-head{
        margin-bottom:16px;
    }

    .signup-page .auth-head h1{
        font-size:34px;
    }

    .signup-page .auth-head p{
        font-size:18px;
    }

    .signup-page .auth-switch{
        margin-bottom:18px;
    }

    .signup-page .auth-switch-btn{
        font-size:14px;
        height:40px;
    }

    .signup-page .auth-label{
        font-size:12px;
    }

    .signup-page .auth-signup-form .row{
        --bs-gutter-x:10px;
        --bs-gutter-y:10px;
    }

    .signup-page .auth-signup-form .auth-input{
        height:40px;
        font-size:13px;
        border-radius:20px;
    }

    .signup-page .auth-signup-form .auth-submit-btn{
        max-width:100%;
        height:52px;
        font-size:24px;
        margin-top:24px;
    }
}

/* ================= LOGIN PAGE TUNING ================= */

.login-page .auth-main{
    padding:136px 0 80px;
}

.login-page .auth-container{
    max-width:580px;
}

.login-page .auth-head{
    margin-bottom:22px;
}

.login-page .auth-head h1{
    font-size:58px;
    font-weight:700;
    margin-bottom:6px;
}

.login-page .auth-head p{
    font-size:24px;
    font-weight:500;
}

.login-page .auth-switch{
    margin-bottom:20px;
}

.login-page .auth-switch-btn{
    height:42px;
    font-size:16px;
}

.login-page .auth-input{
    height:64px;
    font-size:17px;
    padding:0 56px 0 18px;
}

.login-page .auth-input-icon{
    right:18px;
    font-size:19px;
}

.login-page .auth-password-toggle{
    right:12px;
    width:32px;
    height:32px;
    font-size:19px;
}

.login-page .auth-login-form .auth-input-wrap + .auth-input-wrap{
    margin-top:14px;
}

.login-page .auth-row-between{
    margin-top:12px;
    align-items:center;
}

.login-page .auth-remember{
    font-size:16px;
    gap:8px;
    white-space:nowrap;
}

.login-page .auth-remember input{
    width:18px;
    height:18px;
}

.login-page .auth-forgot-link{
    font-size:16px;
    white-space:nowrap;
}

.login-page .auth-submit-btn{
    height:72px;
    font-size:22px;
    margin-top:28px;
}

@media (max-width:991px){
    .login-page .auth-main{
        padding:108px 0 56px;
    }

    .login-page .auth-container{
        max-width:620px;
    }

    .login-page .auth-head h1{
        font-size:50px;
    }

    .login-page .auth-head p{
        font-size:22px;
    }

    .login-page .auth-switch-btn{
        font-size:16px;
        height:42px;
    }

    .login-page .auth-input{
        height:58px;
        font-size:16px;
    }

    .login-page .auth-input-icon{
        font-size:18px;
    }

    .login-page .auth-password-toggle{
        font-size:18px;
    }

    .login-page .auth-remember,
    .login-page .auth-forgot-link{
        font-size:16px;
    }

    .login-page .auth-submit-btn{
        height:64px;
        font-size:20px;
    }
}

@media (max-width:767px){
    .login-page .auth-main{
        padding:96px 0 42px;
    }

    .login-page .auth-head{
        margin-bottom:18px;
    }

    .login-page .auth-head h1{
        font-size:42px;
    }

    .login-page .auth-head p{
        font-size:20px;
    }

    .login-page .auth-switch{
        margin-bottom:20px;
    }

    .login-page .auth-switch-btn{
        font-size:16px;
        height:42px;
    }

    .login-page .auth-input{
        height:50px;
        font-size:16px;
        padding:0 50px 0 16px;
    }

    .login-page .auth-input-icon{
        font-size:21px;
        right:15px;
    }

    .login-page .auth-password-toggle{
        font-size:21px;
        width:34px;
        height:34px;
        right:9px;
    }

    .login-page .auth-remember{
        font-size:15px;
    }

    .login-page .auth-forgot-link{
        font-size:15px;
    }

    .login-page .auth-submit-btn{
        height:54px;
        font-size:20px;
        margin-top:24px;
    }
}

/* ================= QUOTE SECTION ================= */

.quote-section{
    background:#f4f4f4;
    padding-top:140px;   
}
.quote-section .quote-title{
    font-size:52px;
    line-height:1.15;
    font-weight:800;
    color:#16161d;
    margin-bottom:26px;
}

/* CARD */

.quote-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    border:1px solid #e0e0e0;
    transition:.3s;
}

.quote-card:hover{
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.product-img{
    max-height:100px;
    object-fit:contain;
}

.pack-size{
    color:#6f2dbd;
    font-weight:600;
}

.qty-input{
    width:70px;
    padding:5px;
    border-radius:6px;
    border:1px solid #ccc;
}

.qty-static{
    margin-bottom:0;
}

.qty-value-static{
    font-weight:600;
}

.delete-item{
    font-size:22px;
    cursor:pointer;
    color:#999;
    transition:.3s;
}

.delete-item:hover{
    color:red;
}

/* BUTTON */

.submit-btn{
    background:#6f2dbd;
    color:#fff;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.submit-btn:hover{
    background:#5a22a0;
}

/* Keep quote title visible below fixed navbar on add-to-cart page */
.add-cart-page .quote-section{
    padding-top:220px !important;
}

.add-cart-page .quote-section .text-center.mt-4{
    margin-bottom:42px;
}

@media (max-width: 991.98px){
    .add-cart-page .quote-section{
        padding-top:185px !important;
    }

    .add-cart-page .quote-section .text-center.mt-4{
        margin-bottom:34px;
    }
}

@media (max-width: 767.98px){
    .add-cart-page .quote-section{
        padding-top:160px !important;
    }

    .add-cart-page .quote-section .text-center.mt-4{
        margin-bottom:26px;
    }
}
