/* ==========================================================================
   ARM HERBAL — Ultra-Responsive Premium Herbal Design System
   Brand Palette: Deep Forest Emerald, Warm Royal Gold, Herbal Sage, Crisp Surfaces
   Typography: Ador Noirrit (Primary) with Hind Siliguri / Noto Sans Bengali fallbacks
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Cinzel:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

@font-face {
    font-family: 'Ador Noirrit';
    src: local('Ador Noirrit'),
         local('AdorNoirrit'),
         local('Li Ador Noirrit'),
         local('Li Ador Noirrit Unicode'),
         url('../fonts/AdorNoirrit/AdorNoirrit.ttf') format('truetype'),
         url('/fonts/AdorNoirrit/AdorNoirrit.ttf') format('truetype'),
         url('../fonts/AdorNoirrit/Li-Ador-Noirrit.ttf') format('truetype'),
         url('/fonts/AdorNoirrit/Li-Ador-Noirrit.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AdorNoirrit';
    src: local('Ador Noirrit'),
         local('AdorNoirrit'),
         local('Li Ador Noirrit'),
         local('Li Ador Noirrit Unicode'),
         url('../fonts/AdorNoirrit/AdorNoirrit.ttf') format('truetype'),
         url('/fonts/AdorNoirrit/AdorNoirrit.ttf') format('truetype'),
         url('../fonts/AdorNoirrit/Li-Ador-Noirrit.ttf') format('truetype'),
         url('/fonts/AdorNoirrit/Li-Ador-Noirrit.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-dark: #081d13;
    --primary: #113827;
    --primary-hover: #174a34;
    --primary-light: #205c41;
    --primary-gradient: linear-gradient(135deg, #113827 0%, #081d13 100%);
    
    --gold: #c5a059;
    --gold-light: #e5c378;
    --gold-dark: #9a7432;
    --gold-gradient: linear-gradient(135deg, #e5c378 0%, #c5a059 50%, #9a7432 100%);
    --gold-glow: 0 8px 24px rgba(197, 160, 89, 0.28);
    
    --herbal-sage: #e8f2ec;
    --herbal-tint: #f2f8f4;
    --herbal-leaf: #3d8b63;
    
    --bg-page: #f8faf8;
    --bg-card: #ffffff;
    --bg-subtle: #f3f7f4;
    
    --text-main: #13241b;
    --text-muted: #566c60;
    --text-light: #879b90;
    
    --border-color: #e2ede6;
    --border-hover: #c4dcd0;
    
    --shadow-sm: 0 2px 8px rgba(17, 56, 39, 0.04);
    --shadow-md: 0 6px 20px rgba(17, 56, 39, 0.08);
    --shadow-lg: 0 14px 36px rgba(17, 56, 39, 0.12);
    --shadow-gold: 0 8px 25px rgba(197, 160, 89, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 9999px;
    
    --font-bangla: 'Ador Noirrit', 'AdorNoirrit', 'Hind Siliguri', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Ador Noirrit', 'AdorNoirrit', 'Hind Siliguri', sans-serif;
    --font-brand: 'Cinzel', serif;
    --font-number: 'Plus Jakarta Sans', 'Ador Noirrit', sans-serif;
}

/* Reset & Strict Box Model */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-bangla);
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.65;
    letter-spacing: 0.1px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Responsive Containers */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.container-sm {
    max-width: 900px;
}

/* Subtle Organic Animated Background */
.ambient-bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: floatAmbient 18s ease-in-out infinite alternate;
}

.ambient-orb-1 {
    top: -10%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #3d8b63 0%, rgba(61, 139, 99, 0) 70%);
}

.ambient-orb-2 {
    bottom: 5%;
    right: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #c5a059 0%, rgba(197, 160, 89, 0) 70%);
    animation-delay: -9s;
}

@keyframes floatAmbient {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 30px) scale(1.08); }
    100% { transform: translate(-30px, 50px) scale(0.95); }
}

/* ==========================================================================
   Page Transition Preloader
   ========================================================================== */
#page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #081d13;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

#page-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-brand-box {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-glow-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--gold);
    border-right-color: var(--herbal-leaf);
    animation: spinRing 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.preloader-logo {
    width: 72px;
    height: 72px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 0 24px rgba(197, 160, 89, 0.6);
    background: #ffffff;
    padding: 3px;
    animation: pulseLogo 2s ease-in-out infinite alternate;
}

.preloader-title {
    margin-top: 20px;
    font-family: var(--font-bangla);
    font-size: 1.1rem;
    font-weight: 600;
    color: #e5c378;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.preloader-dots {
    display: inline-flex;
    gap: 4px;
}

.preloader-dot {
    width: 4px;
    height: 4px;
    background-color: #e5c378;
    border-radius: 50%;
    animation: dotPulse 1.4s infinite both;
}
.preloader-dot:nth-child(2) { animation-delay: 0.2s; }
.preloader-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLogo {
    0% { transform: scale(0.92); opacity: 0.85; }
    100% { transform: scale(1.04); opacity: 1; filter: drop-shadow(0 0 24px rgba(197, 160, 89, 0.6)); }
}

@keyframes dotPulse {
    0%, 80%, 100% { opacity: 0.2; transform: scale(0.8); }
    40% { opacity: 1; transform: scale(1.2); }
}

/* ==========================================================================
   Header & Top Announcement Bar
   ========================================================================== */
.top-notice-bar {
    background: #081d13;
    color: #e5c378;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.22);
    line-height: 1.4;
    position: relative;
    z-index: 1001;
}

