/* ============================================
   الركن اليماني - Le Coin Yéménite
   LUXURY DESIGN SYSTEM v3
   Aesthetic: Warm Arabian Luxury
   ============================================ */

:root {
    /* ── Color Palette ── */
    --amber-50: #FBF6ED;
    --amber-100: #F4EBDA;
    --amber-200: #E8D4B8;
    --amber-300: #D9BC93;
    --amber-400: #C59C6D;
    --amber-500: #B0824F;
    --amber-600: #95683B;
    --amber-700: #7A5029;
    --amber-800: #62391C;
    --amber-900: #4A2A14;

    --honey-50: #FBF6ED;
    --honey-100: #F4EBDA;
    --honey-200: #E8D4B8;
    --honey-300: #D9BC93;
    --honey-400: #C59C6D;
    --honey-500: #B0824F;
    --honey-600: #95683B;
    --honey-700: #7A5029;
    --honey-800: #62391C;
    --honey-900: #4A2A14;

    --gold: #C59C6D;
    --gold-light: #D9BC93;
    --gold-dark: #95683B;

    --ivory: #FBF6ED;
    --cream: #FBF6ED;
    --cream-dark: #F4EBDA;
    --parchment: #F7F0E3;
    --sand: #E8DCC8;

    --walnut: #62391C;
    --bark: #784625;
    --earth: #6B5D52;
    --stone: #A09487;
    --dust: #C4B8AB;

    --dark: #62391C;
    --dark-brown: #784625;
    --dark-card: #4F2D15;
    --brown: #6B5D52;

    --terracotta: #A56A3B;
    --sage: #5B8C5A;
    --success: #5B8C5A;
    --danger: #C25450;
    --info: #5B8FAD;

    --glass-white: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(197, 156, 109, 0.12);

    /* ── Typography ── */
    --font-display: 'El Messiri', serif;
    --font-body: 'Readex Pro', sans-serif;
    --font-primary: 'Readex Pro', sans-serif;
    --font-secondary: 'El Messiri', serif;

    /* ── Shadows ── */
    --shadow-xs: 0 1px 2px rgba(28, 20, 16, 0.04);
    --shadow-sm: 0 2px 8px rgba(28, 20, 16, 0.06);
    --shadow-md: 0 4px 16px rgba(28, 20, 16, 0.08);
    --shadow-lg: 0 8px 32px rgba(28, 20, 16, 0.10);
    --shadow-xl: 0 16px 48px rgba(28, 20, 16, 0.12);
    --shadow-glow: 0 0 40px rgba(197, 156, 109, 0.12);
    --shadow-card: 0 2px 12px rgba(28, 20, 16, 0.05);
    --shadow-card-hover: 0 12px 40px rgba(28, 20, 16, 0.10);
    --shadow-gold: 0 4px 20px rgba(149, 104, 59, 0.20);

    /* ── Spacing ── */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* ── Motion ── */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   BASE & RESET
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--walnut);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle warm grain texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.018;
    pointer-events: none;
    z-index: 9998;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

/* Faint watermark */
body::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    max-width: 700px;
    max-height: 700px;
    background: url('../Images/Logo.png') center/contain no-repeat;
    opacity: 0.015;
    pointer-events: none;
    z-index: 0;
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; }
::selection { background: var(--amber-200); color: var(--walnut); }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--amber-400), var(--amber-500));
    border-radius: 10px;
    border: 2px solid var(--parchment);
}
::-webkit-scrollbar-thumb:hover { background: var(--amber-600); }

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--amber-300), #C59C6D, var(--amber-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.min-vh-65 { min-height: 65vh; }
.logo-watermark {
    position: absolute;
    pointer-events: none;
    opacity: 0.02;
    z-index: 0;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber-400), var(--amber-300), var(--amber-400));
    z-index: 10000;
    transition: width 0.15s linear;
    box-shadow: 0 0 8px rgba(149, 104, 59, 0.3);
}

/* ============================================
   PRELOADER - Cinematic
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: radial-gradient(ellipse at 50% 40%, #4F2D15 0%, #2E1A0B 60%, #1A0F05 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s var(--ease-out), visibility 1s var(--ease-out);
    overflow: hidden;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }

#preloader::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: url('../Images/Logo.png') center/contain no-repeat;
    opacity: 0.025;
    animation: preloaderBgRotate 30s linear infinite;
}
@keyframes preloaderBgRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.08); }
    100% { transform: rotate(360deg) scale(1); }
}

#preloader::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 15% 25%, rgba(197, 156, 109, 0.3), transparent),
        radial-gradient(1.5px 1.5px at 45% 75%, rgba(197, 156, 109, 0.2), transparent),
        radial-gradient(2px 2px at 75% 35%, rgba(197, 156, 109, 0.25), transparent),
        radial-gradient(1.5px 1.5px at 85% 65%, rgba(197, 156, 109, 0.15), transparent),
        radial-gradient(1.5px 1.5px at 25% 85%, rgba(197, 156, 109, 0.2), transparent),
        radial-gradient(2px 2px at 55% 15%, rgba(197, 156, 109, 0.3), transparent);
    background-size: 400px 400px;
    animation: floatParticles 8s ease-in-out infinite alternate;
}
@keyframes floatParticles {
    0% { transform: translateY(0) translateX(0); opacity: 0.6; }
    100% { transform: translateY(-20px) translateX(8px); opacity: 1; }
}

.loader-content { text-align: center; position: relative; z-index: 2; }

.loader-logo-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}
.loader-logo-wrap::before {
    content: '';
    position: absolute;
    inset: -35px;
    border: 1.5px solid transparent;
    border-top: 1.5px solid var(--amber-400);
    border-right: 1.5px solid rgba(197, 156, 109, 0.3);
    border-radius: 50%;
    animation: orbitRing 2.5s linear infinite;
    filter: drop-shadow(0 0 8px rgba(197, 156, 109, 0.3));
}
.loader-logo-wrap::after {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--amber-300);
    border-left: 1px solid rgba(197, 156, 109, 0.25);
    border-radius: 50%;
    animation: orbitRing 1.8s linear infinite reverse;
    filter: drop-shadow(0 0 4px rgba(197, 156, 109, 0.2));
}
@keyframes orbitRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-logo {
    width: 120px;
    height: auto;
    animation: logoBreath 3.5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(197, 156, 109, 0.3)) drop-shadow(0 0 60px rgba(197, 156, 109, 0.1));
    position: relative;
    z-index: 2;
}
@keyframes logoBreath {
    0%, 100% { transform: scale(1) translateY(0); filter: drop-shadow(0 0 30px rgba(197, 156, 109, 0.3)); }
    50% { transform: scale(1.06) translateY(-8px); filter: drop-shadow(0 0 50px rgba(197, 156, 109, 0.5)); }
}

.loader-bar {
    width: 180px;
    height: 2px;
    background: rgba(197, 156, 109, 0.08);
    border-radius: 10px;
    margin: 0 auto 24px;
    overflow: hidden;
}
.loader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--amber-400), var(--amber-300), var(--amber-400), transparent);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: loadProgress 2.5s ease forwards, shimmer 1.5s ease-in-out infinite;
}
@keyframes loadProgress { 0% { width: 0; } 100% { width: 100%; } }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.loader-text {
    color: var(--amber-300);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-family: var(--font-display);
    animation: textGlow 2.5s ease-in-out infinite alternate;
}
@keyframes textGlow {
    0% { opacity: 0.3; text-shadow: none; }
    100% { opacity: 1; text-shadow: 0 0 30px rgba(197, 156, 109, 0.2); }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--walnut);
    color: var(--dust);
    font-size: 12px;
    padding: 9px 0;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 156, 109, 0.06);
    font-weight: 300;
    letter-spacing: 0.3px;
}
.top-bar-content { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
/* Marquee viewport: clips the scrolling track. The track holds two identical
   passes of the items so the -50% loop is seamless. */
