:root {
    /* Premium Color Palette */
    --dm-mustard-gold: #D99A1E;
    --dm-deep-green: #1F4D2B;
    --dm-warm-ivory: #FFF8EC;
    --dm-earth-brown: #7A4A24;
    --dm-charcoal: #1F1F1F;
    --dm-pickle-red: #B83227;
    --dm-fresh-cream: #FFFDF7;
    
    /* Legacy variables for compatibility */
    --dm-ivory: #fffaf3;
    --dm-cream: #f8efe2;
    --dm-sand: #ead7bc;
    --dm-saffron: #d98f2b;
    --dm-terracotta: #9d4c2f;
    --dm-cardamom: #335c4a;
    --dm-plum: #5a3241;
    --dm-muted: #7a6a5f;
    --dm-border: rgba(122, 74, 36, 0.12);
    --dm-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --dm-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --dm-radius: 1rem;
    --dm-radius-lg: 1.25rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dm-charcoal);
    background: var(--dm-warm-ivory);
    line-height: 1.6;
}

a {
    color: var(--dm-earth-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dm-mustard-gold);
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 5rem 0;
}

.section-heading {
    margin-bottom: 2.5rem;
}

.section-heading .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(217, 154, 30, 0.12);
    color: var(--dm-mustard-gold);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

.section-heading h1,
.section-heading h2,
.section-heading h3,
.display-font {
    font-family: 'Playfair Display', serif;
}

.text-muted-soft {
    color: var(--dm-muted) !important;
}

.bg-cream {
    background-color: var(--dm-cream) !important;
}

.bg-sand {
    background-color: var(--dm-sand) !important;
}

.bg-cardamom {
    background-color: var(--dm-cardamom) !important;
}

.text-cardamom {
    color: var(--dm-cardamom) !important;
}

.text-terracotta {
    color: var(--dm-mustard-gold) !important;
}

.text-mustard-gold {
    color: var(--dm-mustard-gold) !important;
}

.text-deep-green {
    color: var(--dm-deep-green) !important;
}

.text-earth-brown {
    color: var(--dm-earth-brown) !important;
}

.border-warm {
    border-color: var(--dm-border) !important;
}

.radius-2xl {
    border-radius: calc(var(--dm-radius) + 0.5rem);
}

.shadow-soft {
    box-shadow: var(--dm-shadow);
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(157, 76, 47, 0.1);
    color: var(--dm-terracotta);
    font-weight: 600;
}

.btn {
    border-radius: 999px;
    padding: 0.8rem 1.25rem;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, var(--dm-mustard-gold), #E8B030);
    border: none;
    box-shadow: 0 4px 12px rgba(217, 154, 30, 0.3);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #C28515, var(--dm-mustard-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(217, 154, 30, 0.4);
    color: #fff;
}

.btn-outline-primary {
    color: var(--dm-earth-brown);
    border-color: rgba(122, 74, 36, 0.3);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: rgba(122, 74, 36, 0.08);
    color: var(--dm-mustard-gold);
    border-color: var(--dm-mustard-gold);
}

.top-strip {
    background: linear-gradient(90deg, var(--dm-deep-green), var(--dm-mustard-gold));
    color: #fff;
    font-size: 0.9rem;
}

.navbar-desimann {
    padding: 1rem 0;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.navbar-desimann.is-scrolled {
    background: rgba(255, 248, 236, 0.95);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand-mark {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-grid;
    place-items: center;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--dm-mustard-gold), var(--dm-earth-brown));
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(217, 154, 30, 0.3);
}

.navbar-brand .brand-copy small {
    display: block;
    color: var(--dm-muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--dm-charcoal);
    font-weight: 600;
    padding: 0.6rem 0.95rem !important;
    border-radius: 999px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    background: rgba(217, 154, 30, 0.12);
    color: var(--dm-mustard-gold);
}

.header-action {
    width: 2.9rem;
    height: 2.9rem;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(122, 74, 36, 0.12);
    color: var(--dm-charcoal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    color: var(--dm-mustard-gold);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 4.5rem;
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.55;
}

.hero-section::before {
    width: 420px;
    height: 420px;
    background: rgba(217, 154, 30, 0.18);
    top: -120px;
    right: -120px;
}

.hero-section::after {
    width: 280px;
    height: 280px;
    background: rgba(122, 74, 36, 0.12);
    left: -100px;
    bottom: -90px;
}

.hero-copy h1 {
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.hero-copy p {
    font-size: 1.08rem;
    color: var(--dm-muted);
    max-width: 37rem;
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(157, 76, 47, 0.08);
    border-radius: var(--dm-radius);
    padding: 1rem 1.1rem;
    backdrop-filter: blur(8px);
}

.hero-stat strong {
    font-size: 1.4rem;
    display: block;
    color: var(--dm-mustard-gold);
}

.hero-card,
.feature-card,
.category-card,
.product-card,
.info-card,
.auth-card,
.account-panel,
.contact-card,
.enquiry-card,
.blog-card,
.recipe-card,
.policy-card,
.track-card,
.sidebar-filter,
.sticky-summary {
    border: 1px solid var(--dm-border);
    border-radius: var(--dm-radius-lg);
    background: var(--dm-fresh-cream);
    box-shadow: var(--dm-shadow);
    transition: all 0.3s ease;
}

.hero-card {
    padding: 1.3rem;
}

.hero-showcase {
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.8), rgba(248, 239, 226, 0.95));
}

.image-stack {
    display: grid;
    gap: 1rem;
}

.image-stack .hero-main-image,
.image-stack .hero-side-card {
    border-radius: calc(var(--dm-radius) + 0.4rem);
    overflow: hidden;
    width: 100%;
    object-fit: cover;
    display: block;
}

.image-stack .hero-main-image {
    min-height: 250px;
    aspect-ratio: 4 / 3;
}

.image-stack .hero-side-card {
    min-height: 160px;
    aspect-ratio: 4 / 3;
}