.top-notice-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.top-notice-message {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #eef7f2;
    font-weight: 500;
    min-width: 0;
}

.notice-leaf-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.notice-text-content {
    color: #e8f5ec;
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-notice-helpline {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.top-helpline-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 12px;
    background: rgba(197, 160, 89, 0.16);
    border: 1px solid rgba(229, 195, 120, 0.4);
    border-radius: var(--radius-pill);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.top-helpline-chip:hover {
    background: var(--gold-gradient);
    color: #081d13;
    border-color: var(--gold-light);
    box-shadow: 0 2px 10px rgba(197, 160, 89, 0.4);
    transform: translateY(-1px);
}

.helpline-svg {
    color: #e5c378;
    flex-shrink: 0;
    transition: color 0.25s ease;
}

.top-helpline-chip:hover .helpline-svg {
    color: #081d13;
}

.helpline-label {
    color: #d1e5db;
    font-size: 0.78rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

.top-helpline-chip:hover .helpline-label {
    color: #081d13;
}

.helpline-number-badge {
    font-family: var(--font-number);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    color: #fffae8;
    transition: color 0.25s ease;
}

.top-helpline-chip:hover .helpline-number-badge {
    color: #081d13;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.98);
}

/* Header Inner Layout */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    height: 76px;
    gap: 16px;
}

/* Logo */
.brand-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.brand-logo-link:hover {
    transform: translateY(-1px);
}

.brand-logo-img {
    width: 52px;
    height: 52px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--gold, #c5a059);
    box-shadow: 0 3px 12px rgba(197, 160, 89, 0.32), 0 1px 3px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    padding: 2px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-logo-link:hover .brand-logo-img {
    transform: scale(1.06) rotate(3deg);
    box-shadow: 0 5px 16px rgba(197, 160, 89, 0.45);
    border-color: var(--gold-light, #e5c378);
}

.brand-name-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name-title {
    font-family: var(--font-brand);
    font-size: 1.38rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: 1px;
}

.brand-name-sub {
    font-family: var(--font-bangla);
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--gold-dark);
}

/* Desktop Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    padding: 4px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.25s ease;
    border-radius: 2px;
}

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

/* Search Bar */
.header-search-wrap {
    flex: 1;
    max-width: 280px;
    position: relative;
}

.header-search-form {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.header-search-input {
    width: 100%;
    padding: 8px 36px 8px 14px;
    background-color: var(--herbal-tint);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    color: var(--text-main);
    transition: all 0.25s ease;
}

.header-search-input:focus {
    outline: none;
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(17, 56, 39, 0.08);
}

.header-search-btn {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.action-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background-color: var(--herbal-tint);
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.25s ease;
}

.action-pill-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.cart-icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f9f6 0%, #e6f0eb 100%);
    border: 1.5px solid rgba(17, 56, 39, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(17, 56, 39, 0.07), inset 0 1px 1px rgba(255, 255, 255, 0.9);
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    flex-shrink: 0;
}

.cart-icon-btn .cart-icon-svg {
    width: 21px;
    height: 21px;
    stroke-width: 2.2;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s ease;
}

.cart-icon-btn:hover {
    background: linear-gradient(135deg, #113827 0%, #081d13 100%);
    color: #e5c378;
    border-color: #113827;
    box-shadow: 0 4px 16px rgba(17, 56, 39, 0.25), 0 0 0 3px rgba(197, 160, 89, 0.25);
    transform: translateY(-2px);
}

.cart-icon-btn:hover .cart-icon-svg {
    transform: scale(1.1) rotate(-4deg);
}

.cart-icon-btn:active {
    transform: scale(0.94);
}

.cart-badge-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: linear-gradient(135deg, #f8df8c 0%, #c5a059 50%, #9a7432 100%);
    color: #081d13;
    font-family: var(--font-number);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(154, 116, 50, 0.45);
    animation: cartBadgePop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cartBadgePop {
    0% { transform: scale(0.4); opacity: 0; }
    70% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--primary);
    cursor: pointer;
    padding: 6px;
}

/* ==========================================================================
   Hero Showcase Section: Split Grid (Desktop: Left Slider + Right 4 Trust Badges)
   ========================================================================== */
.hero-showcase-section {
    position: relative;
    margin-top: 14px;
    margin-bottom: 34px;
    width: 100%;
}

.hero-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
}

@media (min-width: 992px) {
    .hero-showcase-grid {
        grid-template-columns: 66% calc(34% - 16px);
        gap: 16px;
        align-items: stretch;
        min-height: 360px;
    }
}

.hero-slider-wrap {
    min-width: 0;
    width: 100%;
    display: flex;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(8, 29, 19, 0.08);
    background-color: #081d13;
    display: flex;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    height: 100%;
}

.slider-slide {
    min-width: 100%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #081d13;
    height: 100%;
}

.slide-banner-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.slider-slide.is-graphic-slide {
    display: flex;
    padding: 0;
    height: 100%;
}

.slider-slide.is-graphic-slide .slide-banner-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-xl);
}

.full-slide-banner-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
}

.slide-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 32px 36px;
    color: #ffffff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(to right, rgba(8, 29, 19, 0.88) 0%, rgba(8, 29, 19, 0.6) 45%, rgba(8, 29, 19, 0.1) 100%);
}

.slide-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(197, 160, 89, 0.25);
    border: 1px solid rgba(229, 195, 120, 0.4);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.slide-title {
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    word-break: break-word;
    overflow-wrap: break-word;
}

