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:20px;
    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:140px 0;
    min-height:70vh;
    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;
}

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

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

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

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

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

@media(max-width:576px){
    .hero h1{
        font-size:30px;
    }

    .hero p{
        font-size:16px;
    }
}
/* Swiper adjustments */
.hero .swiper {
    width: 100%;
}

.hero .swiper-slide {
    padding: 40px 0;
}


.swiper-pagination-bullet{
    background:#6f2dbd;
}

.swiper-pagination-bullet-active{
    width:20px;
    border-radius:5px;
}


/* 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:18px;
    }
}

@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;
}

.thekkans-page .tk-hero-inner{
    border-radius:20px;
    padding:26px;
    color:#fff;
}

.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-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 1fr;
    gap:8px;
}

.thekkans-page .tk-product-actions .btn{
    border-radius:6px;
    font-weight:700;
    font-size:15px;
    padding:11px 8px;
}

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

.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:14px;
    }

    .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 1fr;
    gap:8px;
    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:4px;
    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 1fr;
    gap:0;
    margin:0;
}

.our-products-page .view-details-btn,
.our-products-page .add-cart-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:#6f2dbd;
    background:#fff;
    border:1px solid #8f62cf;
}

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

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

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

.our-products-page .add-cart-btn i{
    margin-right:6px;
}

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

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

@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,
    .our-products-page .add-cart-btn{
        height:42px;
        font-size:13px;
    }
}

/* ================= 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:620px;
    padding:26px 24px;
    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:500px;
    display:flex;
    align-items:center;
    justify-content:center;
}

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

.vd-right-pane{
    background:#fff;
    min-height:620px;
    padding:24px 30px 28px;
    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:28px;
    font-weight:500;
}

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

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

.vd-section-title{
    margin:0 0 12px;
    font-size:34px;
    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:10px 18px;
    font-size:30px;
    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:180px;
    height:52px;
}

.vd-qty-btn{
    width:52px;
    height:50px;
    border:none;
    background:#f7f7f9;
    font-size:34px;
    color:#2a2a30;
}

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

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

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

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

.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:390px;
    }

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

    .vd-type{font-size:20px;}
    .vd-title{font-size:44px;}
    .vd-desc{font-size:22px;}
    .vd-section-title{font-size:22px;}
    .vd-size-btn{font-size:20px; padding:10px 14px;}
    .vd-qty-btn{font-size:24px;}
    .vd-qty-value{font-size:22px;}
    .vd-price-label{font-size:24px;}
    .vd-price{font-size:32px;}
    .vd-add-btn{font-size:26px; height:56px;}
}

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

    .vd-right-pane{
        padding:18px 18px 22px;
    }

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

    .vd-type{font-size:18px;}
    .vd-title{font-size:34px;}
    .vd-desc{font-size:18px; max-width:100%;}
    .vd-section-title{font-size:18px;}
    .vd-size-btn{font-size:16px; padding:9px 12px;}
    .vd-qty-wrap{height:46px; min-width:140px;}
    .vd-qty-btn{height:44px; width:44px; font-size:22px;}
    .vd-qty-value{width:50px; font-size:18px;}
    .vd-price-label{font-size:18px;}
    .vd-price{font-size:28px;}
    .vd-add-btn{font-size:22px; height:52px;}
}

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

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

    .vd-title{font-size:28px;}
    .vd-desc{font-size:16px;}
    .vd-add-btn{font-size:20px;}
}