.placeholder-image {
    position: relative;
    min-height: 250px;
    background: linear-gradient(135deg, rgba(217, 143, 43, 0.18), rgba(90, 50, 65, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dm-terracotta);
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    text-align: center;
}

.placeholder-image::after {
    content: attr(data-label);
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.category-card,
.feature-card,
.contact-card,
.enquiry-card,
.info-card,
.policy-card,
.recipe-card,
.blog-card {
    padding: 1.5rem;
}

.category-card .icon-wrap,
.feature-card .icon-wrap,
.contact-card .icon-wrap,
.enquiry-card .icon-wrap,
.info-card .icon-wrap {
    width: 3rem;
    height: 3rem;
    display: inline-grid;
    place-items: center;
    border-radius: 1rem;
    background: rgba(217, 154, 30, 0.12);
    color: var(--dm-mustard-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.product-card {
    overflow: hidden;
}

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

.product-media {
    position: relative;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(248, 239, 226, 0.8), rgba(255, 250, 243, 0.8));
    overflow: hidden;
}

.product-media img {
    transition: transform 0.3s ease;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
}

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

.product-media .placeholder-image {
    min-height: 240px;
    border-radius: 1rem;
}

.blog-card img,
.recipe-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.product-body {
    padding: 1.25rem;
}

.product-body h3,
.blog-card h3,
.recipe-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-meta {
    color: var(--dm-muted);
    font-size: 0.92rem;
}

.rating-stars {
    color: var(--dm-mustard-gold);
    display: inline-flex;
    gap: 0.15rem;
    font-size: 0.9rem;
}

.price-line {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dm-mustard-gold);
}

.old-price {
    color: var(--dm-muted);
    text-decoration: line-through;
}

.discount-badge {
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: var(--dm-pickle-red);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
}

.wishlist-btn {
    position: absolute;
    top: 1.15rem;
    right: 1.15rem;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.92);
    color: var(--dm-earth-brown);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    color: var(--dm-pickle-red);
    transform: scale(1.1);
}

.page-hero {
    padding: 3.5rem 0 2.25rem;
}

.breadcrumb-shell {
    display: inline-flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--dm-border);
}

.sidebar-filter,
.sticky-summary,
.account-nav,
.table-card {
    padding: 1.4rem;
}

.sticky-summary,
.sidebar-filter {
    position: sticky;
    top: 1.5rem;
}

.filter-group + .filter-group {
    border-top: 1px solid rgba(90, 50, 65, 0.08);
    margin-top: 1.1rem;
    padding-top: 1.1rem;
}

.form-control,
.form-select {
    border-radius: 0.95rem;
    border-color: rgba(90, 50, 65, 0.16);
    padding: 0.85rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(217, 154, 30, 0.45);
    box-shadow: 0 0 0 0.25rem rgba(217, 154, 30, 0.15);
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(90, 50, 65, 0.14);
    border-radius: 999px;
    overflow: hidden;
}

.qty-control button {
    border: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(248, 239, 226, 0.8);
    color: var(--dm-mustard-gold);
    transition: all 0.2s ease;
}

.qty-control button:hover {
    background: rgba(217, 154, 30, 0.2);
}

.qty-control input {
    width: 3.2rem;
    border: 0;
    text-align: center;
    background: transparent;
}

.gallery-layout {
    display: grid;
    gap: 1rem;
}

.gallery-main .placeholder-image {
    min-height: 440px;
}

.gallery-main img {
    display: block;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.gallery-thumb {
    border: 1px solid rgba(90, 50, 65, 0.12);
    border-radius: 1rem;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumb.active {
    border-color: var(--dm-mustard-gold);
    box-shadow: 0 0 0 3px rgba(217, 154, 30, 0.12);
}

.mobile-product-cta {
    display: none;
}

.product-info-list li,
.policy-list li,
.contact-list li,
.timeline li {
    margin-bottom: 0.75rem;
}

.checkout-step {
    position: relative;
    padding-left: 2.2rem;
}

.checkout-step::before {
    content: '';
    position: absolute;
    top: 0.3rem;
    left: 0;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dm-mustard-gold), var(--dm-earth-brown));
}

.auth-shell {
    min-height: calc(100vh - 120px);
    display: grid;
    place-items: center;
    padding: 4rem 0;
}

.auth-card {
    padding: 2rem;
}

.auth-hero {
    background: linear-gradient(145deg, rgba(217, 143, 43, 0.18), rgba(90, 50, 65, 0.12));
}

.account-shell {
    display: grid;
    gap: 1.5rem;
}

.account-nav {
    border: 1px solid var(--dm-border);
    border-radius: var(--dm-radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--dm-shadow);
}

.account-nav .nav-link {
    color: var(--dm-charcoal);
    padding: 0.8rem 1rem;
    border-radius: 0.9rem;
    font-weight: 600;
}

.account-nav .nav-link.active,
.account-nav .nav-link:hover {
    background: rgba(217, 154, 30, 0.12);
    color: var(--dm-mustard-gold);
}

.account-panel {
    padding: 1.5rem;
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline li {
    position: relative;
    padding-left: 1.7rem;
}

.timeline li::before {
    content: '';
    position: absolute;
    top: 0.35rem;
    left: 0;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: var(--dm-mustard-gold);
}

.track-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.track-step {
    padding: 1rem;
    border-radius: 1rem;
    border: 1px dashed rgba(217, 154, 30, 0.2);
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
}

.track-step.active {
    background: linear-gradient(135deg, rgba(217, 154, 30, 0.16), rgba(122, 74, 36, 0.16));
    border-style: solid;
}

.blog-card .meta,
.recipe-card .meta {
    color: var(--dm-muted);
    font-size: 0.92rem;
}

.recipe-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(31, 77, 43, 0.1);
    color: var(--dm-deep-green);
    font-size: 0.85rem;
    font-weight: 600;
}