.slide-subtitle {
    font-size: clamp(0.85rem, 2.5vw, 1.05rem);
    color: #d8e5de;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 520px;
}

.slide-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-track-hero {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.btn-track-hero:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Slider Controls */
.slider-prev-btn, .slider-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
}

.slider-prev-btn:hover, .slider-next-btn:hover {
    background: var(--gold-gradient);
    color: var(--primary-dark);
    border-color: var(--gold);
}

.slider-prev-btn { left: 16px; }
.slider-next-btn { right: 16px; }

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 24px;
    border-radius: 8px;
    background: var(--gold-gradient);
}

/* ==========================================================================
   Trust / Value Proposition Badges & Hero Sidebar
   ========================================================================== */
.hero-trust-sidebar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (min-width: 992px) {
    .hero-trust-sidebar {
        grid-template-columns: 1fr;
        gap: 10px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-trust-sidebar .trust-card {
        flex: 1;
        padding: 12px 16px;
        margin: 0;
        border: 1.5px solid #e1eee6;
        border-radius: var(--radius-lg);
        background: #ffffff;
        box-shadow: 0 3px 12px rgba(17, 56, 39, 0.04);
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-trust-sidebar .trust-card:hover {
        transform: translateY(-2px);
        border-color: #c5a059;
        box-shadow: 0 8px 20px rgba(197, 160, 89, 0.15);
    }
}

.trust-badges-strip {
    margin-bottom: 38px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid #e1eee6;
    box-shadow: 0 4px 16px rgba(17, 56, 39, 0.04);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.trust-card-organic::before { background: #3d8b63; }
.trust-card-delivery::before { background: #c5a059; }
.trust-card-guarantee::before,
.trust-card-certified::before { background: #0c6b7e; }
.trust-card-support::before { background: #7c3aed; }

.trust-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(17, 56, 39, 0.08);
    border-color: #c4ded0;
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.trust-card:hover .trust-icon-box {
    transform: scale(1.08);
}

.icon-box-organic {
    background: linear-gradient(135deg, #eef9f2 0%, #d8f3e3 100%);
    color: #17653c;
    border: 1px solid rgba(61, 139, 99, 0.2);
}

.icon-box-delivery {
    background: linear-gradient(135deg, #fff9ee 0%, #fdefd2 100%);
    color: #9a7432;
    border: 1px solid rgba(197, 160, 89, 0.25);
}

.icon-box-guarantee,
.icon-box-certified {
    background: linear-gradient(135deg, #eef8fb 0%, #daf0f6 100%);
    color: #0b6b7f;
    border: 1px solid rgba(11, 107, 127, 0.2);
}

.icon-box-support {
    background: linear-gradient(135deg, #f6f1fd 0%, #ede3fc 100%);
    color: #6b35a8;
    border: 1px solid rgba(107, 53, 168, 0.2);
}

.trust-card-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.trust-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f2b1d;
    margin-bottom: 2px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trust-card-desc {
    font-size: 0.78rem;
    color: #5d7568;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   Category Section
   ========================================================================== */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 12px;
}

.section-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.section-tagline {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-heading {
    font-size: clamp(1.3rem, 3.8vw, 1.85rem);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.25;
}

.section-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.section-link:hover {
    color: var(--gold-dark);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-bottom: 48px;
}

.category-pill-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 10px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.category-pill-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.cat-icon-bubble {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--herbal-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.category-pill-card:hover .cat-icon-bubble {
    background: var(--primary);
    color: var(--gold-light);
}

.cat-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

/* ==========================================================================
   Product Card System
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: var(--shadow-sm);
}

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

.product-card-top {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--bg-subtle);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.discount-badge-ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    background: var(--gold-gradient);
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: var(--radius-pill);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    z-index: 2;
}

.featured-star-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(17, 56, 39, 0.85);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    z-index: 2;
}

.product-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--herbal-leaf);
    margin-bottom: 3px;
}

.product-name-link {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
}

.product-name-link:hover {
    color: var(--primary);
}

.product-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.stars-list {
    color: #e5a93b;
    display: flex;
    gap: 2px;
}

/* Product Highlights Mini */
.product-highlights-mini {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
    background: var(--herbal-tint);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.highlight-check {
    color: var(--herbal-leaf);
    font-weight: 800;
}

.product-short-desc-preview {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 10px;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 14px;
}

.selling-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

.original-price {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: line-through;
}

/* Product Card Buttons */
.product-card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.btn-add-to-cart-direct {
    width: 100%;
    padding: 10px 14px;
    background: var(--gold-gradient);
    color: var(--primary-dark);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
    transition: all 0.25s ease;
}

.btn-add-to-cart-direct:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(197, 160, 89, 0.35);
    filter: brightness(1.04);
}

.btn-view-details-sub {
    width: 100%;
    padding: 7px 10px;
    background: var(--herbal-tint);
    color: var(--primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.25s ease;
}

.btn-view-details-sub:hover {
    background: #ffffff;
    border-color: var(--primary);
}

/* ==========================================================================
   Buttons & UI Elements
   ========================================================================== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    background: var(--gold-gradient);
    color: var(--primary-dark);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(197, 160, 89, 0.4);
    filter: brightness(1.05);
}

.btn-primary-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-primary-solid:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Single Product Details Page
   ========================================================================== */
.product-details-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 48px;
    background: #ffffff;
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    box-sizing: border-box;
}

.gallery-main-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    background: var(--bg-subtle);
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid var(--border-color);
}

.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.thumb-item {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border-color);
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.thumb-item.active, .thumb-item:hover {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.3);
}

.thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-content-column {
    display: flex;
    flex-direction: column;
}

.product-detail-title {
    font-size: clamp(1.4rem, 4vw, 1.95rem);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 10px;
}

.details-price-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.detail-selling-price {
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--primary);
}

.detail-original-price {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.save-pill-tag {
    background: var(--herbal-sage);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.herbal-benefits-box {
    background: var(--herbal-tint);
    border-radius: var(--radius-md);
    padding: 18px;
    margin-bottom: 20px;
    border-left: 4px solid var(--gold);
}

.benefits-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.benefits-list li {
    font-size: 0.88rem;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.benefits-list li svg {
    color: var(--herbal-leaf);
    flex-shrink: 0;
    margin-top: 3px;
}

.stock-status-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 18px;
}

.quantity-order-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    background: var(--bg-subtle);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.qty-btn:hover {
    background: var(--border-color);
}

.qty-input {
    width: 44px;
    text-align: center;
    border: none;
    background: none;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.btn-buy-now-large {
    flex: 1;
    padding: 13px 24px;
    background: var(--gold-gradient);
    color: var(--primary-dark);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(197, 160, 89, 0.35);
    transition: all 0.25s ease;
}

.btn-buy-now-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(197, 160, 89, 0.45);
    filter: brightness(1.05);
}

/* ==========================================================================
   Frictionless 1-Page Checkout Page
   ========================================================================== */
.checkout-page-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 28px;
    margin-top: 20px;
    margin-bottom: 48px;
}

.checkout-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    box-sizing: border-box;
}

.checkout-header-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.step-num-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.form-label .required {
    color: #e53935;
    margin-left: 4px;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    background: var(--bg-subtle);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 16px; /* Prevents auto-zoom on iOS / Android */
    color: var(--text-main);
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(17, 56, 39, 0.08);
}

.form-control.is-invalid {
    border-color: #e53935;
    background-color: #fff8f8;
}

.invalid-feedback {
    color: #e53935;
    font-size: 0.8rem;
    margin-top: 4px;
    font-weight: 500;
}

.radio-cards-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.delivery-radio-card {
    position: relative;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: var(--bg-subtle);
}

.delivery-radio-card:hover {
    border-color: var(--border-hover);
}

.delivery-radio-card.active {
    border-color: var(--primary);
    background: var(--herbal-tint);
    box-shadow: 0 0 0 1px var(--primary);
}

.delivery-radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.delivery-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.delivery-card-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--gold-dark);
}

/* Order Summary Card */
.order-summary-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 88px;
    box-sizing: border-box;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
}

.order-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
}

.order-item-thumb {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    object-fit: cover;
    flex-shrink: 0;
}

.order-item-details {
    flex: 1;
    min-width: 0;
}

.order-item-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Remove Cross Button */
.btn-remove-item-cross {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 3px 6px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
    flex-shrink: 0;
}

.btn-remove-item-cross:hover {
    color: #ef4444;
    background: #fee2e2;
}

/* Checkout Quantity Stepper */
.checkout-qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-pill);
    background: #f8fafc;
    overflow: hidden;
    height: 28px;
}

.checkout-qty-btn {
    width: 26px;
    height: 100%;
    border: none;
    background: none;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    padding: 0;
    user-select: none;
}

.checkout-qty-btn:hover {
    background: var(--herbal-tint);
    color: var(--primary);
}

.checkout-qty-btn:active {
    background: var(--primary);
    color: #ffffff;
}

.checkout-qty-display {
    min-width: 24px;
    text-align: center;
    font-family: var(--font-number);
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--text-main);
    padding: 0 4px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.calc-row.grand-total {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 2px solid var(--border-color);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary-dark);
}

.btn-confirm-order {
    width: 100%;
    padding: 15px;
    background: var(--gold-gradient);
    color: var(--primary-dark);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    box-shadow: 0 6px 18px rgba(197, 160, 89, 0.35);
    transition: all 0.25s ease;
}

.btn-confirm-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(197, 160, 89, 0.45);
    filter: brightness(1.05);
}

/* ==========================================================================
   Order Tracking & Timeline (Glitter & Luxury Nodes)
   ========================================================================== */
@keyframes glitterGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7), 0 0 16px rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 0), 0 0 24px rgba(245, 158, 11, 0.7);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0), 0 0 16px rgba(245, 158, 11, 0.4);
    }
}