.top-bar-marquee { flex: 1; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.top-bar-track {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 34s linear infinite;
}
.top-bar-marquee:hover .top-bar-track { animation-play-state: paused; }
.top-bar-item { display: inline-flex; align-items: center; gap: 7px; }
.top-bar-item i { color: var(--amber-400); font-size: 11px; }
.top-bar-content .separator { color: rgba(197, 156, 109, 0.3); font-weight: 100; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.top-bar-close {
    background: none;
    border: none;
    color: var(--stone);
    cursor: pointer;
    padding: 4px 10px;
    font-size: 13px;
    opacity: 0.4;
    transition: var(--transition-fast);
    border-radius: 6px;
}
.top-bar-close:hover { opacity: 1; background: rgba(255,255,255,0.04); }

/* ============================================
   HEADER - Refined & Clean
   ============================================ */
.main-header {
    background: rgba(255, 251, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
    border-bottom: 1px solid rgba(28, 20, 16, 0.04);
}
.main-header .container {
    padding-top: 14px;
    padding-bottom: 14px;
    transition: var(--transition);
}
.main-header.scrolled {
    box-shadow: 0 1px 30px rgba(28, 20, 16, 0.06);
    background: rgba(255, 251, 245, 0.96);
}
.main-header.scrolled .container {
    padding-top: 10px;
    padding-bottom: 10px;
}
/* Logo on one edge, everything else grouped on the other edge with the gap
   between them (space-between). */
.header-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.header-end { display: flex; align-items: center; gap: 18px; flex: 1; justify-content: flex-end; min-width: 0; }

.header-logo img {
    height: 54px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.04));
}
.main-header.scrolled .header-logo img { height: 44px; }

/* ===== Search — prominent ("strong") with live suggestions ===== */
.header-search { position: relative; flex: 1; width: 100%; max-width: 560px; min-width: 0; }
/* The pill border + focus ring live on the FORM so they always wrap the whole
   control (input + button) as one unit, full-width. */
.search-form {
    position: relative; display: flex; align-items: center; width: 100%;
    border: 2px solid var(--sand);
    border-radius: 999px;
    background: var(--parchment);
    box-shadow: 0 6px 18px -14px rgba(28,20,16,.4);
    transition: var(--transition);
}
.search-form:focus-within {
    border-color: var(--amber-400);
    background: #fff;
    box-shadow: 0 0 0 5px rgba(197, 156, 109, .14), 0 12px 28px -16px rgba(160,116,50,.5);
}

/* leading magnifier inside the field */
.search-lead-icon {
    position: absolute;
    inset-inline-start: 18px;
    top: 50%; transform: translateY(-50%);
    color: var(--amber-500);
    font-size: 15px;
    pointer-events: none;
    opacity: .8;
    transition: var(--transition);
}
.search-input {
    width: 100%;
    /* room for the leading icon (start) and the submit button (end) */
    padding: 14px 20px;
    padding-inline-start: 46px;
    padding-inline-end: 120px;
    border: none;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 400;
    background: transparent;
    transition: var(--transition);
    outline: none;
    color: var(--walnut);
    letter-spacing: 0.2px;
}
.search-input::placeholder { color: var(--stone); font-weight: 300; }
.search-form:focus-within .search-lead-icon { opacity: 1; transform: translateY(-50%) scale(1.08); }
.search-btn {
    position: absolute;
    inset-inline-end: 5px;
    top: 5px;
    bottom: 5px;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0 20px;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    color: #fff;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 18px -8px rgba(160,116,50,.6);
    transition: var(--transition);
}
.search-btn-text { font-size: 13.5px; }
.search-btn:hover { filter: brightness(1.05); transform: translateX(0) scale(1.03); box-shadow: 0 12px 24px -8px rgba(160,116,50,.7); }
.search-btn:active { transform: scale(.98); }

/* ===== Suggestions dropdown ===== */
.search-suggest {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline-start: 0;
    inset-inline-end: 0;
    background: #fff;
    border: 1.5px solid rgba(197, 156, 109,.28);
    border-radius: 18px;
    box-shadow: 0 28px 60px -22px rgba(28,20,16,.5);
    z-index: 1200;
    overflow: hidden;
    animation: yc-suggest-in .22s cubic-bezier(.22,1,.36,1);
}
.search-suggest[hidden] { display: none; }
@keyframes yc-suggest-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.search-suggest-list { max-height: 64vh; overflow-y: auto; padding: 6px; }
.search-suggest-item {
    display: flex; align-items: center; gap: 12px;
    padding: 9px 12px; border-radius: 12px;
    text-decoration: none; color: var(--walnut);
    transition: background .15s ease;
    cursor: pointer;
}
.search-suggest-item:hover,
.search-suggest-item.is-active { background: linear-gradient(135deg, rgba(232,192,106,.18), rgba(197, 156, 109,.1)); }
.search-suggest-thumb {
    width: 50px; height: 50px; flex-shrink: 0;
    border-radius: 10px; object-fit: cover;
    background: var(--parchment) center/cover no-repeat;
    border: 1px solid var(--sand);
}
.search-suggest-info { flex: 1; min-width: 0; }
.search-suggest-name {
    font-weight: 600; font-size: 13.5px; color: var(--walnut);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.3;
}
.search-suggest-cat { font-size: 11.5px; color: var(--stone); }
.search-suggest-price { font-weight: 800; font-size: 13.5px; color: var(--amber-600); white-space: nowrap; }
.search-suggest-price .old { font-weight: 500; font-size: 11px; color: var(--stone); text-decoration: line-through; margin-inline-start: 6px; }
.search-suggest-all {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px; border-top: 1px solid var(--sand);
    background: linear-gradient(180deg, #fff, #fff8ee);
    color: var(--amber-700); font-weight: 700; font-size: 13.5px;
    text-decoration: none; transition: background .15s ease;
}
.search-suggest-all:hover { background: linear-gradient(135deg, var(--amber-400), var(--amber-600)); color: #fff; }
.search-suggest-empty { padding: 22px 16px; text-align: center; color: var(--stone); font-size: 13.5px; }
.search-suggest-empty i { display: block; font-size: 26px; opacity: .35; margin-bottom: 8px; }
.search-suggest-loading { padding: 18px; text-align: center; color: var(--stone); font-size: 13px; }

/* Breadcrumb separator: fa-chevron-left is the RTL default; in LTR it must point
   toward the trailing crumb (right). Mirror it for LTR. */
html[dir="ltr"] .breadcrumb-nav .fa-chevron-left { display: inline-block; transform: scaleX(-1); }

/* "Forward / more" CTAs use fa-arrow-left (RTL default points toward content).
   In LTR these should point right, so flip the icon when the link's purpose is
   "advance/next/see more". Targeted by class to avoid flipping genuine "back" arrows. */
html[dir="ltr"] .section-view-all .fa-arrow-left,
html[dir="ltr"] .promo-cta .fa-arrow-left,
html[dir="ltr"] .btn-details .fa-arrow-left,
html[dir="ltr"] .flash-cta .fa-arrow-left,
html[dir="ltr"] .pagination a .fa-chevron-left { display: inline-block; transform: scaleX(-1); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 4px; }
.header-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 7px 11px;
    border-radius: var(--radius-sm);
    color: var(--earth);
    position: relative;
    font-size: 12px;
    transition: var(--transition);
}
.header-action-btn i {
    font-size: 18px;
    margin-bottom: 2px;
    color: var(--earth);
    transition: var(--transition);
}
.header-action-btn:hover {
    background: var(--amber-50);
    color: var(--amber-600);
}
.header-action-btn:hover i { color: var(--amber-500); }
.action-text {
    font-size: 10px;
    font-weight: 500;
    color: var(--stone);
    letter-spacing: 0.3px;
}
.badge-count {
    position: absolute;
    top: 2px;
    left: 8px;
    background: var(--terracotta);
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--ivory);
    box-shadow: 0 2px 6px rgba(196, 94, 58, 0.25);
}

.language-switch { display: flex; gap: 2px; padding: 3px; background: var(--parchment); border-radius: 8px; margin-right: 5px; }
.lang-btn {
    padding: 4px 10px; border: none; border-radius: 6px; font-size: 11px;
    font-weight: 600; cursor: pointer; background: transparent; color: var(--stone);
    transition: var(--transition-fast); font-family: var(--font-body);
}
.lang-btn.active { background: var(--amber-500); color: #fff; }

/* Mobile Toggle */
.mobile-menu-toggle {
    width: 40px;
    height: 40px;
    background: var(--parchment);
    border: 1px solid var(--sand);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 9px;
    transition: var(--transition);
}
.mobile-menu-toggle:hover { background: var(--amber-50); border-color: var(--amber-200); }
.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--earth);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-menu-toggle:hover span { background: var(--amber-500); }

/* ============================================
   NAVIGATION - Elegant Strip
   ============================================ */
.main-nav {
    background: #fff;
    border-bottom: 1px solid rgba(28, 20, 16, 0.04);
    position: sticky;
    top: 82px;
    z-index: 998;
    transition: var(--transition);
    display: none;
    box-shadow: 0 1px 0 rgba(28, 20, 16, 0.02);
}
@media (min-width: 992px) { .main-nav { display: block; } }
.main-header.scrolled + .main-nav { top: 64px; }

.nav-menu { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.nav-item { position: relative; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 15px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--earth);
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.2px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 18px;
    left: 18px;
    height: 2px;
    background: var(--amber-500);
    transform: scaleX(0);
    transition: transform 0.35s var(--ease-out);
    border-radius: 2px 2px 0 0;
}
.nav-link:hover, .nav-item.active .nav-link { color: var(--amber-600); }
.nav-link:hover::after, .nav-item.active .nav-link::after { transform: scaleX(1); }
.nav-link i:not(.arrow) { font-size: 14px; color: var(--amber-500); opacity: 0.7; }
.nav-link .arrow { font-size: 9px; transition: var(--transition); margin-right: 2px; color: var(--stone); }
.nav-item:hover .arrow { transform: rotate(180deg); color: var(--amber-500); }
.nav-link-highlight { color: var(--terracotta) !important; font-weight: 600 !important; }

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 560px;
    background: #fff;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 20px 60px rgba(28, 20, 16, 0.10), 0 0 0 1px rgba(28, 20, 16, 0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.3s var(--ease-out);
    z-index: 100;
    border-top: 2px solid var(--amber-500);
    overflow: hidden;
}
.nav-item:hover .mega-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-dropdown-inner { display: flex; padding: 28px 30px; gap: 32px; }
.mega-col h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--amber-600);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid var(--amber-100);
}
.mega-col ul li a {
    display: block;
    padding: 7px 0;
    font-size: 13px;
    color: var(--earth);
    transition: var(--transition-fast);
    font-weight: 400;
}
.mega-col ul li a:hover { color: var(--amber-500); padding-right: 10px; }
.mega-featured-card {
    background: linear-gradient(145deg, var(--amber-50), var(--amber-100));
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mega-featured-badge {
    background: var(--amber-500);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 10px;
}
.mega-featured-card h5 { font-family: var(--font-display); font-size: 15px; color: var(--walnut); margin-bottom: 5px; }
.mega-featured-card p { font-size: 12px; color: var(--earth); }

/* ============================================
   MOBILE MENU
   ============================================ */
#mobileMenu { max-width: 320px; background: #fff; border-right: none !important; }
.mobile-logo { height: 48px; }
.mobile-search { margin-bottom: 20px; }
.mobile-search .form-control {
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--sand);
    padding: 11px 18px;
    font-family: var(--font-body);
    font-size: 13px;
    background: var(--parchment);
}
.mobile-search .form-control:focus { border-color: var(--amber-400); box-shadow: 0 0 0 3px rgba(149, 104, 59, 0.06); }
.mobile-nav-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--walnut);
    transition: var(--transition-fast);
    font-size: 14px;
}
.mobile-nav-list li a:hover, .mobile-nav-list li a.active {
    background: var(--amber-50);
    color: var(--amber-600);
}
.mobile-nav-list li a i:first-child { color: var(--amber-500); width: 22px; text-align: center; font-size: 15px; }
.mobile-nav-list .sub-menu { padding-right: 34px; display: none; }
.mobile-nav-list .has-sub.open .sub-menu { display: block; }
.mobile-nav-list .sub-menu a { font-weight: 400; font-size: 13px; padding: 9px 16px; color: var(--earth); }
.mobile-footer-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1.5px solid var(--sand);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mobile-footer-actions a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--earth);
    font-weight: 500;
    font-size: 14px;
}
.mobile-footer-actions a i { color: var(--amber-500); }