.site-footer {
    padding: 4rem 0 1.5rem;
    background: linear-gradient(180deg, var(--dm-deep-green) 0%, #1a3a22 100%);
    color: rgba(255, 255, 255, 0.78);
}

.site-footer h5,
.site-footer h6 {
    color: #fff;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
    color: #fff3de;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    border: 1px solid rgba(90, 50, 65, 0.08);
}

.table-desimann thead th {
    background: var(--dm-deep-green);
    color: #fff;
    border-bottom-width: 1px;
    font-weight: 600;
}

.table-desimann td,
.table-desimann th {
    vertical-align: middle;
}

.toast-wrap {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1100;
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 4rem 0;
    }

    .hero-section {
        padding-top: 4.25rem;
    }

    .hero-stat-grid,
    .track-progress {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sticky-summary,
    .sidebar-filter {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .hero-stat-grid,
    .track-progress,
    .gallery-thumbs {
        grid-template-columns: 1fr;
    }

    .product-media .placeholder-image,
    .gallery-main .placeholder-image {
        min-height: 280px;
    }

    .page-hero {
        padding-top: 2.5rem;
    }

    .navbar-desimann {
        padding: 0.8rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255, 248, 236, 0.95);
        backdrop-filter: blur(14px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Sticky Bottom CTA for Mobile */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: 5.5rem;
    }

    .mobile-product-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 0.85rem;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 -8px 24px rgba(46, 31, 26, 0.14);
    }

    .sticky-cta-mobile {
        display: block;
    }
    
    .whatsapp-float {
        bottom: 5rem;
    }
}

/* Mobile Product Grid */
@media (max-width: 767.98px) {
    .product-grid-mobile {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .product-grid-mobile .product-card {
        padding: 0.75rem;
    }
    
    .product-grid-mobile .product-media {
        padding: 0.75rem;
    }
    
    .product-grid-mobile .product-media .placeholder-image {
        min-height: 180px;
    }
    
    .product-grid-mobile .product-body {
        padding: 0.75rem;
    }
    
    .product-grid-mobile .product-body h3 {
        font-size: 0.95rem;
    }
    
    .product-grid-mobile .current-price {
        font-size: 1rem;
    }
}

/* Desimann approved homepage direction */
:root {
    --dm-mustard-gold: #D89B1D;
    --dm-deep-green: #214631;
    --dm-warm-ivory: #FBF6EC;
    --dm-earth-brown: #7A4E2E;
    --dm-charcoal: #1E1E1E;
    --dm-pickle-red: #B53A2D;
    --dm-fresh-cream: #FFFDF8;
    --dm-soft-border: #E8DDC9;
    --dm-muted: #6F6254;
    --dm-border: rgba(232, 221, 201, 0.95);
    --dm-shadow: 0 10px 30px rgba(30, 30, 30, 0.06);
    --dm-shadow-hover: 0 18px 40px rgba(30, 30, 30, 0.10);
    --dm-radius: 18px;
    --dm-radius-lg: 22px;
}

body {
    background:
        radial-gradient(circle at 80% 5%, rgba(216, 155, 29, 0.12), transparent 28rem),
        linear-gradient(180deg, #FFFDF8 0%, var(--dm-warm-ivory) 48%, #FFFDF8 100%);
}

.container {
    max-width: 1320px;
}

.top-strip {
    background: var(--dm-mustard-gold);
    color: #18130D;
    padding: 0.22rem 0 !important;
    font-size: 0.88rem;
}

.navbar-desimann {
    background: rgba(255, 253, 248, 0.88);
    border-bottom: 1px solid rgba(232, 221, 201, 0.72);
    backdrop-filter: blur(18px);
    padding: 1.05rem 0;
}

.brand-mark {
    display: none;
}

.brand-flower {
    align-self: flex-start;
    color: var(--dm-mustard-gold);
    font-size: 1.1rem;
    line-height: 1;
    margin-top: 0.1rem;
}

.navbar-brand .brand-copy strong {
    color: var(--dm-deep-green) !important;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 2.8vw, 2.85rem) !important;
    letter-spacing: 0;
}

.navbar-brand .brand-copy small {
    color: #392C20;
    font-family: 'Playfair Display', serif;
    font-size: 0.92rem;
    letter-spacing: 0;
    text-transform: none;
}

.navbar-desimann .input-group {
    max-width: 390px;
    margin-inline: auto;
    border: 1px solid rgba(232, 221, 201, 0.9);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.86);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.navbar-desimann .input-group .form-control {
    border: 0;
    background: transparent;
    min-height: 50px;
    padding-left: 1.25rem;
    font-size: 0.92rem;
}

.navbar-desimann .input-group .btn {
    width: 48px;
    height: 48px;
    border: 0;
    margin: 2px;
    padding: 0;
    display: grid;
    place-items: center;
    color: #111;
    background: var(--dm-mustard-gold);
    box-shadow: none;
}

.navbar-nav {
    gap: 0.35rem;
}

.navbar-nav .nav-link {
    color: #24170F;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 0;
    padding: 0.55rem 0.55rem !important;
    position: relative;
    background: transparent !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.25rem;
    height: 2px;
    border-radius: 99px;
    background: transparent;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--dm-earth-brown);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    background: var(--dm-mustard-gold);
}

.header-action {
    width: 2.25rem;
    height: 2.25rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 1.35rem;
    color: #20140E;
}

.nav-actions .btn-outline-primary {
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    border: 0;
    font-size: 0;
    color: #20140E;
    background: transparent;
}

.nav-actions .btn-outline-primary i {
    margin: 0 !important;
    font-size: 1.45rem;
}

.home-hero {
    min-height: 585px;
    padding: 2.6rem 0 2.8rem;
}

.hero-section::before,
.hero-section::after {
    display: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--dm-earth-brown);
    font-weight: 700;
    font-size: 0.95rem;
}

.hero-eyebrow i {
    color: var(--dm-mustard-gold);
}

.hero-copy h1 {
    color: var(--dm-deep-green);
    font-size: clamp(3rem, 5.4vw, 4.95rem);
    line-height: 1.02;
    max-width: 720px;
}

.hero-copy p {
    color: #30261F;
    font-size: 1.03rem;
    line-height: 1.65;
    max-width: 565px;
}

.btn {
    border-radius: 12px;
    padding: 0.82rem 1.45rem;
}

.btn-primary {
    background: var(--dm-mustard-gold);
    color: #17100A;
    box-shadow: 0 10px 24px rgba(216, 155, 29, 0.28);
}

.btn-primary:hover,
.btn-primary:focus {
    background: #C88C13;
    color: #17100A;
}

.btn-outline-primary {
    border-color: var(--dm-mustard-gold);
    color: var(--dm-earth-brown);
    background: rgba(255, 253, 248, 0.72);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--dm-deep-green);
    border-color: var(--dm-deep-green);
    color: #FFFDF8;
}

.hero-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
    max-width: 720px;
    margin-top: 1.7rem;
}

.hero-stat {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.15rem 0.65rem;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-stat i {
    grid-row: span 2;
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--dm-soft-border);
    border-radius: 50%;
    color: var(--dm-deep-green);
    background: rgba(255, 253, 248, 0.72);
}

.hero-stat strong {
    color: #21170F;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    line-height: 1.15;
}

.hero-stat span {
    color: #65594E;
    font-size: 0.76rem;
    line-height: 1.15;
}

.hero-product-scene {
    position: relative;
    min-height: 475px;
    display: flex;
    align-items: center;
}

.hero-product-image {
    width: 100%;
    min-height: 475px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center right;
    border-radius: 0;
    filter: drop-shadow(0 28px 34px rgba(80, 47, 24, 0.13));
    mix-blend-mode: multiply;
}

.hero-trust-seal {
    position: absolute;
    right: 2.5rem;
    top: 34%;
    width: 128px;
    min-height: 140px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1rem 0.75rem;
    color: #FFF9E9;
    background: var(--dm-deep-green);
    border: 2px solid var(--dm-mustard-gold);
    border-radius: 28px;
    box-shadow: 0 14px 34px rgba(33, 70, 49, 0.24);
}