@keyframes sparkleSpin {
    0% { transform: scale(1) rotate(0deg); opacity: 0.85; }
    50% { transform: scale(1.15) rotate(180deg); opacity: 1; }
    100% { transform: scale(1) rotate(360deg); opacity: 0.85; }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.tracking-search-box {
    max-width: 600px;
    margin: 24px auto 40px;
    background: #ffffff;
    padding: 28px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
    box-sizing: border-box;
}

.tracking-timeline-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 48px;
    box-sizing: border-box;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 36px 0;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 45px;
    right: 45px;
    height: 4px;
    background: #e2e8f0;
    z-index: 1;
    border-radius: 4px;
}

.timeline-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.timeline-icon-node {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #e2e8f0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.timeline-step.completed .timeline-icon-node {
    background: linear-gradient(135deg, #071e13 0%, #0f3825 50%, #155737 100%);
    border-color: var(--gold, #c5a059);
    color: #fef08a;
    box-shadow: 0 4px 18px rgba(15, 56, 37, 0.35), 0 0 12px rgba(197, 160, 89, 0.4);
}

.timeline-step.current .timeline-icon-node {
    background: linear-gradient(135deg, #fef08a 0%, #fbbf24 35%, #f59e0b 70%, #d97706 100%);
    border-color: #ffffff;
    color: #071e13;
    animation: glitterGlow 2s infinite, floatIcon 3s ease-in-out infinite;
}

.timeline-step.current .timeline-glitter-svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.timeline-sparkle-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.95rem;
    line-height: 1;
    animation: sparkleSpin 3s linear infinite;
}

.timeline-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.timeline-step.completed .timeline-label,
.timeline-step.current .timeline-label {
    color: var(--primary-dark);
    font-weight: 800;
}

@keyframes pulseNode {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--primary-dark);
    color: #e3ede7;
    padding-top: 48px;
    padding-bottom: 24px;
    margin-top: auto;
    border-top: 3px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 32px;
    margin-bottom: 36px;
}

.footer-brand-title {
    font-family: var(--font-brand);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 1.5px;
}

.footer-brand-logo {
    width: 58px;
    height: 58px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2.5px solid var(--gold-light, #e5c378);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 14px rgba(229, 195, 120, 0.35);
    background: #ffffff;
    padding: 2px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-brand-logo:hover {
    transform: scale(1.08) rotate(-3deg);
    border-color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 18px rgba(229, 195, 120, 0.5);
}

.footer-about-text {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #b8ccbf;
    margin-top: 12px;
    max-width: 320px;
}

.footer-col-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 6px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    display: flex;
    align-items: center;
}

.footer-links-list a {
    font-size: 0.88rem;
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.footer-arrow-bullet {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.14);
    border: 1px solid rgba(197, 160, 89, 0.35);
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.footer-links-list a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-links-list a:hover .footer-arrow-bullet {
    background: var(--gold);
    color: #071e13;
    border-color: var(--gold-light);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

.footer-promise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.4;
}

.footer-promise-badge {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.88rem;
    color: #cbd5e1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.4;
    margin: 0;
}

.footer-contact-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-bottom-strip {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #8fa899;
    flex-wrap: wrap;
    gap: 8px;
}

/* ==========================================================================
   Mobile Navigation Drawer & Bottom Bar
   ========================================================================== */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -340px;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    height: 100dvh;
    background: #ffffff;
    z-index: 10000;
    box-shadow: 6px 0 30px rgba(0, 0, 0, 0.22);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 20px 18px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer.open {
    left: 0;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* Drawer Header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.drawer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.drawer-logo-img {
    width: 46px;
    height: 46px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--gold, #c5a059);
    box-shadow: 0 2px 10px rgba(197, 160, 89, 0.28);
    background: #ffffff;
    padding: 2px;
    flex-shrink: 0;
}

.drawer-brand-text {
    display: flex;
    flex-direction: column;
}

.drawer-brand-title {
    font-family: var(--font-brand);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.drawer-brand-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold-dark);
}

.drawer-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.drawer-close-btn:hover {
    background: #e53935;
    color: #ffffff;
    border-color: #e53935;
}

/* Drawer Search */
.drawer-search-wrap {
    margin-bottom: 16px;
}

.drawer-search-form {
    position: relative;
    width: 100%;
}

.drawer-search-input {
    width: 100%;
    padding: 9px 38px 9px 14px;
    background-color: var(--herbal-tint);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-pill);
    font-size: 0.86rem;
    color: var(--text-main);
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.drawer-search-input:focus {
    outline: none;
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(17, 56, 39, 0.08);
}

.drawer-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

/* Drawer Navigation Links */
.drawer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.drawer-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 12px;
    background: #ffffff;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.22s ease;
    border: 1px solid var(--border-color);
}

.drawer-nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.drawer-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0f7f3 0%, #e6f0eb 100%);
    border: 1px solid rgba(17, 56, 39, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.22s ease;
}

.drawer-icon-box svg {
    width: 18px;
    height: 18px;
}

.drawer-nav-title {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--text-main);
    transition: color 0.2s ease;
}

.drawer-chevron {
    color: var(--text-light);
    transition: transform 0.2s ease, color 0.2s ease;
}

.drawer-nav-item:hover, .drawer-nav-item.active {
    background: linear-gradient(135deg, rgba(232, 242, 236, 0.65) 0%, rgba(242, 248, 244, 0.9) 100%);
    border-color: rgba(17, 56, 39, 0.2);
}

.drawer-nav-item:hover .drawer-icon-box,
.drawer-nav-item.active .drawer-icon-box {
    background: var(--primary);
    color: #e5c378;
    border-color: var(--primary);
    box-shadow: 0 3px 8px rgba(17, 56, 39, 0.25);
}

.drawer-nav-item:hover .drawer-nav-title,
.drawer-nav-item.active .drawer-nav-title {
    color: var(--primary);
}

.drawer-nav-item:hover .drawer-chevron,
.drawer-nav-item.active .drawer-chevron {
    color: var(--primary);
    transform: translateX(3px);
}

/* Drawer Footer Helpline */
.drawer-footer-box {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.drawer-helpline-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #f7faf8 0%, #edf5f0 100%);
    border: 1px dashed rgba(17, 56, 39, 0.18);
    border-radius: 12px;
}

.drawer-helpline-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #e5c378;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.drawer-helpline-content {
    display: flex;
    flex-direction: column;
}