/* ============================================
   HERO - Cinematic Warm
   ============================================ */
.hero-section { position: relative; overflow: hidden; }
.hero-slide { position: relative; overflow: hidden; }

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    transition: transform 10s ease;
}
.swiper-slide-active .hero-bg-img {
    transform: scale(1.06);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(14, 11, 8, 0.25) 0%, rgba(14, 11, 8, 0.55) 40%, rgba(14, 11, 8, 0.78) 100%);
    z-index: 2;
}
.hero-overlay-dark {
    background: linear-gradient(to left, rgba(14, 11, 8, 0.30) 0%, rgba(14, 11, 8, 0.60) 40%, rgba(14, 11, 8, 0.85) 100%);
}

.hero-text-col { position: relative; z-index: 3; padding: 70px 0; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 156, 109, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--amber-300);
    padding: 9px 24px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    letter-spacing: 0.5px;
}
.hero-badge i { font-size: 12px; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 5vw, 54px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 22px;
    text-shadow: 0 2px 40px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    margin-bottom: 36px;
    max-width: 480px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.15);
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

/* ── Buttons ── */
.btn-honey {
    background: var(--amber-500);
    color: #fff;
    border: none;
    padding: 14px 34px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(149, 104, 59, 0.25);
    cursor: pointer;
    letter-spacing: 0.3px;
}
.btn-honey::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.7s var(--ease-out);
}
.btn-honey:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 24px rgba(149, 104, 59, 0.35);
    background: var(--amber-600);
}
.btn-honey:hover::before { left: 100%; }