.hero-trust-seal span {
    font-size: 0.74rem;
    font-weight: 700;
}

.hero-trust-seal strong {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.15;
}

.hero-trust-seal i {
    color: var(--dm-mustard-gold);
}

.home-category-section {
    padding: 0 0 1.35rem;
}

.home-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin: -0.1rem 0 1.05rem;
    color: var(--dm-mustard-gold);
}

.home-section-title h2,
.best-seller-heading h2 {
    color: var(--dm-deep-green);
    font-size: clamp(1.7rem, 2.6vw, 2.25rem);
    margin: 0;
}

.category-tile {
    position: relative;
    min-height: 104px;
    overflow: hidden;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(255,253,248,0.98), rgba(251,246,236,0.78));
    box-shadow: 0 8px 24px rgba(30, 30, 30, 0.055);
}

.category-copy {
    position: relative;
    z-index: 2;
    max-width: 52%;
}

.category-copy h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dm-earth-brown);
    font-size: 1.35rem;
    margin: 0 0 0.25rem;
}

.category-copy p {
    color: #45372C;
    font-size: 0.86rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.category-copy a {
    width: 1.75rem;
    height: 1.75rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #17100A;
    background: var(--dm-mustard-gold);
}

.category-tile-image {
    position: absolute;
    inset: 0 0 0 auto;
    width: 62%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 28%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 28%);
}

.best-sellers-section {
    padding: 0.5rem 0 4.5rem;
}

.best-seller-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 0.9rem;
    border-top: 1px solid rgba(232, 221, 201, 0.9);
    padding-top: 0.9rem;
}

.view-all-link {
    color: var(--dm-earth-brown);
    font-weight: 700;
}

.product-card {
    border-radius: 10px;
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(232, 221, 201, 0.95);
    box-shadow: 0 8px 24px rgba(30, 30, 30, 0.055);
}

.product-media {
    padding: 0.72rem 0.72rem 0;
    background: linear-gradient(180deg, rgba(255,253,248,0.95), rgba(251,246,236,0.62));
}

.product-media img,
.product-media .placeholder-image {
    aspect-ratio: 1.24 / 1;
    min-height: 155px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.product-card-badge {
    position: absolute;
    top: 0.72rem;
    left: 0.72rem;
    z-index: 3;
    padding: 0.24rem 0.55rem;
    border-radius: 6px;
    color: #17100A;
    background: var(--dm-mustard-gold);
    font-size: 0.66rem;
    font-weight: 800;
}

.col-xl-2:nth-child(2n) .product-card-badge {
    color: #FFFDF8;
    background: var(--dm-deep-green);
}

.col-xl-2:nth-child(4n) .product-card-badge {
    background: var(--dm-earth-brown);
}

.wishlist-btn {
    top: 0.7rem;
    right: 0.7rem;
    width: 2.05rem;
    height: 2.05rem;
    box-shadow: 0 8px 18px rgba(30, 30, 30, 0.08);
}

.product-body {
    padding: 0.82rem 0.9rem 0.95rem;
}

.product-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
    line-height: 1.2;
    min-height: 2.25rem;
    margin-bottom: 0.45rem;
}

.product-body h3 a {
    color: #1D1713;
}

.rating-stars {
    color: var(--dm-mustard-gold);
    font-size: 0.72rem;
}

.current-price {
    color: #1C1510;
    font-size: 1.04rem;
}

.product-meta {
    font-size: 0.76rem;
}

.product-card .btn-primary {
    width: 100%;
    padding: 0.66rem 0.7rem;
    font-size: 0.86rem;
    border-radius: 8px;
}

.section-padding {
    padding: 4.6rem 0;
}

.hero-side-slider {
    overflow: hidden;
    min-height: 430px;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(232, 221, 201, 0.95);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255,253,248,0.92), rgba(255,244,222,0.82)),
        #FFF8EC;
    box-shadow: 0 24px 60px rgba(80, 47, 24, 0.16);
    isolation: isolate;
}

.hero-side-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 650ms ease, transform 1200ms ease;
    pointer-events: none;
    padding: 0;
}

.hero-side-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}

.hero-side-slider .hero-product-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 22px;
    filter: none;
    mix-blend-mode: normal;
    background: #FFF8EC;
}

.hero-side-slider .hero-trust-seal {
    display: none;
}

.hero-side-slider-controls {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 0.9rem;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem;
    border: 1px solid rgba(122, 74, 36, 0.22);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.82);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 36px rgba(35, 24, 16, 0.12);
}

.hero-slider-arrow {
    width: 2.35rem;
    height: 2.35rem;
    border: 0;
    border-radius: 50%;
    color: #17100A;
    background: var(--dm-mustard-gold);
    display: grid;
    place-items: center;
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-slider-dots button {
    width: 0.62rem;
    height: 0.62rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(122, 74, 36, 0.32);
    transition: width 220ms ease, background 220ms ease;
}

.hero-slider-dots button.active {
    width: 1.65rem;
    background: var(--dm-deep-green);
}

.site-logo-img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.founders-hero {
    min-height: 52vh;
    display: grid;
    align-items: end;
    padding: 7rem 0 4rem;
    background:
        linear-gradient(90deg, rgba(255,253,248,0.96) 0%, rgba(255,253,248,0.8) 42%, rgba(255,253,248,0.24) 100%),
        url('/uploads/banners/desimann-hero-premium.png') center/cover;
}

.founders-hero-inner {
    width: min(760px, 100%);
}

.founders-hero h1 {
    color: var(--dm-deep-green);
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    line-height: 0.98;
    margin: 1rem 0;
}

.founders-hero p {
    color: #3F332B;
    max-width: 640px;
    font-size: 1.08rem;
}

.founder-card {
    overflow: hidden;
    border: 1px solid rgba(232, 221, 201, 0.95);
    border-radius: 14px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 18px 46px rgba(35, 24, 16, 0.08);
}

.founder-photo-wrap {
    position: relative;
    background: linear-gradient(135deg, #FFF4DE, #F8E5C1);
}

.founder-photo {
    width: 100%;
    aspect-ratio: 4 / 4.55;
    object-fit: cover;
    object-position: center;
    display: block;
}

.founder-card-body {
    padding: 1.25rem;
}

.founder-card-body span {
    display: inline-flex;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    color: #17100A;
    background: var(--dm-mustard-gold);
    font-size: 0.78rem;
    font-weight: 800;
}

.founder-card-body h2 {
    color: var(--dm-earth-brown);
    font-size: 2rem;
    margin-bottom: 0.55rem;
}

.founder-card-body p {
    color: #5A4A3F;
    margin-bottom: 0;
}

.founders-belief {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: 14px;
    color: #FFFDF8;
    background: linear-gradient(135deg, var(--dm-deep-green), #102D18);
}

.founders-belief h2 {
    font-size: clamp(1.9rem, 4vw, 3.4rem);
    line-height: 1.04;
}

.business-menu {
    min-width: 240px;
    border: 1px solid rgba(232, 221, 201, 0.95);
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(35, 24, 16, 0.12);
    padding: 0.55rem;
    z-index: 1100;
    background: rgba(255, 253, 248, 0.98);
}

.business-menu .dropdown-item {
    border-radius: 8px;
    padding: 0.68rem 0.8rem;
    color: #271A12;
    font-weight: 650;
}

.business-menu .dropdown-item:hover,
.business-menu .dropdown-item:focus {
    background: #FFF4DE;
    color: var(--dm-earth-brown);
}

@media (min-width: 992px) {
    .navbar-desimann .nav-item.dropdown:hover > .dropdown-menu,
    .navbar-desimann .nav-item.dropdown:focus-within > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.business-section {
    padding: 0 0 4.8rem;
}

.business-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2rem;
    align-items: center;
    padding: clamp(1.25rem, 3vw, 2.2rem);
    border: 1px solid rgba(232, 221, 201, 0.95);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(255, 247, 230, 0.9)),
        url('/uploads/categories/desimann-category-collage.png') center/cover;
    box-shadow: 0 18px 50px rgba(35, 24, 16, 0.08);
    overflow: hidden;
    position: relative;
}

.business-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,253,248,0.98) 0%, rgba(255,253,248,0.9) 42%, rgba(255,253,248,0.72) 100%);
}