.drawer-helpline-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

.drawer-helpline-phone {
    font-family: var(--font-number);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.5px;
    margin: 1px 0;
}

.drawer-helpline-timing {
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* Mobile Bottom Bar (Completely Flush & Seamless to Screen Bottom) */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-radius: 0;
    margin: 0;
    padding: 6px 0;
    padding-bottom: max(6px, env(safe-area-inset-bottom, 0px));
    z-index: 950;
    box-shadow: 0 -2px 12px rgba(17, 56, 39, 0.08);
    box-sizing: border-box;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.mobile-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4px;
}

.mobile-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #637b6e;
    text-decoration: none;
    padding: 4px 6px;
    border-radius: 8px;
    position: relative;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 0;
}

.bar-icon-wrap {
    position: relative;
    width: 32px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bar-icon-wrap svg {
    width: 21px;
    height: 21px;
    transition: all 0.25s ease;
    color: #5d7568;
}

.bar-item-label {
    font-family: var(--font-bangla);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1px;
    line-height: 1.2;
    color: #637b6e;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.active-dot {
    position: absolute;
    bottom: -2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-gradient);
    opacity: 0;
    transform: scale(0);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Active State */
.mobile-bar-item.active {
    color: var(--primary);
}

.mobile-bar-item.active .bar-icon-wrap {
    transform: translateY(-2px);
}

.mobile-bar-item.active .bar-icon-wrap svg {
    color: var(--primary);
    stroke-width: 2.3;
}

.mobile-bar-item.active .bar-item-label {
    color: var(--primary);
    font-weight: 800;
}

.mobile-bar-item.active .active-dot {
    opacity: 1;
    transform: scale(1);
}

/* Hover / Tap State */
.mobile-bar-item:active {
    transform: scale(0.94);
}

/* Cart Badge in Bottom Bar */
.bar-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    background: var(--gold-gradient);
    color: #081d13;
    font-family: var(--font-number);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
    animation: barBadgePulse 2.4s infinite ease-in-out;
}

