/* --- Variables & Theming --- */
:root {
    /* Colors */
    --primary: #9B6A73;
    /* Elegant Dusty Rose */
    --primary-hover: #7E525B;
    /* Deep Rose */
    --secondary: #F5EAEB;
    /* Soft Blush */
    --bg-color: #FAF7F8;
    /* Warm Pearl White */
    --bg-light: #EFE9EB;
    /* Muted Light Blush */
    --text-main: #2D2325;
    /* Deep Espresso Charcoal */
    --text-muted: #7A6F72;
    /* Sophisticated Warm Gray */
    --white: #ffffff;
    --border-color: rgba(45, 35, 37, 0.08);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing & Shadows */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --shadow-sm: 0 2px 8px rgba(45, 35, 37, 0.04);
    --shadow: 0 10px 30px rgba(45, 35, 37, 0.06), 0 4px 12px rgba(45, 35, 37, 0.03);
    --shadow-hover: 0 20px 40px rgba(45, 35, 37, 0.08), 0 8px 16px rgba(45, 35, 37, 0.04);
    --shadow-glow: 0 0 24px rgba(155, 106, 115, 0.25);
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-color: #1A1516;
    /* Deep Warm Dark */
    --bg-light: #241C1E;
    /* Raised Warm Dark */
    --text-main: #F0EBEB;
    --text-muted: #A39699;
    --secondary: #2B2023;
    /* Muted Dark Blush */
    --border-color: rgba(240, 235, 235, 0.08);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.6), 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    max-width: 100vw;
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    transition: background-color 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

/* --- Loader --- */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    border: 3px solid var(--secondary);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- First Visit Language Prompt --- */
.language-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 10, 10, 0.62);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.language-modal.show {
    display: flex;
}

.language-modal-open {
    overflow: hidden;
}

.language-modal-card {
    width: min(100%, 460px);
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--bg-color);
    color: var(--text-main);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    border: 1px solid var(--border-color);
    text-align: center;
}

.language-modal-kicker {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 12px;
}

.language-modal-card h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    letter-spacing: 0;
}

.language-modal-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.language-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.language-choice {
    border: 1px solid var(--primary);
    border-radius: 100px;
    padding: 14px 20px;
    background: var(--primary);
    color: var(--white);
    font: 700 15px var(--font-body);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.language-choice:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.language-choice[data-language-choice="hi"] {
    background: transparent;
    color: var(--primary);
}

.language-choice[data-language-choice="hi"]:hover {
    background: var(--secondary);
}

/* --- Buttons & Ripple --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    filter: brightness(1.05);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.ripple::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out, opacity 0.6s;
    opacity: 0;
}

.ripple:active::after {
    width: 200px;
    height: 200px;
    opacity: 1;
    transition: 0s;
}

/* --- Navigation & Logo --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
    padding: 24px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    border-bottom: 1px solid transparent;
}

header.revealed {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

header.scrolled {
    background: rgba(250, 250, 250, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

[data-theme="dark"] header.scrolled {
    background: rgba(10, 10, 10, 0.75);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Constrain your local logo image */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 44px;
    width: auto;
    border-radius: 50%;
    background: transparent;
    opacity: 0.9;
    transition: var(--transition);
}