/* Default: honey text + border, designed for light backgrounds (account cards, modals).
   On dark backgrounds, opt in with `.btn-outline-honey.on-dark` to get a translucent white look. */
.btn-outline-honey {
    background: transparent;
    color: var(--amber-500);
    border: 1.5px solid var(--amber-500);
    padding: 13px 30px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.3px;
    text-decoration: none;
}
.btn-outline-honey:hover {
    background: var(--amber-500);
    color: #fff;
    border-color: var(--amber-500);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(149, 104, 59, 0.3);
    text-decoration: none;
}
.btn-outline-honey.on-dark {
    color: rgba(255,255,255,0.92);
    border-color: rgba(255,255,255,0.28);
    backdrop-filter: blur(8px);
}
.btn-outline-honey.on-dark:hover {
    background: var(--amber-500);
    color: #fff;
    border-color: var(--amber-500);
}

/* Hero Stats */
.hero-stats { display: flex; gap: 40px; }
.stat-item { text-align: center; color: #fff; }
.stat-number {
    display: block;
    font-size: 34px;
    font-weight: 700;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--amber-300), #C59C6D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 300; letter-spacing: 0.5px; }

/* Honeycomb Grid (hero visual) */
.hero-visual-col { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 40px 0; }
.hero-honeycomb-grid { position: relative; width: 380px; height: 400px; }
.honeycomb-cell {
    position: absolute; width: 140px; height: 160px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: var(--transition); cursor: pointer;
}
.honeycomb-cell:hover { transform: scale(1.12); z-index: 10; filter: brightness(1.1); }
.cell-inner {
    width: 100%; height: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; color: #fff; text-align: center; gap: 8px;
}
.cell-inner span { font-size: 11px; font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.cell-1 { top: 0; right: 120px; animation: hexFloat 6s ease-in-out infinite; }
.cell-2 { top: 80px; right: 0; animation: hexFloat 6s ease-in-out infinite 0.7s; }
.cell-3 { top: 80px; right: 240px; animation: hexFloat 6s ease-in-out infinite 1.4s; }
.cell-4 { top: 160px; right: 120px; animation: hexFloat 6s ease-in-out infinite 2.1s; }
.cell-5 { top: 240px; right: 0; animation: hexFloat 6s ease-in-out infinite 2.8s; }
@keyframes hexFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Hero Swiper */
.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.25);
    opacity: 1;
    transition: all 0.4s var(--ease-out);
    border-radius: 10px;
}
.hero-pagination .swiper-pagination-bullet-active {
    background: var(--amber-400);
    width: 32px;
    box-shadow: 0 0 12px rgba(197, 156, 109, 0.4);
}
.hero-nav.swiper-button-next, .hero-nav.swiper-button-prev {
    color: #fff;
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-nav::after { font-size: 15px; font-weight: 900; }
.hero-nav:hover { background: var(--amber-500); border-color: var(--amber-500); }

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
    padding: 0;
    position: relative;
    z-index: 5;
    margin-top: -44px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    border-radius: var(--radius-md);
    background: #fff;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(28, 20, 16, 0.04);
    box-shadow: var(--shadow-sm);
}
.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--amber-200);
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--amber-500);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition-bounce);
    box-shadow: 0 3px 12px rgba(149, 104, 59, 0.2);
}
.feature-item:hover .feature-icon { transform: scale(1.1) rotate(6deg); border-radius: 50%; }
.feature-info h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--walnut);
    margin-bottom: 2px;
}
.feature-info p { font-size: 12px; color: var(--stone); margin: 0; font-weight: 300; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { text-align: center; margin-bottom: 40px; position: relative; }
.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    text-align: right;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--amber-50);
    color: var(--amber-600);
    padding: 6px 18px;
    border-radius: 60px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    border: 1px solid var(--amber-100);
    letter-spacing: 0.5px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--walnut);
    margin-bottom: 8px;
    line-height: 1.3;
}
.section-line { display: flex; align-items: center; justify-content: center; gap: 12px; }
.section-line::before, .section-line::after {
    content: ''; width: 50px; height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--amber-300));
}
.section-line::after { background: linear-gradient(90deg, var(--amber-300), transparent); }
.hex-icon { color: var(--amber-400); font-size: 18px; }
.section-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--amber-600);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--amber-100);
    background: var(--amber-50);
    letter-spacing: 0.3px;
}
.section-view-all:hover {
    color: #fff;
    background: var(--amber-500);
    border-color: var(--amber-500);
    gap: 10px;
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories-section {
    padding: 50px 0 55px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--parchment) 50%, var(--ivory) 100%);
}
.categories-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: url('../Images/Logo.png') center/contain no-repeat;
    opacity: 0.01;
    pointer-events: none;
}