@keyframes barBadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

/* Floating WhatsApp Order Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5), 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 850;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.floating-whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.45);
    z-index: -1;
    animation: waPulse 2.4s infinite ease-out;
}

@keyframes waPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.9;
    }
    70% {
        transform: scale(1.35);
        opacity: 0;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.floating-whatsapp-btn svg {
    width: 30px;
    height: 30px;
    display: block;
    fill: #ffffff;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.floating-whatsapp-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.65), 0 3px 10px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Responsive Utility Component Grids */
.brand-story-box {
    background: linear-gradient(135deg, #113827 0%, #081d13 100%);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    color: #ffffff;
    margin-bottom: 56px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.brand-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card-luxury {
    background: #ffffff;
    border-radius: var(--radius-lg, 16px);
    padding: 22px 20px;
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-top: 3.5px solid var(--gold, #c5a059);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.review-card-luxury:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 56, 37, 0.09);
    border-color: var(--gold, #c5a059);
}

.review-watermark {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 3.6rem;
    font-family: Georgia, serif;
    line-height: 1;
    color: rgba(197, 160, 89, 0.12);
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    gap: 6px;
}

.review-stars-pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-pill, 20px);
}

.review-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    letter-spacing: 2px;
    line-height: 1;
}

.review-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #059669;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 2px 8px;
    border-radius: var(--radius-pill, 20px);
    white-space: nowrap;
}