header.scrolled .logo-img {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    color: var(--text-main);
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-icons button {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

.nav-icons button:hover {
    color: var(--primary);
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 148px;
    height: 42px;
    justify-content: center;
    border: 1.5px solid var(--primary) !important;
    border-radius: 100px;
    padding: 0 14px;
    font-size: 12px !important;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: var(--secondary) !important;
    color: var(--text-main);
    box-shadow: 0 8px 20px rgba(155, 106, 115, 0.14);
}

.language-toggle i {
    color: var(--primary);
    font-size: 16px;
}

.language-toggle-label {
    text-transform: uppercase;
    color: var(--text-main);
}

.language-toggle .lang-option {
    opacity: 0.45;
}

.language-toggle .lang-option.active {
    color: var(--primary);
    opacity: 1;
}

.language-toggle .lang-divider {
    color: var(--text-muted);
    opacity: 0.5;
}

.cart-icon {
    position: relative;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}

#mobile-menu-btn {
    display: none;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 120px 24px 64px;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 8s linear;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: min(860px, 100%);
    padding: 16px 20px 16px 32px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-kicker {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}


/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.highlights {
    margin-top: 24px;
}

.highlights li {
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.highlights i {
    color: var(--primary);
    margin-right: 16px;
    font-size: 1.2rem;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image:hover img {
    transform: scale(1.02);
}

/* --- Products --- */
.product-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 48px 0;
    gap: 24px;
}

.search-bar {
    position: relative;
    width: 320px;
}

.search-bar input {
    width: 100%;
    padding: 14px 48px 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    background: var(--bg-light);
    color: var(--text-main);
    outline: none;
    transition: var(--transition-fast);
    font-size: 14px;
}

.search-bar input:focus {
    border-color: var(--primary);
    background: transparent;
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.1);
}

.search-bar i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.filters .filter-btn {
    background: transparent;
    border: none;
    font-size: 13px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 5px 12px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.filters .filter-btn.active,
.filters .filter-btn:hover {
    color: var(--text-main);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--bg-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.product-img {
    position: relative;
    overflow: hidden;
    height: 380px;
    background: var(--bg-light);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

/* Product Carousel */
.product-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-carousel img.active {
    opacity: 1;
    z-index: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-main);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

.product-card:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 16px;
}

.next-btn {
    right: 16px;
}

.btn-quick-add {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.product-card:hover .btn-quick-add {
    bottom: 24px;
    opacity: 1;
}

.btn-quick-add:hover {
    background: var(--text-main);
    color: var(--white);
}

.product-info {
    padding: 24px;
    text-align: left;
}

.product-info .category {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.product-info h3 {
    margin: 8px 0 12px;
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-main);
}

.product-info .price {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 1.1rem;
}

.cod-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 10px;
    padding: 5px 10px;
    border-radius: 100px;
    background: rgba(37, 211, 102, 0.12);
    color: #128C3A;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

[data-theme="dark"] .cod-badge {
    background: rgba(37, 211, 102, 0.18);
    color: #72E59D;
}

/* --- Banner & Stats --- */
.banner {
    background: var(--secondary);
    color: var(--text-main);
    padding: 140px 0;
}

[data-theme="dark"] .banner {
    background: #161412;
}

.banner h2 {
    font-size: 3.2rem;
    margin-bottom: 24px;
    color: var(--text-main);
    font-weight: 500;
}

.banner p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.stats {
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Gallery & Lightbox --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.gallery-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    border-radius: var(--radius);
}

.gallery-img:hover {
    filter: brightness(0.85);
    transform: scale(1.02);
    box-shadow: var(--shadow-sm);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: var(--radius);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
    background: none;
    border: none;
    line-height: 1;
}

.close-lightbox:hover {
    color: var(--primary);
    transform: scale(1.1);
}

@keyframes zoomIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* --- Contact & Forms --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 60px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.info-item:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.info-item i {
    font-size: 24px;
    color: var(--primary);
    margin-right: 20px;
    width: 30px;
    text-align: center;
}

.info-item a,
.info-item p {
    color: var(--text-main);
    font-weight: 500;
    font-size: 1.1rem;
}

.form-group {
    position: relative;
    margin-bottom: 40px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    transition: var(--transition-fast);
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 0;
    color: var(--text-muted);
    transition: var(--transition-fast);
    pointer-events: none;
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--primary);
    box-shadow: 0 1px 0 0 var(--primary);
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -20px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- Vlog & Brand Promo --- */
.vlog-promo {
    background: var(--bg-color);
    padding: 120px 0;
    border-top: 1px solid var(--border-color);
}

.vlog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vlog-image img {
    width: 100%;
    max-height: 700px;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.vlog-image:hover img {
    transform: scale(1.02);
}

.vlog-content {
    max-width: 520px;
}

.vlog-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vlog-content h2 {
    color: var(--primary);
    font-size: 2.6rem;
    margin-bottom: 18px;
}

.vlog-content p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.vlog-content .btn i {
    margin-right: 8px;
}

/* --- Cart Sidebar --- */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 2001;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .cart-sidebar {
    background: rgba(10, 10, 10, 0.95);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

.cart-header button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.cart-header button:hover {
    transform: rotate(90deg);
    color: var(--primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.empty-cart-message {
    text-align: center;
    color: var(--text-muted);
    margin-top: 50px;
    font-weight: 500;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 20px;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--bg-color);
    border: 1px solid var(--border-color);
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: var(--font-body);
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-controls button {
    background: var(--bg-light);
    border: none;
    width: 28px;
    height: 28px;
    cursor: pointer;
    color: var(--text-main);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.qty-controls button:hover {
    background: var(--primary);
    color: #fff;
}

.remove-item {
    color: #dc3545;
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition-fast);
    font-size: 16px;
}

.remove-item:hover {
    color: #a71d2a;
    transform: scale(1.1);
}

.cart-footer {
    padding: 32px 24px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-color);
}

.cart-footer .total {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    font-size: 14px;
    border-radius: 100px;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.cart-overlay.show {
    display: block;
    opacity: 1;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-main);
    color: var(--bg-color);
    padding: 16px 32px;
    border-radius: 100px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3000;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 14px;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* --- Footer --- */
footer {
    background: #0A0A0A;
    color: #E5E5E5;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 64px;
    margin-bottom: 60px;
}

.footer-col h3,
.footer-col h4 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-col p {
    color: #A3A3A3;
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul li a {
    color: #A3A3A3;
    font-weight: 400;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* --- Scroll to Top --- */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    background-color: var(--primary);
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: var(--shadow);
    transition: background-color 0.3s;
}

#scrollTopBtn:hover {
    background-color: var(--primary-hover);
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 99;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    color: #fff;
    animation: whatsappPulse 1s ease infinite;
    transform: translateY(-2px);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 12px 24px rgba(37, 211, 102, 0.35);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 12px 24px rgba(37, 211, 102, 0.35);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 12px 24px rgba(37, 211, 102, 0.35);
    }
}

/* --- Animations & Utilities --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 76px;
        flex-direction: column;
        background: rgba(250, 250, 250, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        padding: 40px 0;
        box-shadow: var(--shadow);
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    [data-theme="dark"] .nav-links {
        background: rgba(10, 10, 10, 0.95);
    }

    .nav-links.active {
        right: 0;
    }

    #mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: 86vh;
        padding: 100px 16px 32px;
    }

    .hero-content {
        flex-direction: column;
        gap: 16px;
        width: min(100%, 360px);
        padding: 20px;
        border-radius: 32px;
    }

    .hero-kicker {
        font-size: 12px;
    }

    .hero-content .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 12px;
    }

    .search-bar {
        width: 100%;
    }

    .product-controls {
        justify-content: center;
    }

    .btn-quick-add {
        bottom: 16px;
        opacity: 1;
        font-size: 12px;
        padding: 10px 0;
    }

    .about-grid,
    .contact-grid,
    .vlog-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vlog-content {
        max-width: 100%;
        text-align: center;
    }

    .vlog-content h2,
    .about-text h2,
    .banner h2 {
        font-size: 2.2rem;
    }

    .stat-item h3 {
        font-size: 2.8rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .nav-icons {
        gap: 12px;
    }

    .language-toggle {
        min-width: 112px;
        height: 38px;
        font-size: 10px !important;
        gap: 5px;
        padding: 0 10px;
    }

    .language-toggle i {
        font-size: 14px;
    }

    .language-toggle-label {
        display: none;
    }

    .language-modal-card {
        padding: 28px 20px;
    }

    .language-modal-card h2 {
        font-size: 1.6rem;
    }

    .whatsapp-float {
        left: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* --- Checkout Page --- */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.checkout-form-container {
    background: var(--bg-color);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.order-summary-container {
    align-self: start;
}

.summary-card {
    background: var(--bg-color);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.checkout-items-list {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    max-height: 400px;
    overflow-y: auto;
}

.summary-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.summary-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.summary-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.summary-item-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.summary-item-price {
    font-size: 13px;
    color: var(--text-muted);
}

.summary-totals .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.summary-totals .summary-row.grand-total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-form-container {
        padding: 24px;
    }
}

/* --- Ratings Section --- */
.reviews-header {
    margin-bottom: 48px;
}

.reviews-header h2 {
    font-size: 2.6rem;
    color: var(--text-main);
    margin-bottom: 16px;
}

.overall-rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stars-display {
    font-size: 2rem;
    color: #FFB800;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
    align-items: stretch;
}

.rating-summary-col,
.review-form-col {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.rating-bar-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex: 1;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 14px;
}

.rating-bar-row span:first-child {
    width: 30px;
    color: var(--text-muted);
}

.progress-bar-bg {
    flex: 1;
    height: 10px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: #FFB800;
    border-radius: 10px;
    width: 0%;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-percent {
    width: 40px;
    text-align: right;
    color: var(--text-muted);
}

.rating-extras {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    gap: 16px;
}

.extra-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.extra-stat i {
    font-size: 24px;
}

.extra-stat div {
    display: flex;
    flex-direction: column;
}

.extra-val {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.extra-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.review-form h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

.interactive-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--border-color);
}

.interactive-stars i {
    transition: color 0.2s ease, transform 0.2s ease;
}

.interactive-stars i.hovered,
.interactive-stars i.selected {
    color: #FFB800;
}

.interactive-stars i:hover {
    transform: scale(1.15);
}

.rating-emoji {
    margin-left: 8px;
    font-size: 2.2rem;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    line-height: 1;
    color: initial;
    opacity: 1;
}

.recommend-toggle {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    font-weight: 500;
}

.toggle-group {
    display: flex;
    gap: 16px;
}

.toggle-group input[type="radio"] {
    display: none;
}

.toggle-group label {
    padding: 8px 24px;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-muted);
}

.toggle-group input[type="radio"]:checked+label {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.recent-reviews h3 {
    font-size: 1.8rem;
    margin-bottom: 32px;
    color: var(--text-main);
    text-align: center;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 8px;
}

.review-list::-webkit-scrollbar {
    width: 6px;
}

.review-list::-webkit-scrollbar-track {
    background: var(--bg-color);
    border-radius: 10px;
}

.review-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.review-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-card-stars {
    color: #FFB800;
    font-size: 14px;
    letter-spacing: 2px;
}

.review-card-text {
    color: var(--text-main);
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rating-extras {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .reviews-header h2 {
        font-size: 1.8rem;
    }

    .overall-rating-display .stars-display {
        font-size: 1.5rem;
    }

    .rating-summary-col,
    .review-form-col {
        padding: 20px;
    }

    .interactive-stars {
        font-size: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .rating-emoji {
        margin-left: 0;
        font-size: 2rem;
    }

    .review-form h3 {
        font-size: 1.3rem;
        text-align: center;
    }

    .rating-bar-row {
        gap: 8px;
        font-size: 12px;
    }

    .bar-percent {
        width: 35px;
    }
}

/* Accessibility */
.text-size-toggle {
    display: inline-flex;
    gap: 4px;
}

.text-size-toggle button {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 2px 6px;
    font-size: 14px;
    border-radius: 4px;
}

/* COD Badge Shimmer */
.cod-badge {
    position: relative;
    overflow: hidden;
}

.cod-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-45deg);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* Product Magnifier */
.product-img {
    cursor: zoom-in;
}

.magnifier-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-main);
    padding: 6px;
    border-radius: 50%;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-img:hover .magnifier-icon {
    opacity: 1;
}

@media (hover: none) and (pointer: coarse) {
    .product-img {
        cursor: default;
    }

    .magnifier-icon {
        display: none;
    }
}

/* Seasonal Features */
#home.festive-diwali::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.2) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.petal {
    position: absolute;
    top: -10px;
    width: 15px;
    height: 15px;
    background: rgba(255, 102, 102, 0.7);
    border-radius: 15px 0 15px 0;
    pointer-events: none;
    z-index: 1;
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}