.business-panel-copy,
.business-grid {
    position: relative;
    z-index: 1;
}

.business-panel-copy h2 {
    color: var(--dm-deep-green);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.03;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.business-card {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 1rem;
    border: 1px solid rgba(232, 221, 201, 0.95);
    border-radius: 10px;
    background: rgba(255, 253, 248, 0.94);
    color: #271A12;
    box-shadow: 0 10px 26px rgba(35, 24, 16, 0.06);
}

.business-card:hover {
    transform: translateY(-2px);
    color: var(--dm-earth-brown);
    box-shadow: 0 16px 34px rgba(35, 24, 16, 0.1);
}

.business-card i {
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--dm-mustard-gold);
    color: #17100A;
}

.business-card strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.22rem;
    line-height: 1.15;
}

.business-card span {
    color: #655348;
    font-size: 0.9rem;
    line-height: 1.35;
}

.enquiry-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.enquiry-mini-grid span {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 44px;
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(232, 221, 201, 0.95);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.8);
    color: #3A2A1F;
    font-weight: 700;
    font-size: 0.9rem;
}

.enquiry-mini-grid i {
    color: var(--dm-earth-brown);
}

.immersive-footer {
    padding: 0;
    background:
        linear-gradient(180deg, rgba(31,77,43,0.96), rgba(14,38,20,0.98)),
        url('/uploads/categories/desimann-category-collage.png') center/cover;
}

.footer-trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-trust-row span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 46px;
    padding: 0.65rem;
    border-radius: 10px;
    color: #FFF6DF;
    background: rgba(255,255,255,0.08);
    font-weight: 750;
    text-align: center;
}

.footer-trust-row i {
    color: var(--dm-mustard-gold);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: 3rem 0 2rem;
}

.footer-brand-panel {
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand:hover {
    color: #FFF4DE;
}

.footer-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255,255,255,0.92);
    padding: 0.35rem;
}

.footer-brand strong,
.footer-brand small {
    display: block;
}

.footer-brand strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    line-height: 1;
}

.footer-contact-list {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.footer-contact-list a,
.footer-contact-list span {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255,255,255,0.82);
}

.footer-link-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.footer-link-grid h6 {
    margin-bottom: 0.9rem;
    color: #FFF4DE;
}

.footer-link-grid a {
    display: block;
    margin-bottom: 0.55rem;
    color: rgba(255,255,255,0.78);
}

.footer-newsletter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    gap: 1.5rem;
    align-items: center;
    padding: 1.25rem;
    border-radius: 14px;
    color: #23170F;
    background: #FFF4DE;
}

.footer-newsletter h5 {
    color: var(--dm-earth-brown);
}

.footer-newsletter form {
    display: flex;
    gap: 0.75rem;
}

.footer-newsletter .form-control {
    border-color: rgba(122, 74, 36, 0.22);
    background: rgba(255,255,255,0.86);
}

.immersive-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0;
    padding: 1.35rem 0;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.footer-socials a {
    color: rgba(255,255,255,0.82);
}

.footer-socials i {
    font-size: 1.15rem;
}

@media (max-width: 1199.98px) {
    .hero-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .home-hero {
        padding-top: 2rem;
    }

    .hero-product-scene {
        min-height: 360px;
    }

    .hero-product-image {
        min-height: 360px;
    }

    .hero-side-slider {
        min-height: 0;
        aspect-ratio: 16 / 9;
        margin-top: 0.5rem;
    }

    .hero-side-slider .hero-product-image {
        min-height: 0;
    }

    .navbar-desimann .input-group {
        max-width: none;
    }

    .business-panel {
        grid-template-columns: 1fr;
    }

    .footer-main,
    .footer-newsletter,
    .founders-belief {
        grid-template-columns: 1fr;
    }

    .footer-link-grid,
    .footer-trust-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .navbar-brand .brand-copy strong {
        font-size: 2rem !important;
    }

    .hero-copy h1 {
        font-size: 2.55rem;
    }

    .hero-stat-grid {
        grid-template-columns: 1fr;
    }

    .hero-product-scene,
    .hero-product-image {
        min-height: 275px;
    }

    .hero-side-slider {
        min-height: 0;
        border-radius: 16px;
    }

    .hero-side-slider .hero-product-image {
        min-height: 0;
        border-radius: 16px;
    }

    .hero-side-slider-controls {
        bottom: 0.55rem;
        padding: 0.42rem;
        gap: 0.5rem;
    }

    .hero-slider-arrow {
        width: 2rem;
        height: 2rem;
    }

    .hero-trust-seal {
        right: 1rem;
        top: 1rem;
        width: 112px;
        min-height: 120px;
    }

    .category-copy {
        max-width: 58%;
    }

    .business-section {
        padding-bottom: 3.2rem;
    }

    .business-grid,
    .enquiry-mini-grid {
        grid-template-columns: 1fr;
    }

    .business-card {
        min-height: 124px;
    }

    .site-logo-img {
        width: 46px;
        height: 46px;
    }

    .footer-link-grid,
    .footer-trust-row {
        grid-template-columns: 1fr;
    }

    .footer-newsletter form,
    .immersive-footer .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .founders-hero {
        min-height: 58vh;
        padding-top: 5rem;
    }
}