.review-comment-text {
    font-size: 0.92rem;
    color: var(--text-main, #1e293b);
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex: 1;
    position: relative;
    z-index: 2;
}

.review-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px dashed rgba(226, 232, 240, 0.9);
    position: relative;
    z-index: 2;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f3825 0%, #1c5e3d 100%);
    border: 2px solid var(--gold, #c5a059);
    color: #fef08a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.92rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(15, 56, 37, 0.2);
}

.review-author-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.review-author-name {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--primary-dark, #071910);
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-product-tag {
    font-size: 0.74rem;
    color: var(--primary, #0f3825);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin-top: 2px;
}

.review-time-ago {
    font-size: 0.72rem;
    color: var(--text-light, #94a3b8);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

.voucher-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.92rem;
}

.tracking-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.92rem;
}

/* Tablet Breakpoint (max-width: 1024px) */
@media (max-width: 1024px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .product-details-wrap { grid-template-columns: 1fr; gap: 28px; }
    .checkout-page-grid { grid-template-columns: 1fr; }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    body {
        padding-bottom: 0 !important;
    }

    .site-footer {
        padding-bottom: calc(24px + 64px + env(safe-area-inset-bottom, 0px));
    }

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    /* Brand Story & Reviews on Mobile */
    .brand-story-box {
        padding: 24px 16px;
        border-radius: 16px;
        margin-bottom: 36px;
    }
    .brand-story-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .review-card-luxury {
        padding: 14px 11px;
        border-radius: 12px;
        border-top-width: 3px;
    }
    .review-watermark {
        font-size: 2.4rem;
        right: 6px;
        top: 4px;
    }
    .review-stars {
        font-size: 0.78rem;
        letter-spacing: 1px;
    }
    .review-stars-pill {
        padding: 1px 5px;
    }
    .review-verified-badge {
        font-size: 0.62rem;
        padding: 1px 5px;
    }
    .review-comment-text {
        font-size: 0.8rem;
        line-height: 1.45;
        margin-bottom: 10px;
    }
    .review-card-footer {
        gap: 7px;
        padding-top: 8px;
    }
    .review-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.76rem;
        border-width: 1.5px;
    }
    .review-author-name {
        font-size: 0.76rem;
    }
    .review-product-tag {
        font-size: 0.65rem;
    }
    .form-grid-2, .voucher-grid-2, .tracking-detail-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Top Announcement Notice Bar on Mobile */
    .top-notice-bar {
        padding: 5px 0;
        font-size: 0.75rem;
    }
    .top-notice-container {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    .top-notice-message {
        justify-content: center;
        font-size: 0.76rem;
    }
    .notice-badge {
        font-size: 0.68rem;
        padding: 1px 6px;
    }
    .top-helpline-chip {
        padding: 2px 10px;
        font-size: 0.75rem;
    }
    .helpline-number-badge {
        font-size: 0.82rem;
    }

    /* Header */
    .header-inner {
        height: 58px;
    }
    .header-nav, .header-search-wrap, .action-pill-btn {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: linear-gradient(135deg, #f5f9f6 0%, #e6f0eb 100%);
        border: 1.5px solid rgba(17, 56, 39, 0.14);
        color: var(--primary);
        box-shadow: 0 2px 6px rgba(17, 56, 39, 0.05);
        padding: 0;
    }
    .mobile-menu-toggle svg {
        width: 20px;
        height: 20px;
    }
    .cart-icon-btn {
        width: 38px;
        height: 38px;
    }
    .cart-icon-btn .cart-icon-svg {
        width: 19px;
        height: 19px;
    }
    .mobile-bottom-bar {
        display: block;
    }
    .brand-name-title {
        font-size: 1.18rem;
    }
    .brand-name-sub {
        font-size: 0.65rem;
    }
    .brand-logo-img {
        width: 44px;
        height: 44px;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--gold, #c5a059);
        box-shadow: 0 2px 8px rgba(197, 160, 89, 0.28);
        padding: 2px;
        background: #ffffff;
    }

    /* Hero Banner Slider: Responsive Mobile Proportion */
    .hero-showcase-section {
        margin-top: 8px;
        margin-bottom: 20px;
    }
    .hero-showcase-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .hero-slider-wrap {
        width: 100%;
    }
    .slider-container {
        border-radius: 16px;
        width: 100%;
        min-height: 180px;
        height: 185px;
        box-shadow: 0 4px 16px rgba(8, 29, 19, 0.1);
    }
    .slider-slide {
        min-width: 100%;
        width: 100%;
        height: 100%;
    }
    .slide-banner-img,
    .slider-slide.is-graphic-slide .slide-banner-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 16px;
    }
    .slide-content-overlay {
        padding: 14px 12px;
        max-width: 100%;
    }
    .slide-badge-pill {
        font-size: 0.7rem;
        padding: 2px 7px;
        margin-bottom: 5px;
    }
    .slide-title {
        font-size: 1.1rem;
        margin-bottom: 3px;
        line-height: 1.2;
    }
    .slide-subtitle {
        font-size: 0.74rem;
        margin-bottom: 8px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .slide-actions {
        gap: 6px;
    }
    .slide-actions .btn-gold {
        padding: 6px 12px;
        font-size: 0.75rem;
        gap: 4px;
    }
    .slide-actions .btn-track-hero {
        display: none; /* Keep mobile slide clean and compact */
    }
    .slider-prev-btn, .slider-next-btn {
        display: none; /* Touch swipe handles mobile slider */
    }
    .slider-dots {
        bottom: 8px;
        gap: 4px;
    }
    .slider-dot {
        width: 6px;
        height: 6px;
    }
    .slider-dot.active {
        width: 16px;
    }

    /* Trust Grid on Mobile: 2x2 Sleek Aesthetic Cards */
    .hero-trust-sidebar,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .hero-trust-sidebar .trust-card,
    .trust-card {
        padding: 10px 8px;
        gap: 8px;
        border-radius: 12px;
        align-items: center;
    }
    .trust-icon-box {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }
    .trust-icon-box svg {
        width: 17px;
        height: 17px;
    }
    .trust-card-title {
        font-size: 0.78rem;
        font-weight: 700;
        line-height: 1.25;
    }
    .trust-card-desc {
        font-size: 0.65rem;
        color: var(--text-muted);
        line-height: 1.2;
    }

    /* Category Grid */
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 32px;
    }
    .category-pill-card {
        padding: 12px 6px;
        border-radius: 12px;
    }
    .cat-icon-bubble {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    .cat-title {
        font-size: 0.75rem;
    }

    /* Product Grid: 1 Big Luxurious Product Per Row on Phones */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
    .product-card {
        border-radius: 20px;
        box-shadow: var(--shadow-md);
        border: 1.5px solid var(--border-color);
    }
    .product-card-top {
        aspect-ratio: 16 / 11;
        max-height: 320px;
        background: var(--bg-subtle);
        overflow: hidden;
        padding: 0;
    }
    .product-card-img {
        padding: 0;
        margin: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .product-card-body {
        padding: 20px 18px;
    }
    .product-name-link {
        font-size: 1.25rem;
        font-weight: 800;
        min-height: auto;
        line-height: 1.35;
        margin-bottom: 8px;
    }
    .product-rating-row {
        font-size: 0.88rem;
        margin-bottom: 12px;
    }
    .product-highlights-mini {
        padding: 10px 14px;
        margin-bottom: 14px;
        border-radius: 10px;
    }
    .highlight-item {
        font-size: 0.88rem;
    }
    .selling-price {
        font-size: 1.55rem;
        font-weight: 900;
    }
    .original-price {
        font-size: 0.95rem;
    }
    .btn-add-to-cart-direct {
        padding: 14px 20px;
        font-size: 1.05rem;
        font-weight: 800;
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(197, 160, 89, 0.35);
    }
    .btn-view-details-sub {
        padding: 9px 12px;
        font-size: 0.88rem;
        font-weight: 600;
        border-radius: 10px;
    }

    /* Product Details */
    .product-details-wrap {
        padding: 18px 14px;
        border-radius: 16px;
        margin-top: 12px;
        margin-bottom: 32px;
    }
    .quantity-order-wrap {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .qty-control {
        width: 100%;
        justify-content: space-between;
        height: 44px;
    }
    .btn-buy-now-large {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }

    /* Checkout Page */
    .checkout-card, .order-summary-card {
        padding: 20px 14px;
        border-radius: 16px;
    }
    .radio-cards-group {
        grid-template-columns: 1fr;
    }

    /* Tracking Page */
    .tracking-search-box {
        padding: 20px 14px;
        border-radius: 16px;
        margin-top: 14px;
    }
    .tracking-timeline-card {
        padding: 20px 14px;
        border-radius: 16px;
    }
    .timeline-steps {
        flex-direction: column;
        gap: 18px;
        margin: 24px 0;
        padding-left: 8px;
    }
    .timeline-steps::before {
        top: 20px;
        left: 28px;
        bottom: 20px;
        width: 3px;
        height: auto;
        right: auto;
    }
    .timeline-step {
        flex-direction: row;
        text-align: left;
        gap: 14px;
    }
    .timeline-icon-node {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .floating-whatsapp-btn {
        bottom: 74px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
    .floating-whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }
}

/* Small Mobile (max-width: 380px) */
@media (max-width: 380px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .slider-slide {
        min-height: 165px;
        max-height: 200px;
    }
    .slide-title {
        font-size: 1rem;
    }
    .slide-subtitle {
        font-size: 0.7rem;
    }
    .slide-actions .btn-gold {
        padding: 5px 10px;
        font-size: 0.72rem;
    }
    .trust-card {
        padding: 8px 6px;
        gap: 6px;
    }
    .trust-icon-box {
        width: 30px;
        height: 30px;
    }
    .trust-icon-box svg {
        width: 15px;
        height: 15px;
    }
    .trust-card-title {
        font-size: 0.74rem;
    }
    .trust-card-desc {
        font-size: 0.62rem;
    }
}

/* ==========================================================================
   Storefront Pagination
   ========================================================================== */
nav[role="navigation"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 0;
}

nav[role="navigation"] > div:first-child {
    display: none !important;
}

nav[role="navigation"] > div:last-child {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

nav[role="navigation"] p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
}

nav[role="navigation"] p .font-medium,
nav[role="navigation"] p strong {
    color: var(--primary-dark);
    font-weight: 800;
}

nav[role="navigation"] svg,
nav[role="navigation"] svg.w-5,
nav[role="navigation"] svg.h-5,
nav[role="navigation"] .w-5,
nav[role="navigation"] .h-5 {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
}

nav[role="navigation"] span.relative.z-0,
nav[role="navigation"] .shadow-sm {
    display: inline-flex !important;
    align-items: stretch !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    border: 1.5px solid var(--border-color) !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-sm) !important;
}

nav[role="navigation"] a,
nav[role="navigation"] span[aria-current="page"] > span,
nav[role="navigation"] span[aria-disabled="true"] > span,
nav[role="navigation"] span.relative.z-0 > a,
nav[role="navigation"] span.relative.z-0 > span > span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 14px !important;
    font-family: var(--font-number);
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: var(--text-main) !important;
    border: none !important;
    border-right: 1px solid var(--border-color) !important;
    background: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
    line-height: 1 !important;
    margin: 0 !important;
}

nav[role="navigation"] a:hover {
    background: var(--herbal-sage) !important;
    color: var(--primary) !important;
}

nav[role="navigation"] span[aria-current="page"] > span {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-right: 1px solid var(--primary) !important;
}

nav[role="navigation"] span[aria-disabled="true"] {
    display: inline-flex !important;
    align-items: stretch !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

nav[role="navigation"] span[aria-disabled="true"] > span {
    color: #cbd5e1 !important;
    background: #f8fafc !important;
    cursor: not-allowed !important;
    border-right: 1px solid var(--border-color) !important;
}

nav[role="navigation"] span.relative.z-0 > :last-child,
nav[role="navigation"] span.relative.z-0 > :last-child > span,
nav[role="navigation"] span.relative.z-0 > :last-child a,
nav[role="navigation"] .shadow-sm > :last-child,
nav[role="navigation"] .shadow-sm > :last-child > span,
nav[role="navigation"] .shadow-sm > :last-child a {
    border-right: none !important;
}

/* ==========================================================================
   OFFICIAL VOUCHER PRINT ISOLATION
   ========================================================================== */
@media print {
    html, body {
        background: #ffffff !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    body * {
        visibility: hidden !important;
    }
    #page-preloader, header, footer, .top-announcement-bar, .announcement-bar,
    .mobile-bottom-bar, .whatsapp-float, .btn-action-group, .flash-message,
    .ambient-orb, #voucher-action-buttons, .site-header, .site-footer {
        display: none !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    #printable-voucher-card, #printable-voucher-card * {
        visibility: visible !important;
    }
    #printable-voucher-card {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        max-width: 650px !important;
        margin: 0 auto !important;
        padding: 24px !important;
        border: 2px solid #c5a059 !important;
        border-radius: 12px !important;
        box-shadow: none !important;
        background: #ffffff !important;
        page-break-inside: avoid !important;
    }
}