.category-card-inner {
    text-align: center;
    padding: 30px 14px 24px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid rgba(28, 20, 16, 0.04);
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}
.category-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber-400), var(--amber-300), var(--amber-400));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
    transform-origin: center;
}
.category-card-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(197, 156, 109, 0.04), transparent 70%);
    opacity: 0;
    transition: var(--transition);
}
.category-card:hover .category-card-inner {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--amber-200);
}
.category-card:hover .category-card-inner::before { transform: scaleX(1); }
.category-card:hover .category-card-inner::after { opacity: 1; }

.hexagon-shape {
    width: 64px;
    height: 74px;
    margin: 0 auto 16px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: var(--transition-bounce);
    position: relative;
    z-index: 2;
}
.category-card:hover .hexagon-shape { transform: scale(1.12) rotate(12deg); }
.category-card-inner h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--walnut);
    margin-bottom: 4px;
    position: relative;
    z-index: 2;
}
.category-card-inner p {
    font-size: 11px;
    color: var(--stone);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    font-weight: 300;
}
.category-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--amber-600);
    background: var(--amber-50);
    padding: 3px 14px;
    border-radius: 50px;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.honey-cat .hexagon-shape { background: linear-gradient(135deg, #C59C6D, #B0824F); box-shadow: 0 6px 18px rgba(149, 104, 59, 0.3); }
.oil-cat .hexagon-shape { background: linear-gradient(135deg, #5B8C5A, #3D7A3C); box-shadow: 0 6px 18px rgba(91, 140, 90, 0.3); }
.coffee-cat .hexagon-shape { background: linear-gradient(135deg, #7D5A50, #62391C); box-shadow: 0 6px 18px rgba(125, 90, 80, 0.3); }
.incense-cat .hexagon-shape { background: linear-gradient(135deg, #9B6BA4, #7B4B8C); box-shadow: 0 6px 18px rgba(155, 107, 164, 0.3); }
.spice-cat .hexagon-shape { background: linear-gradient(135deg, #A56A3B, #7A5029); box-shadow: 0 6px 18px rgba(196, 94, 58, 0.3); }
.herbal-cat .hexagon-shape { background: linear-gradient(135deg, #3D8B7A, #2D6B5A); box-shadow: 0 6px 18px rgba(61, 139, 122, 0.3); }

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-section {
    padding: 50px 0;
    position: relative;
}
.products-section:nth-of-type(even),
.products-alt {
    background: linear-gradient(180deg, var(--parchment) 0%, #F4EBDA 50%, var(--parchment) 100%);
}

.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(28, 20, 16, 0.04);
    transition: all 0.35s var(--ease-out);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xs);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(28, 20, 16, 0.08), 0 0 0 1px rgba(197, 156, 109, 0.1);
    border-color: rgba(197, 156, 109, 0.15);
}

/* Product Badges */
.product-badges { position: absolute; top: 14px; right: 14px; z-index: 5; display: flex; flex-direction: column; gap: 6px; }
.product-badges span {
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    display: inline-block;
    animation: badgeIn 0.4s var(--ease-out) backwards;
    letter-spacing: 0.3px;
}
.product-badges span:nth-child(2) { animation-delay: 0.1s; }
@keyframes badgeIn { from { transform: translateX(15px); opacity: 0; } }
.badge-sale { background: #C25450; color: #fff; box-shadow: 0 2px 8px rgba(194, 84, 80, 0.25); }
.badge-new { background: var(--sage); color: #fff; box-shadow: 0 2px 8px rgba(91, 140, 90, 0.25); }
.badge-best { background: var(--amber-500); color: #fff; box-shadow: 0 2px 8px rgba(149, 104, 59, 0.25); }
.badge-limited { background: var(--terracotta); color: #fff; box-shadow: 0 2px 8px rgba(196, 94, 58, 0.25); }

/* Wishlist */
.product-wishlist {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.90);
    backdrop-filter: blur(8px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dust);
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.product-wishlist:hover {
    background: #C25450;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(194, 84, 80, 0.25);
}
.product-wishlist.active { background: #C25450; color: #fff; }

/* Product Image */
.product-image {
    position: relative;
    overflow: hidden;
    /* square frame matches the product photos (all are 1:1 or 3:4 portrait) so
       cover fills the whole area edge-to-edge with no padding and minimal trim */
    aspect-ratio: 1 / 1;
    background: var(--parchment);
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.7s var(--ease-out);
}
.product-card:hover .product-img { transform: scale(1.06); }

/* Placeholder backgrounds */
.product-image-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    font-size: 50px; transition: all 0.5s var(--ease-out);
}
.honey-placeholder { color: var(--amber-500); background: linear-gradient(135deg, var(--amber-50), var(--amber-100)); }
.oil-placeholder { color: var(--amber-600); background: linear-gradient(135deg, #F7F0E3, #E8DCC8); }
.coffee-placeholder { color: #7A5029; background: linear-gradient(135deg, #F4EBDA, #E8DCC8); }
.incense-placeholder { color: #95683B; background: linear-gradient(135deg, #F4EBDA, #E8D4B8); }

.product-card:hover .product-image-placeholder { transform: scale(1.08) rotate(2deg); }

/* Product Overlay */
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: linear-gradient(transparent, rgba(14, 11, 8, 0.3));
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}
.product-card:hover .product-overlay { transform: translateY(0); }
.overlay-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--walnut);
    font-size: 13px;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-sm);
}
.overlay-btn:hover { background: var(--amber-500); color: #fff; transform: scale(1.08); }

/* Product Info */
.product-info { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.product-category {
    font-size: 10px;
    font-weight: 600;
    color: var(--amber-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}
.product-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--walnut);
    margin-bottom: 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition-fast);
}
.product-card:hover .product-title, .product-card:hover .product-title a { color: var(--amber-600); }
.product-title a { color: inherit; transition: var(--transition-fast); }

.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.product-rating .stars { display: flex; gap: 1px; }
.product-rating .stars i { color: var(--amber-400); font-size: 11px; }
.rating-count { font-size: 10px; color: var(--dust); font-weight: 400; }

.product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; margin-top: auto; }
.current-price {
    font-size: 19px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--amber-600);
}
.old-price { font-size: 12px; color: var(--dust); text-decoration: line-through; }

.product-actions { display: flex; gap: 8px; align-items: center; }
.btn-cart-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--amber-500);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(149, 104, 59, 0.2);
}
.btn-cart-icon:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-gold);
    background: var(--amber-600);
}
.btn-details {
    flex: 1;
    background: var(--parchment);
    border: 1px solid var(--sand);
    color: var(--walnut);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.2px;
}
.btn-details:hover {
    background: var(--amber-500);
    color: #fff;
    border-color: var(--amber-500);
}
.btn-details i { font-size: 10px; transition: var(--transition); }
.btn-details:hover i { transform: translateX(-4px); }

.btn-add-cart {
    flex: 1;
    background: transparent;
    border: 1.5px solid var(--amber-200);
    color: var(--amber-600);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: var(--transition);
    cursor: pointer;
}
.btn-add-cart:hover { background: var(--amber-500); color: #fff; border-color: var(--amber-500); }
.btn-buy-now {
    background: var(--amber-500);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(149, 104, 59, 0.2);
}
.btn-buy-now:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); background: var(--amber-600); }

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner { padding: 20px 0 10px; }
.promo-card {
    background: linear-gradient(135deg, #62391C 0%, #784625 50%, #62391C 100%);
    border-radius: var(--radius-xl);
    padding: 44px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(197, 156, 109, 0.06);
}
.promo-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        url('../Images/Logo.png') center/200px no-repeat,
        radial-gradient(circle at 10% 90%, rgba(197, 156, 109, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(197, 156, 109, 0.03) 0%, transparent 40%);
    opacity: 0.5;
    pointer-events: none;
}
.promo-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../Images/Logo.png') center/200px no-repeat;
    opacity: 0.03;
}

.promo-content { position: relative; z-index: 2; }
.promo-badge {
    display: inline-block;
    background: var(--amber-500);
    color: #fff;
    padding: 7px 22px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(149, 104, 59, 0.25);
    letter-spacing: 0.3px;
}
.promo-content h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 4vw, 34px);
    color: #fff;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.3;
}
.promo-content p { color: rgba(255,255,255,0.45); font-size: 14px; margin-bottom: 28px; font-weight: 300; line-height: 1.7; }

.promo-countdown { display: flex; gap: 12px; margin-bottom: 18px; }
.countdown-item {
    background: rgba(197, 156, 109, 0.06);
    border: 1px solid rgba(197, 156, 109, 0.1);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: center;
    backdrop-filter: blur(8px);
    min-width: 74px;
}
.countdown-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--amber-300), #C59C6D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.countdown-label { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 5px; display: block; font-weight: 300; letter-spacing: 0.5px; }

.promo-visual { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
.promo-hex-container { position: relative; }
.promo-hex {
    width: 190px;
    height: 220px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    animation: hexFloat 6s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(149, 104, 59, 0.2);
}
.promo-price-tag {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: var(--radius-md);
    padding: 12px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.promo-price-tag .was { display: block; font-size: 12px; color: var(--dust); text-decoration: line-through; }
.promo-price-tag .now {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--amber-600);
    font-family: var(--font-display);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 55px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--parchment) 50%, var(--ivory) 100%);
}
.testimonials-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 350px;
    background: url('../Images/Logo.png') center/contain no-repeat;
    opacity: 0.01;
    pointer-events: none;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid rgba(28, 20, 16, 0.04);
    transition: all 0.35s var(--ease-out);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    left: 18px;
    font-size: 65px;
    color: rgba(197, 156, 109, 0.06);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--amber-400), var(--amber-300));
    transition: height 0.5s var(--ease-out);
    border-radius: 0 0 3px 3px;
}
.testimonial-card:hover {
    border-color: var(--amber-100);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.testimonial-card:hover::after { height: 100%; }

.testimonial-stars { margin-bottom: 16px; }
.testimonial-stars i { color: var(--amber-400); font-size: 14px; }
.testimonial-text {
    font-size: 14px;
    line-height: 2;
    color: var(--earth);
    margin-bottom: 24px;
    font-style: italic;
    font-weight: 300;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--amber-500);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    font-family: var(--font-display);
    box-shadow: 0 3px 10px rgba(149, 104, 59, 0.2);
}
.author-info h5 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--walnut);
    margin: 0;
}
.author-info span { font-size: 12px; color: var(--stone); font-weight: 300; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section { padding: 25px 0 55px; }
.newsletter-card {
    background: linear-gradient(135deg, #62391C, #784625, #62391C);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(197, 156, 109, 0.06);
}
.newsletter-bg-hex {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23C59C6D' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 56px 100px;
}
.newsletter-card h2 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.newsletter-card p { color: rgba(255,255,255,0.4); font-size: 14px; font-weight: 300; }
.newsletter-form .input-group {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 5px;
    border: 1px solid rgba(197, 156, 109, 0.08);
}
.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: #fff;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.25); }
.newsletter-form .form-control:focus { box-shadow: none; background: transparent; color: #fff; }
.newsletter-form .btn-honey { border-radius: 9px; white-space: nowrap; }

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--walnut);
    color: rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}
.main-footer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: url('../Images/Logo.png') center/contain no-repeat;
    opacity: 0.01;
    pointer-events: none;
}
.footer-top { padding: 64px 0 32px; position: relative; z-index: 2; }
.footer-logo { height: 60px; margin-bottom: 18px; filter: brightness(1.1); }
.footer-brand p { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,0.35); margin-bottom: 22px; font-weight: 300; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(197, 156, 109, 0.06);
    border: 1px solid rgba(197, 156, 109, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-400);
    font-size: 16px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--amber-500);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(149, 104, 59, 0.2);
    border-color: var(--amber-500);
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--amber-500);
    border-radius: 2px;
}
.footer-links ul li a {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    transition: var(--transition-fast);
    font-weight: 300;
}
.footer-links ul li a:hover { color: var(--amber-400); padding-right: 8px; }
.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    font-weight: 300;
}
.footer-contact ul li i { color: var(--amber-400); width: 16px; text-align: center; font-size: 13px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 22px 0;
    position: relative;
    z-index: 2;
}
.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); margin: 0; font-weight: 300; }
/* "Developed by" credit — green outlined pill (matches the dashboard footer). */
.footer-dev-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 12px; border-radius: 999px;
    color: #1d9d52; background: transparent;
    border: 1.5px solid #25d366;
    text-decoration: none; font-weight: 600;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
    vertical-align: middle;
}
.footer-dev-link i { color: #25d366; font-size: 14px; transition: color .2s ease; }
.footer-dev-link:hover, .footer-dev-link:focus-visible {
    background: #25d366; border-color: #25d366; color: #fff; text-decoration: none; outline: none;
}
.footer-dev-link:hover i, .footer-dev-link:focus-visible i { color: #fff; }

/* Show all sections immediately — cancel the AOS scroll-reveal delay so
   headers, products, categories, FAQ, ads, etc. are visible without waiting. */
[data-aos] { opacity: 1 !important; transform: none !important; transition: none !important; }

/* Wide page width — use most of the screen so there's minimal empty space
   on the left/right, on every page. Capped so it doesn't stretch on huge
   monitors. Overrides Bootstrap's narrower responsive .container widths. */
.container { width: 95% !important; max-width: 1760px !important; padding-left: 24px !important; padding-right: 24px !important; }

/* Tighter vertical rhythm between home sections (less empty space). */
.features-bar,
.categories-section,
.flash-sale-section,
.promo-section,
.products-section,
.ads-section,
.faq-section,
.stats-section,
.testimonials-section,
.cat-block-section,
.discount-section,
.bestsellers-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}
/* Pull the trailing margin off section blocks that add their own bottom gap. */
.home-section + .home-section { margin-top: 0 !important; }
.section-header, .section-header-row { margin-bottom: 16px !important; }
.payment-methods { display: flex; align-items: center; gap: 14px; font-size: 26px; color: rgba(255,255,255,0.15); }
.payment-badge {
    font-size: 10px;
    padding: 5px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.25);
    font-weight: 400;
}