/* Refined site header */
.top-strip {
    background: linear-gradient(90deg, #E8A819, #F6C451 45%, #E8A819);
    color: #1F170D;
    border-bottom: 1px solid rgba(122, 74, 36, 0.16);
}

.top-strip .small {
    letter-spacing: 0.01em;
}

.navbar-desimann {
    padding: 0.64rem 0;
    background: rgba(255, 253, 248, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(232, 221, 201, 0.9);
    box-shadow: 0 10px 28px rgba(35, 24, 16, 0.05);
}

.navbar-desimann.is-scrolled {
    box-shadow: 0 18px 42px rgba(35, 24, 16, 0.1);
}

.navbar-desimann .navbar-brand {
    min-width: max-content;
    margin-right: 0.5rem;
}

.navbar-desimann .navbar-collapse {
    min-width: 0;
}

.brand-flower {
    width: 2.65rem;
    height: 2.65rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #17100A;
    background: radial-gradient(circle at 30% 25%, #FFE9A6, var(--dm-mustard-gold));
    box-shadow: 0 10px 22px rgba(217, 154, 30, 0.22);
}

.site-logo-img {
    width: 52px;
    height: 52px;
    padding: 0.25rem;
    border-radius: 14px;
    background: rgba(255, 244, 222, 0.88);
    border: 1px solid rgba(217, 154, 30, 0.24);
}

.navbar-brand .brand-copy strong {
    color: var(--dm-deep-green) !important;
    font-family: 'Playfair Display', serif;
    font-size: 2rem !important;
    line-height: 0.9 !important;
}

.navbar-brand .brand-copy small {
    color: #6D4A32;
    font-size: 0.76rem;
    font-weight: 750;
}

.site-header-search {
    max-width: 390px;
    min-width: 230px;
}

.site-header-search .input-group {
    overflow: hidden;
    border: 1px solid rgba(122, 74, 36, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.site-header-search .form-control,
.site-header-search .btn {
    border: 0;
    background: transparent;
}

.site-header-search .form-control {
    min-height: 46px;
    padding-left: 1.1rem;
}

.site-header-search .btn {
    width: 46px;
    margin: 0.18rem;
    border-radius: 50% !important;
    color: #17100A;
    background: var(--dm-mustard-gold);
}

.navbar-desimann .navbar-nav {
    gap: 0.08rem;
    flex-shrink: 0;
}

.navbar-desimann .nav-link {
    position: relative;
    padding: 0.62rem 0.66rem !important;
    color: #2E2118;
    font-weight: 760;
    font-size: 0.92rem;
}

.navbar-desimann .nav-link::after {
    content: "";
    position: absolute;
    left: 0.72rem;
    right: 0.72rem;
    bottom: 0.32rem;
    height: 2px;
    border-radius: 999px;
    background: var(--dm-mustard-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.navbar-desimann .nav-link:hover::after,
.navbar-desimann .nav-link.active::after {
    transform: scaleX(1);
}

.header-action {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(122, 74, 36, 0.14);
    border-radius: 50%;
    color: #24170F;
    background: rgba(255, 255, 255, 0.72);
}

.header-action:hover {
    color: #17100A;
    background: #FFF4DE;
    border-color: rgba(217, 154, 30, 0.45);
}

.header-track-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0 0.8rem;
    border: 1px solid rgba(31, 77, 43, 0.2);
    border-radius: 999px;
    color: var(--dm-deep-green);
    background: rgba(255, 244, 222, 0.72);
    font-size: 0.88rem;
    font-weight: 850;
    white-space: nowrap;
}

.header-track-link:hover {
    color: #17100A;
    background: var(--dm-mustard-gold);
    border-color: rgba(217, 154, 30, 0.55);
}

.header-account-btn {
    min-height: 42px;
    border-radius: 999px;
    color: var(--dm-deep-green);
    border-color: rgba(31, 77, 43, 0.28);
    background: rgba(255, 253, 248, 0.72);
    font-weight: 800;
}

.nav-actions {
    flex-shrink: 0;
}

.navbar-toggler {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #17100A;
    background: #FFF4DE;
}

.navbar-toggler i {
    font-size: 1.5rem;
}

@media (max-width: 1199.98px) {
    .navbar-desimann .nav-link {
        padding-inline: 0.52rem !important;
        font-size: 0.9rem;
    }

    .site-header-search {
        max-width: 300px;
        min-width: 190px;
    }
}

@media (max-width: 991.98px) {
    .navbar-desimann .navbar-collapse {
        margin-top: 0.85rem;
        padding: 1rem;
        border: 1px solid rgba(232, 221, 201, 0.95);
        border-radius: 16px;
        background: rgba(255, 253, 248, 0.98);
        box-shadow: 0 18px 40px rgba(35, 24, 16, 0.08);
    }

    .site-header-search {
        max-width: none;
    }

    .navbar-desimann .navbar-nav {
        gap: 0;
    }

    .navbar-desimann .nav-link {
        border-radius: 10px;
    }

    .navbar-desimann .nav-link:hover,
    .navbar-desimann .nav-link.active {
        background: #FFF4DE;
    }

    .navbar-desimann .nav-link::after {
        display: none;
    }

    .navbar-desimann .dropdown-menu.business-menu {
        position: static;
        display: block;
        margin: 0.15rem 0 0.75rem;
        border-radius: 12px;
        box-shadow: none;
        background: #FFF8EC;
    }

    .navbar-desimann .dropdown-toggle {
        pointer-events: auto;
    }

    .nav-actions {
        justify-content: flex-start;
        width: 100%;
        flex-wrap: wrap;
    }
}

@media (max-width: 575.98px) {
    body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
        overflow-x: hidden;
    }

    body.mobile-overlay-open {
        overflow: hidden;
    }

    .top-strip {
        font-size: 0.75rem;
        padding: 0.18rem 0 !important;
    }

    .navbar-desimann {
        padding: 0.45rem 0;
    }

    .navbar-desimann .navbar-brand {
        gap: 0.45rem !important;
    }

    .site-logo-img,
    .brand-flower {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .navbar-brand .brand-copy strong {
        font-size: 1.58rem !important;
    }

    .navbar-brand .brand-copy small {
        font-size: 0.66rem;
    }

    .site-header-search {
        display: none;
    }

    .navbar-desimann .navbar-collapse {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .header-track-link {
        min-height: 40px;
    }

    .header-track-link span,
    .header-account-btn span {
        display: none;
    }

    .header-account-btn {
        width: 42px;
        min-height: 42px;
        padding: 0;
        display: inline-grid;
        place-items: center;
    }

    .header-account-btn i {
        margin: 0 !important;
    }

    .page-hero {
        padding: 1.5rem 0 1.2rem;
    }

    .page-hero h1,
    .home-hero h1 {
        font-size: clamp(2rem, 11vw, 3.05rem);
        line-height: 0.98;
    }

    .home-hero {
        min-height: auto;
        padding: 1.25rem 0 1.8rem;
    }

    .hero-actions,
    .hero-trust-row {
        gap: 0.65rem;
    }

    .category-row {
        display: flex;
        gap: 0.8rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.35rem;
    }

    .category-row > [class*="col-"] {
        width: 78%;
        min-width: 220px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .product-card {
        border-radius: 18px;
        box-shadow: 0 14px 32px rgba(57, 44, 32, 0.1);
        overflow: hidden;
    }

    .product-media {
        min-height: 150px;
    }

    .product-card .placeholder-image,
    .product-card img {
        aspect-ratio: 1 / 1;
    }

    .product-body {
        padding: 0.8rem;
    }

    .product-body h3 {
        min-height: 2.35em;
        font-size: 1.02rem;
        line-height: 1.15;
        overflow: hidden;
    }

    .rating-stars {
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .price-line {
        margin-bottom: 0.75rem !important;
    }

    .current-price {
        font-size: 1.05rem;
    }

    .product-body .btn {
        min-height: 40px;
        padding: 0.55rem 0.65rem;
        border-radius: 12px;
        font-size: 0.86rem;
    }

    .shop-grid .row,
    .best-sellers-section .row {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.9rem;
    }

    .best-sellers-section .row > [class*="col-"],
    .section-padding .row > .col-md-6.col-xl-4,
    .section-padding .row > .col-md-6.col-xl-2 {
        width: 50%;
        flex: 0 0 auto;
    }

    .mobile-shop-toolbar {
        position: sticky;
        top: 68px;
        z-index: 20;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
        margin-bottom: 1rem;
        padding: 0.65rem;
        border: 1px solid rgba(122, 74, 36, 0.12);
        border-radius: 16px;
        background: rgba(255, 253, 248, 0.92);
        backdrop-filter: blur(14px);
    }

    .mobile-shop-toolbar .btn {
        min-height: 44px;
        border-radius: 12px;
        font-weight: 850;
    }

    .mobile-sheet-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
        font-size: 1.05rem;
    }

    .mobile-sheet-head button {
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 50%;
        background: #FFF4DE;
    }

    .sidebar-filter[data-mobile-filter-sheet] {
        position: fixed;
        inset: auto 0 0;
        z-index: 1080;
        max-height: 86vh;
        overflow-y: auto;
        transform: translateY(110%);
        border-radius: 24px 24px 0 0;
        background: #FFFDF8;
        box-shadow: 0 -24px 60px rgba(35, 24, 16, 0.22);
        transition: transform 0.24s ease;
        padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
    }

    .sidebar-filter[data-mobile-filter-sheet].show {
        transform: translateY(0);
    }

    .table-card table,
    .table-card thead,
    .table-card tbody,
    .table-card tr,
    .table-card td {
        display: block;
    }

    .table-card thead {
        display: none;
    }

    .table-card tr {
        padding: 0.9rem;
        border-bottom: 1px solid rgba(122, 74, 36, 0.12);
    }

    .table-card td {
        padding: 0.4rem 0 !important;
        border: 0;
    }

    .sticky-summary {
        position: static;
    }
}

.mobile-bottom-nav,
.mobile-search-overlay,
.mobile-whatsapp-float,
.mobile-product-cta,
.mobile-cart-checkout,
.mobile-checkout-pay,
.mobile-shop-toolbar,
.mobile-sheet-head {
    display: none;
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
    }

    .mobile-shop-toolbar {
        position: sticky;
        top: 68px;
        z-index: 20;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
        margin-bottom: 1rem;
        padding: 0.65rem;
        border: 1px solid rgba(122, 74, 36, 0.12);
        border-radius: 16px;
        background: rgba(255, 253, 248, 0.92);
        backdrop-filter: blur(14px);
    }

    .mobile-sheet-head {
        display: flex;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1050;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0.15rem;
        padding: 0.5rem 0.6rem calc(0.5rem + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(122, 74, 36, 0.14);
        border-radius: 22px 22px 0 0;
        background: rgba(255, 253, 248, 0.96);
        box-shadow: 0 -18px 46px rgba(35, 24, 16, 0.14);
        backdrop-filter: blur(18px);
    }

    .mobile-bottom-nav-item {
        position: relative;
        display: grid;
        place-items: center;
        gap: 0.15rem;
        min-height: 54px;
        border: 0;
        border-radius: 16px;
        color: #6D4A32;
        background: transparent;
        text-decoration: none;
        font-size: 0.68rem;
        font-weight: 800;
    }

    .mobile-bottom-nav-item i {
        font-size: 1.25rem;
    }

    .mobile-bottom-nav-item.active {
        color: var(--dm-deep-green);
        background: #FFF4DE;
    }

    .mobile-bottom-icon {
        position: relative;
        display: inline-grid;
        place-items: center;
    }

    .mobile-bottom-icon em {
        position: absolute;
        top: -0.48rem;
        right: -0.72rem;
        min-width: 1.05rem;
        height: 1.05rem;
        padding: 0 0.22rem;
        border-radius: 999px;
        color: #fff;
        background: var(--dm-pickle-red);
        font-style: normal;
        font-size: 0.62rem;
        line-height: 1.05rem;
        text-align: center;
    }

    .mobile-search-overlay {
        position: fixed;
        inset: 0;
        z-index: 1090;
        display: block;
        pointer-events: none;
        opacity: 0;
        background: rgba(24, 19, 13, 0.42);
        transition: opacity 0.2s ease;
    }

    .mobile-search-overlay.show {
        pointer-events: auto;
        opacity: 1;
    }

    .mobile-search-panel {
        min-height: 100%;
        padding: calc(0.85rem + env(safe-area-inset-top)) 1rem 1.25rem;
        background: #FBF6EC;
        transform: translateY(1rem);
        transition: transform 0.22s ease;
    }

    .mobile-search-overlay.show .mobile-search-panel {
        transform: translateY(0);
    }

    .mobile-search-top {
        display: flex;
        gap: 0.7rem;
        align-items: center;
    }

    .mobile-search-form {
        position: relative;
        flex: 1;
    }

    .mobile-search-form i {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #6D4A32;
    }

    .mobile-search-form input {
        width: 100%;
        min-height: 52px;
        padding: 0 1rem 0 2.8rem;
        border: 1px solid rgba(122, 74, 36, 0.14);
        border-radius: 999px;
        background: #fff;
        font-weight: 700;
    }

    .mobile-search-close {
        width: 48px;
        height: 48px;
        border: 0;
        border-radius: 50%;
        background: #FFF4DE;
        color: #271A12;
    }

    .mobile-search-content {
        padding-top: 1.3rem;
    }

    .mobile-search-content h2 {
        margin: 1rem 0 0.7rem;
        font-size: 0.88rem;
        font-weight: 900;
        color: #6D4A32;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .mobile-search-chips {
        display: flex;
        gap: 0.55rem;
        overflow-x: auto;
        padding-bottom: 0.2rem;
    }

    .mobile-search-chips a,
    .mobile-search-links a {
        color: #271A12;
        text-decoration: none;
    }

    .mobile-search-chips a {
        flex: 0 0 auto;
        padding: 0.68rem 0.9rem;
        border-radius: 999px;
        background: #fff;
        border: 1px solid rgba(122, 74, 36, 0.1);
        font-weight: 800;
    }

    .mobile-search-links {
        display: grid;
        gap: 0.65rem;
    }

    .mobile-search-links a {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.9rem;
        border-radius: 16px;
        background: #fff;
        border: 1px solid rgba(122, 74, 36, 0.1);
        font-weight: 850;
    }

    .mobile-search-links i {
        display: grid;
        place-items: center;
        width: 38px;
        height: 38px;
        border-radius: 12px;
        color: var(--dm-deep-green);
        background: #FFF4DE;
    }

    .mobile-whatsapp-float {
        position: fixed;
        right: 1rem;
        bottom: calc(88px + env(safe-area-inset-bottom));
        z-index: 1049;
        display: grid;
        place-items: center;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        color: #fff;
        background: #25D366;
        box-shadow: 0 14px 34px rgba(37, 211, 102, 0.35);
        text-decoration: none;
        font-size: 1.55rem;
    }

    .mobile-product-cta,
    .mobile-cart-checkout,
    .mobile-checkout-pay {
        position: fixed;
        left: 0.75rem;
        right: 0.75rem;
        bottom: calc(82px + env(safe-area-inset-bottom));
        z-index: 1048;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
        padding: 0.65rem;
        border: 1px solid rgba(122, 74, 36, 0.12);
        border-radius: 18px;
        background: rgba(255, 253, 248, 0.96);
        box-shadow: 0 16px 42px rgba(35, 24, 16, 0.16);
        backdrop-filter: blur(16px);
    }

    .mobile-cart-checkout,
    .mobile-checkout-pay {
        grid-template-columns: auto 1fr;
        align-items: center;
    }

    .mobile-checkout-pay {
        bottom: calc(0.75rem + env(safe-area-inset-bottom));
    }

    .mobile-product-cta .btn,
    .mobile-cart-checkout .btn,
    .mobile-checkout-pay .btn {
        min-height: 48px;
        border-radius: 14px;
        font-weight: 900;
    }
}
    .navbar-brand .brand-copy strong {
        font-size: 1.55rem !important;
    }

    .navbar-brand .brand-copy small {
        display: none;
    }

    .site-logo-img,
    .brand-flower {
        width: 42px;
        height: 42px;
    }

    .header-account-btn span {
        display: none;
    }

    .header-track-link span {
        display: none;
    }

    .header-track-link {
        width: 42px;
        padding-inline: 0;
        justify-content: center;
    }

    .header-account-btn {
        width: 42px;
        padding-inline: 0;
        display: grid;
        place-items: center;
    }

    .header-account-btn i {
        margin: 0 !important;
    }
}

.account-avatar-editor {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(90, 50, 65, 0.12);
    border-radius: 1.1rem;
    background: rgba(255, 250, 242, 0.72);
}

.account-avatar-editor img,
.account-avatar-fallback,
.account-sidebar-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(217, 154, 30, 0.28);
    background: #fff;
}

.account-avatar-fallback {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dm-deep-green), var(--dm-mustard-gold));
}

.account-sidebar-avatar {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
}

.site-mode-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 10%, rgba(217, 154, 30, 0.18), transparent 32%),
        linear-gradient(135deg, #fffaf0 0%, #f8ead8 52%, #fffdf8 100%);
}

.site-mode-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}

.site-mode-card {
    width: min(760px, 100%);
    padding: clamp(1.5rem, 5vw, 3.5rem);
    border: 1px solid rgba(122, 74, 36, 0.14);
    border-radius: 1.5rem;
    background: rgba(255, 253, 247, 0.92);
    box-shadow: 0 28px 80px rgba(52, 32, 18, 0.16);
}

.site-mode-card-wide {
    width: min(1080px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 1.5rem;
    align-items: center;
}

.site-mode-kicker {
    display: inline-flex;
    margin-bottom: 0.85rem;
    color: var(--dm-earth-brown);
    font-weight: 800;
    letter-spacing: 0;
}

.site-mode-card h1 {
    margin: 0 0 1rem;
    color: var(--dm-deep-green);
    font-family: "Playfair Display", serif;
    font-size: clamp(2.25rem, 6vw, 4.25rem);
    line-height: 1;
}

.site-mode-card p {
    max-width: 620px;
    margin: 0;
    color: var(--dm-charcoal);
    font-size: 1.08rem;
}

.site-mode-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
}

.site-mode-countdown div,
.site-mode-lead-form {
    border: 1px solid rgba(90, 50, 65, 0.1);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 12px 30px rgba(52, 32, 18, 0.08);
}

.site-mode-countdown div {
    padding: 0.9rem;
    text-align: center;
}

.site-mode-countdown strong {
    display: block;
    color: var(--dm-pickle-red);
    font-size: clamp(1.35rem, 4vw, 2rem);
    line-height: 1;
}

.site-mode-countdown span {
    display: block;
    margin-top: 0.35rem;
    color: var(--dm-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.site-mode-lead-form {
    display: grid;
    gap: 0.9rem;
    padding: 1.2rem;
}

.site-mode-lead-form h2 {
    margin: 0 0 0.25rem;
    color: var(--dm-deep-green);
    font-size: 1.25rem;
    font-weight: 800;
}

@media (max-width: 767.98px) {
    .site-mode-card-wide {
        grid-template-columns: 1fr;
    }

    .account-avatar-editor {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-mode-countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