/* Developer credit — sits on a new line under copyright + payment row, centered
   and quiet. The WhatsApp icon greens up on hover to signal the contact link. */
.footer-dev-credit {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
}
.footer-dev-credit a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.18);
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
    font-weight: 500;
}
.footer-dev-credit a i { color: #25d366; font-size: 14px; }
.footer-dev-credit a:hover,
.footer-dev-credit a:focus-visible {
    color: #ffffff;
    background: rgba(37, 211, 102, 0.16);
    border-color: rgba(37, 211, 102, 0.35);
    outline: none;
}
.footer-dev-credit .dev-name { font-weight: 600; }

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-sidebar-header { background: var(--amber-500); color: #fff; }
.cart-sidebar-header h5 { font-family: var(--font-display); font-weight: 700; }
.cart-sidebar-header .btn-close { filter: brightness(0) invert(1); }
.empty-cart { text-align: center; padding: 60px 20px; }
.empty-cart-icon {
    width: 90px; height: 90px; margin: 0 auto 20px; background: var(--amber-50);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: var(--amber-300);
}
.empty-cart h4 { font-family: var(--font-display); font-weight: 700; color: var(--walnut); margin-bottom: 8px; }
.empty-cart p { color: var(--stone); font-size: 13px; margin-bottom: 24px; font-weight: 300; }

/* ============================================
   SCROLL TO TOP & WHATSAPP
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    /* Logical start edge so it always sits opposite the chat widget (which is
       on the inline-end edge): bottom-left in LTR, bottom-right in RTL. This
       prevents the RTL overlap where both landed in the bottom-left corner. */
    inset-inline-start: 32px;
    width: 48px;
    height: 48px;
    background: var(--amber-500);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 3px 16px rgba(149, 104, 59, 0.25);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(149, 104, 59, 0.35); background: var(--amber-600); }

.whatsapp-float {
    position: fixed;
    bottom: 92px;
    left: 32px;
    width: 52px;
    height: 52px;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 3px 16px rgba(37, 211, 102, 0.3);
    z-index: 990;
    transition: var(--transition);
    animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    color: #fff;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 3px 16px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 3px 24px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.05); }
}

/* ============================================
   SWIPER GLOBAL
   ============================================ */
.swiper-pagination-bullet {
    background: var(--amber-400);
    opacity: 0.2;
    width: 8px;
    height: 8px;
    transition: all 0.4s var(--ease-out);
    border-radius: 10px;
}
.swiper-pagination-bullet-active {
    background: var(--amber-500);
    opacity: 1;
    width: 28px;
    box-shadow: 0 0 8px rgba(149, 104, 59, 0.3);
}

.products-section .swiper {
    padding: 8px 0 44px;
    position: relative;
}
.products-section .swiper-button-next,
.products-section .swiper-button-prev {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--sand);
    color: var(--amber-500);
    transition: var(--transition);
    top: 35%;
}
.products-section .swiper-button-next::after,
.products-section .swiper-button-prev::after { font-size: 14px; font-weight: 900; }
.products-section .swiper-button-next:hover,
.products-section .swiper-button-prev:hover {
    background: var(--amber-500);
    color: #fff;
    border-color: var(--amber-500);
    box-shadow: var(--shadow-gold);
}
.products-section .swiper-button-next { right: 5px; }
.products-section .swiper-button-prev { left: 5px; }
.products-section .swiper-pagination {
    position: relative;
    bottom: auto;
    margin-top: 12px;
}
@media (max-width: 767px) {
    .products-section .swiper-button-next,
    .products-section .swiper-button-prev { display: none; }
}

.testimonials-section .swiper {
    padding: 10px 10px 50px;
}
.testimonials-section .swiper-pagination {
    position: relative;
    bottom: auto;
    margin-top: 10px;
}

/* Toast */
.toast-notification {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: var(--amber-500);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 6px 24px rgba(149, 104, 59, 0.3);
    opacity: 0;
    transition: all 0.4s var(--ease-out);
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    letter-spacing: 0.3px;
}
.toast-notification.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.cart-bounce { animation: cartBounce 0.5s ease; }
@keyframes cartBounce { 0% { transform: scale(1); } 30% { transform: scale(1.3); } 60% { transform: scale(0.9); } 100% { transform: scale(1); } }

/* Ripple */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}
@keyframes rippleEffect {
    from { transform: scale(0); opacity: 1; }
    to { transform: scale(4); opacity: 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
    .hero-honeycomb-grid { width: 320px; height: 350px; }
    .honeycomb-cell { width: 120px; height: 138px; }
    .cell-1 { right: 100px; } .cell-2 { right: 0; } .cell-3 { right: 200px; } .cell-4 { right: 100px; } .cell-5 { right: 0; }
}
@media (max-width: 991px) {
    .header-search { display: none; }
    .header-end { flex: 0 0 auto; gap: 8px; }
    .header-actions .action-text { display: none; }
    .header-actions { gap: 2px; }
    .header-action-btn { padding: 6px 8px; }
    .header-action-btn i { font-size: 18px; }
    .language-switch { display: none; }
    .header-wrapper { gap: 10px; }
    .header-logo img { height: 44px; }
    .main-header .container { padding-top: 10px; padding-bottom: 10px; }
    .hero-visual-col { display: none; }
    .hero-text-col { text-align: center; }
    .hero-subtitle { margin: 0 auto 28px; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .promo-card { padding: 28px; }
    .promo-visual { display: none; }
    .newsletter-card { padding: 32px; text-align: center; }
    .newsletter-form { margin-top: 20px; }
}
@media (max-width: 767px) {
    .feature-item { flex-direction: column; text-align: center; padding: 16px 10px; }
    .feature-icon { width: 42px; height: 42px; font-size: 16px; }
    .feature-info h4 { font-size: 13px; }
    .feature-info p { font-size: 11px; }
    .category-card-inner { padding: 22px 8px; }
    .hexagon-shape { width: 50px; height: 58px; font-size: 20px; }
    .products-section { padding: 40px 0; }
    .section-title { font-size: 22px; }
    .promo-countdown { flex-wrap: wrap; justify-content: center; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .features-bar { margin-top: -20px; }
    .products-section .swiper { padding: 5px 0 35px; }
    .hero-badge { font-size: 12px; padding: 7px 18px; }
    .newsletter-card { text-align: center; }
    .newsletter-form { margin-top: 16px; }
}
@media (max-width: 575px) {
    .header-logo img { height: 46px; }
    .hero-title { font-size: 24px; }
    .hero-subtitle { font-size: 14px; }
    .hero-btns { gap: 10px; }
    .hero-btns .btn-honey, .hero-btns .btn-outline-honey { padding: 11px 22px; font-size: 13px; }
    .products-section .swiper { padding: 5px 0 30px; }
    .hero-stats { gap: 18px; }
    .stat-number { font-size: 24px; }
    .stat-label { font-size: 10px; }
    .promo-card, .newsletter-card { padding: 22px; }
    .footer-top { padding: 40px 0 16px; }
    .features-bar { margin-top: -16px; }
    .hero-floating-products { display: none; }
    .section-header-row { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ---- Product image lightbox (zoom + navigate) ---- */
.yc-lightbox { position: fixed; inset: 0; z-index: 20000; display: none; align-items: center; justify-content: center; background: rgba(20, 14, 8, .93); backdrop-filter: blur(3px); }
.yc-lightbox.open { display: flex; animation: ycLbFade .18s ease; }
@keyframes ycLbFade { from { opacity: 0; } to { opacity: 1; } }
.yc-lb-stage { max-width: 92vw; max-height: 88vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.yc-lb-img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0, 0, 0, .5); cursor: zoom-in; transition: transform .2s ease; user-select: none; -webkit-user-drag: none; }
.yc-lb-img.zoomed { transform: scale(2.3); cursor: zoom-out; transition: transform .12s ease; }
.yc-lb-close { position: fixed; top: 18px; right: 22px; width: 46px; height: 46px; border: none; border-radius: 50%; background: rgba(255, 255, 255, .14); color: #fff; font-size: 1.2rem; cursor: pointer; transition: background .15s; display: flex; align-items: center; justify-content: center; }
.yc-lb-close:hover { background: rgba(255, 255, 255, .3); }
.yc-lb-nav { position: fixed; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border: none; border-radius: 50%; background: rgba(255, 255, 255, .14); color: #fff; font-size: 1.3rem; cursor: pointer; transition: background .15s; display: flex; align-items: center; justify-content: center; }
.yc-lb-nav:hover { background: rgba(255, 255, 255, .3); }
.yc-lb-prev { right: 20px; }   /* RTL: previous image sits on the right */
.yc-lb-next { left: 20px; }    /* RTL: next image sits on the left */
.yc-lb-counter { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); color: #fff; font-size: .95rem; background: rgba(0, 0, 0, .4); padding: 5px 14px; border-radius: 20px; letter-spacing: 1px; }
@media (max-width: 640px) {
    .yc-lb-nav { width: 42px; height: 42px; font-size: 1.1rem; }
    .yc-lb-close { width: 40px; height: 40px; top: 12px; right: 12px; }
    .yc-lb-img.zoomed { transform: scale(2); }
}
