
:root {
  --primary: #C5A059; /* Elegant Gold */
  --primary-light: #D4A84E;
  --primary-dark: #8E6D3A;
  --coffee: #4B3621; /* Rich Coffee */
  --coffee-light: #6F4E37;
  --coffee-dark: #2D1B0E;
  --bg-cream: #FAF7F2; /* Soft Ivory */
  --bg-warm: #F2EBE1;
  --text-dark: #2D1B0E;
  --text-muted: #5A4D42;
  --accent-gold: #D4A853;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(75,54,33,0.05);
  --shadow-md: 0 4px 15px rgba(75,54,33,0.1);
  --shadow-lg: 0 10px 30px rgba(75,54,33,0.12);
  --radius: 16px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
}

body { 
    font-family:'Inter',sans-serif; 
    background:var(--bg-cream); 
    color:var(--text-dark); 
    overflow-x:hidden; 
    letter-spacing: -0.01em; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-cream); }
::-webkit-scrollbar-thumb { background: var(--primary-dark); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* GOLD ACCENT BAR */
.accent-bar {
    background: linear-gradient(135deg, var(--coffee-dark) 0%, var(--coffee) 50%, var(--coffee-dark) 100%);
    padding: 8px 20px;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}
.accent-marquee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    white-space: nowrap;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--primary-light);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.accent-divider {
    color: rgba(197, 160, 89, 0.3);
    font-weight: 300;
}

/* ANNOUNCEMENT BAR */
.announcement-bar {
    background: var(--coffee-dark);
    color: var(--bg-cream);
    text-align: center;
    padding: 8px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 1002;
    position: relative;
}

/* HEADER */
.top-bar { 
    background: #fff;
    padding: 0 5%; 
    height: 80px;
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    border-bottom: 1px solid rgba(197, 160, 89, 0.1); 
    position: relative; 
    z-index: 1000; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.header-left { display: flex; align-items: center; gap: 8px; padding: 0; height: 72px; }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--coffee-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-mobile-menu-btn {
    margin: 0;
}

body > .site-mobile-menu-btn {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1001;
}

.top-bar .logo { 
    width: auto; 
    height: 100%; 
    display: flex; 
    align-items: center; 
    justify-content: flex-start;
    overflow: visible;
    flex-shrink: 0;
}

.top-bar .brand-logo { 
    height: 80px; 
    width: auto; 
    max-width: 220px;
    object-fit: contain; 
    object-position: left center;
    transition: opacity 0.3s ease;
    display: block;
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
}
.top-bar .logo:hover .brand-logo { 
    opacity: 0.85;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}
.top-nav .nav-link {
    text-decoration: none;
    color: #444;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.25s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: 6px;
    white-space: nowrap;
    letter-spacing: 0.2px;
    position: relative;
}
.top-nav .nav-link:hover {
    color: var(--primary-dark);
    background: rgba(197, 160, 89, 0.06);
}
.top-nav .nav-link.active {
    color: var(--coffee-dark);
    font-weight: 600;
    background: transparent;
}
.top-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

/* HEADER SEARCH */
.header-search { flex: 1; margin: 0 24px; display: flex; align-items: center; justify-content: center; }
.search-container-nav { 
    width: 100%;
    max-width: 680px;
    background: var(--white); 
    display: flex; 
    align-items: center; 
    border-radius: 999px; 
    padding: 0; 
    border: 1px solid rgba(197, 160, 89, 0.18);
    transition: all 0.3s ease;
    height: 46px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(75, 54, 33, 0.06);
}
.search-container-nav:focus-within { 
    border-color: var(--primary); 
    box-shadow: 0 12px 34px rgba(197, 160, 89, 0.12);
}
.search-container-nav input { 
    flex:1; 
    border:none; 
    outline:none; 
    background:transparent; 
    font-size: 0.95rem; 
    color:var(--coffee-dark); 
    font-family: 'Inter', sans-serif;
    padding: 0 18px;
    height: 100%;
}
.search-container-nav input::placeholder { color: rgba(75, 54, 33, 0.45); font-weight: 500; }
.search-container-nav .search-btn { 
    height: 100% !important;
    width: 52px !important;
    min-width: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--coffee-dark) !important; 
    color: var(--primary-light) !important; 
    border: none !important; 
    border-radius: 0 999px 999px 0 !important;
    cursor: pointer; 
    transition: all 0.3s;
    padding: 0 !important;
}
.search-container-nav .search-btn:hover { 
    background: var(--coffee) !important; 
    color: var(--primary-light) !important;
}

/* SUB NAV BAR */
.sub-nav-bar {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
    box-shadow: inset 0 -1px 0 rgba(197, 160, 89, 0.06);
}
.sub-nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 5%;
    gap: 10px;
    flex-wrap: wrap;
}
.sub-nav-cat {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.sub-nav-cat .dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--coffee-dark), var(--coffee));
    color: var(--primary-light);
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
    border: 1px solid rgba(197, 160, 89, 0.18);
    font-weight: 700;
}
.sub-nav-cat .dropdown-trigger:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(75, 54, 33, 0.08);
}
.sub-nav-container .nav-link { 
    text-decoration: none; 
    font-size: 0.85rem; 
    font-weight: 700; 
    color: var(--coffee-dark); 
    transition: all 0.3s;
    padding: 10px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    background: rgba(242, 235, 225, 0.9);
    border: 1px solid rgba(197, 160, 89, 0.18);
}
.sub-nav-container .nav-link:hover { 
    color: var(--coffee-dark); 
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.18), rgba(242, 235, 225, 1));
    border-color: rgba(197, 160, 89, 0.3);
}
.sub-nav-container .nav-link.active {
    color: var(--primary-light);
    background: var(--coffee-dark);
    border-color: var(--coffee-dark);
}
.nav-chevron { 
    transition: transform 0.3s;
    opacity: 0.8;
}
.dropdown:hover .nav-chevron { 
    transform: rotate(180deg); 
    opacity: 1;
}

/* ICON BUTTONS */
.top-icons { display: flex; gap: 6px; align-items: center; height: 100%; flex-shrink: 0; }

.icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: transparent;
    color: #555;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}
.icon-btn svg {
    transition: all 0.25s;
}
.icon-btn:hover {
    background: rgba(0,0,0,0.04);
    color: var(--coffee-dark);
}
.icon-btn:hover svg {
    stroke: var(--coffee-dark);
}
.icon-badge {
    position: absolute;
    top: 3px;
    right: 3px;
    background: var(--primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
    line-height: 1;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* NAV DIVIDER */
.nav-divider {
    width: 1px;
    height: 28px;
    background: linear-gradient(180deg, transparent 0%, rgba(197, 160, 89, 0.3) 50%, transparent 100%);
    margin: 0 6px;
}

/* LOGIN BUTTON */
.btn-login-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 100px;
    background: linear-gradient(35deg, var(--coffee-dark) 0%, var(--coffee) 100%);
    color: var(--primary-light) !important;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(75, 54, 33, 0.15);
    white-space: nowrap;
}
.btn-login-nav svg {
    stroke: var(--primary-light);
    transition: all 0.3s;
}
.btn-login-nav:hover {
    background: linear-gradient(35deg, var(--primary) 0%, var(--accent-gold) 100%);
    color: var(--coffee-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.3);
    border-color: var(--primary);
}
.btn-login-nav:hover svg {
    stroke: var(--coffee-dark);
}
.btn-login-nav::before { content: none !important; }

/* MOBILE NAV OVERLAY STYLES */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(45, 27, 14, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav-overlay.active { left: 0; }
.mobile-nav-content {
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: var(--bg-cream);
    padding: 24px 20px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 20px 0 50px rgba(0,0,0,0.1);
}
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; margin-bottom: 20px; border-bottom: 1px solid rgba(197, 160, 89, 0.1); }
.mobile-logo { height: 52px; width: auto; max-width: 140px; object-fit: contain; object-position: left center; }
.close-menu { background: none; border: none; font-size: 1.8rem; color: var(--coffee-dark); cursor: pointer; line-height: 1; padding: 4px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a { text-decoration: none; font-size: 1.05rem; font-weight: 600; color: var(--coffee-dark); padding: 12px 16px; border-radius: 10px; transition: background 0.2s; }
.mobile-nav-links a:hover { background: rgba(197, 160, 89, 0.08); }
.mobile-login-btn { 
    margin-top: 12px;
    padding: 14px;
    background: var(--coffee-dark);
    color: var(--primary) !important;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
}
.btn-login-nav::before { content: none !important; }

/* SEARCH BAR (Mobile) */
.search-bar { padding: 10px 15px; background: var(--bg-cream); display: none; }
.search-container { 
    max-width: 900px; 
    margin: 0 auto; 
    background: white; 
    display: flex; 
    align-items: center; 
    border-radius: 50px; 
    padding: 6px 6px 6px 24px; 
    box-shadow: 0 4px 15px rgba(75, 54, 33, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: all 0.3s ease;
}
.search-container:focus-within { 
    background: #fff;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.15); 
    border-color: var(--primary); 
    transform: translateY(-2px);
}
.search-icon-box { 
    padding: 0 12px 0 0; 
    color: var(--primary); 
    display: flex; 
    align-items: center; 
}
.search-container input { 
    flex:1; 
    border:none; 
    outline:none; 
    background:transparent; 
    font-size: 0.95rem; 
    color:var(--coffee-dark); 
    font-family: 'Inter', sans-serif;
}
.search-container input::placeholder { color: rgba(75, 54, 33, 0.4); font-style: normal; }
.search-btn { 
    height: 48px;
    padding: 0 32px; 
    background: var(--coffee-dark); 
    color: var(--primary); 
    border:none; 
    border-radius: 50px;
    font-weight: 700; 
    font-size: 0.9rem;
    cursor: pointer; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}
.search-btn:hover { 
    background: var(--coffee); 
    color: var(--primary-light); 
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(75, 54, 33, 0.2);
}

/* SEARCH POPUP STYLES */
.search-popup-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 24px 24px;
    background: rgba(13, 10, 7, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.search-popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.search-popup {
    width: min(600px, 94%);
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    padding: 28px 28px 20px;
    position: relative;
    transform: translateY(-20px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
    border: 1px solid rgba(197, 160, 89, 0.15);
    max-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
}
.search-popup-overlay.active .search-popup {
    transform: translateY(0) scale(1);
}
.search-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    color: var(--coffee-dark);
    background: rgba(197, 160, 89, 0.1);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s;
}
.search-popup-close:hover {
    background: rgba(197, 160, 89, 0.22);
}
.search-popup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.search-popup-content h2 {
    margin: 0 0 6px;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    color: var(--coffee-dark);
    font-family: 'Playfair Display', serif;
}
.search-popup-subtitle {
    margin: 0 0 20px;
    color: rgba(75, 54, 33, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}
.search-popup-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    min-height: 0;
}
.search-popup-field {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}
.search-popup-field input {
    flex: 1;
    min-width: 0;
    border: 1.5px solid rgba(197, 160, 89, 0.3);
    border-radius: 999px;
    padding: 15px 20px;
    font-size: 1rem;
    color: var(--coffee-dark);
    background: var(--bg-cream);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s;
    font-family: 'Inter', sans-serif;
}
.search-popup-field input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}
.search-popup-submit {
    padding: 15px 28px;
    border: none;
    border-radius: 999px;
    background: var(--primary);
    color: var(--coffee-dark);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.search-popup-submit:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.25);
}

/* SEARCH LIVE RESULTS */
.search-live-results {
    margin-top: 14px;
    overflow-y: auto;
    flex: 1;
    max-height: 360px;
}
.search-live-results:empty { display: none; }

.search-suggestions-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(75, 54, 33, 0.45);
    margin-bottom: 8px;
    padding: 0 2px;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}
.search-result-item:hover, .search-result-item:focus {
    background: rgba(197, 160, 89, 0.08);
    outline: none;
}
.search-result-img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-warm);
    border: 1px solid rgba(197, 160, 89, 0.12);
}
.search-result-img-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--bg-warm);
    border: 1px solid rgba(197, 160, 89, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(197, 160, 89, 0.5);
}
.search-result-info {
    flex: 1;
    min-width: 0;
}
.search-result-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--coffee-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}
.search-result-name mark {
    background: rgba(197, 160, 89, 0.25);
    color: var(--coffee-dark);
    border-radius: 3px;
    padding: 0 2px;
}
.search-result-cat {
    font-size: 0.75rem;
    color: rgba(75, 54, 33, 0.5);
}
.search-result-price {
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--primary-dark);
    white-space: nowrap;
    flex-shrink: 0;
}
.search-result-flash {
    font-size: 0.65rem;
    background: #d32f2f;
    color: #fff;
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}
.search-live-divider {
    height: 1px;
    background: rgba(197, 160, 89, 0.1);
    margin: 4px 0;
}
.search-live-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    color: rgba(75, 54, 33, 0.5);
    font-size: 0.85rem;
}
.search-live-loading .sp {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(197, 160, 89, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin-s 0.7s linear infinite;
    flex-shrink: 0;
}
@keyframes spin-s { to { transform: rotate(360deg); } }
.search-live-empty {
    padding: 20px 12px;
    text-align: center;
    color: rgba(75, 54, 33, 0.4);
    font-size: 0.85rem;
}
.search-see-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    padding: 12px;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    color: var(--coffee);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 0 0 12px 12px;
    transition: background 0.15s, color 0.15s;
}
.search-see-all:hover {
    background: rgba(197, 160, 89, 0.08);
    color: var(--coffee-dark);
}

/* Quick category chips */
.search-quick-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.search-chip {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1.5px solid rgba(197, 160, 89, 0.25);
    background: var(--bg-cream);
    color: var(--coffee);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    font-family: 'Inter', sans-serif;
}
.search-chip:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--coffee-dark);
}

@media (max-width: 480px) {
    .search-popup-overlay {
        padding: 20px 12px 12px;
    }
    .search-popup {
        padding: 22px 18px 16px;
        border-radius: 20px;
    }
    .search-popup-field input {
        padding: 13px 16px;
        font-size: 16px;
    }
    .search-popup-submit {
        padding: 13px 18px;
        font-size: 0.88rem;
    }
}
.cart-qty-btn, .delete-cart-item {
    border: 1px solid rgba(75, 54, 33, 0.12);
    background: white;
    color: var(--coffee-dark);
    border-radius: 999px;
    min-width: 30px;
    padding: 6px 10px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.cart-qty-btn:hover {
    background: rgba(197, 160, 89, 0.12);
}
.delete-cart-item {
    background: rgba(255, 235, 230, 0.9);
    border-color: rgba(231, 76, 60, 0.18);
    color: #b02a1e;
}
.delete-cart-item:hover {
    background: rgba(231, 76, 60, 0.12);
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* FEATURES BAR */
.features-bar-container { padding: 0 5%; margin-top: 0; margin-bottom: 0; }
.features-bar { 
    display: flex; 
    align-items: center; 
    justify-content: flex-start;
    padding: 14px 0; 
    border-top: 1px solid rgba(197, 160, 89, 0.15); 
    border-bottom: 1px solid rgba(197, 160, 89, 0.15); 
    overflow-x: auto; 
    scrollbar-width: none; 
    gap: 0;
    -webkit-overflow-scrolling: touch;
}
.features-bar::-webkit-scrollbar { display: none; }
.feature-item { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    min-width: max-content;
    flex-shrink: 0;
    padding: 0 16px;
    border-right: 1px solid rgba(197, 160, 89, 0.15);
}
.feature-item:first-child { padding-left: 0; }
.feature-item:last-child { border-right: none; padding-right: 0; }
.feature-item svg { 
    color: var(--primary); 
    flex-shrink: 0; 
    width: 20px;
    height: 20px;
}
.feature-text { 
    display: flex; 
    flex-direction: column; 
    gap: 1px; 
}
.feature-text h4 { 
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem; 
    font-weight: 700; 
    color: var(--coffee-dark); 
    margin: 0; 
    letter-spacing: 0.2px;
}
.feature-text p { 
    font-size: 0.68rem; 
    font-weight: 400; 
    color: var(--text-muted); 
    margin: 0; 
}

@media (min-width: 1024px) {
    .features-bar {
        justify-content: space-between;
        gap: 0;
    }
    .feature-item { padding: 0 12px; }
    .feature-item:first-child { padding-left: 0; }
    .feature-item:last-child { padding-right: 0; }
    .feature-item svg { width: 20px; height: 20px; }
    .feature-text h4 { font-size: 0.78rem; }
    .feature-text p { font-size: 0.68rem; }
}

@media (min-width: 1280px) {
    .features-bar { gap: 30px; }
    .feature-item svg { width: 26px; height: 26px; gap: 14px; }
    .feature-text h4 { font-size: 0.9rem; }
    .feature-text p { font-size: 0.8rem; }
}

/* CATEGORIES */
.categories { padding:16px; overflow-x:auto; -webkit-overflow-scrolling:touch; }
.categories-inner { display:flex; gap:24px; justify-content:center; min-width:max-content; padding:0 16px; }
.cat-item { display:flex; flex-direction:column; align-items:center; gap:10px; cursor:pointer; transition:all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-decoration:none; color:var(--text-dark); }
.cat-item:hover { transform:translateY(-8px); }
.cat-img { width:76px; height:72px; border-radius:30% 70% 70% 30% / 30% 30% 70% 70%; overflow:hidden; border:2px solid var(--primary-light); box-shadow:var(--shadow-md); background:linear-gradient(135deg,var(--white),var(--bg-warm)); }
.cat-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.cat-item:hover .cat-img img { transform: scale(1.15); }
.cat-label { font-size:0.75rem; font-weight:700; text-align:center; color: var(--coffee-dark); text-transform: uppercase; letter-spacing: 0.5px; }

/* ============================================================
   HERO SLIDER
   Layout: split — teks di kiri (bg gelap), gambar di kanan (penuh, tanpa crop)
   Mobile: gambar di atas, teks di bawah
   ============================================================ */

/* ── Wrapper ── */
.hero-slider {
    position: relative;
    width: 80%;
    margin: 30px auto;
    overflow: hidden;
    background: var(--coffee-dark);
    box-shadow: 0 4px 24px rgba(45, 27, 14, 0.18);
}
.hero-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent-gold), var(--primary));
    z-index: 11;
}

/* ── Slider container ── */
.slider-container {
    width: 100%;
    position: relative;
}

/* ── Setiap slide ── */
.slide {
    width: 100%;
    opacity: 0;
    transition: opacity 0.9s ease;
    display: flex;
    z-index: 1;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}

/* ── Overlay (mobile only) ── */
.banner-overlay {
    display: none;
}

/* ── Konten teks ── */
.banner-content {
    background: var(--coffee-dark);
    padding: 22px 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
}

/* ── Gambar ── */
.banner-img {
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.banner-img picture,
.banner-img img {
    display: block;
    width: 100%;
    height: 100%;
}
.banner-img img {
    object-fit: cover;
    object-position: top center;
}

/* ── Teks animasi ── */
.banner-disc {
    display: inline-block;
    background: rgba(197, 160, 89, 0.18);
    border: 1px solid rgba(197, 160, 89, 0.4);
    padding: 5px 14px;
    border-radius: 8px;
    color: #fff8ea;
    font-weight: 600;
    font-size: 0.78rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.slide.active .banner-disc { opacity: 1; transform: translateY(0); }

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 6vw, 1.9rem);
    color: #ffe6b2;
    font-weight: 800;
    font-style: italic;
    line-height: 1.2;
    margin: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.slide.active .banner-title { opacity: 1; transform: translateY(0); }

.banner-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    line-height: 1.55;
    margin: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.slide.active .banner-desc { opacity: 1; transform: translateY(0); }

.banner-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-gold) 100%);
    color: var(--coffee-dark);
    padding: 11px 24px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.78rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(197, 160, 89, 0.35);
    margin-top: -10px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s,
                background 0.25s, color 0.25s, box-shadow 0.25s;
}
.slide.active .banner-btn { opacity: 1; transform: translateY(0); }
.banner-btn:hover {
    background: #fff;
    color: var(--coffee-dark);
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.4) !important;
}

/* ── Fallback slide ── */
.slide.fallback .banner-img img {
    object-fit: contain;
    padding: 30px;
}

/* ── Slider controls ── */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 27, 14, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
    opacity: 0;
}
.hero-slider:hover .slider-btn { opacity: 1; }
.slider-btn:hover {
    background: var(--primary);
    color: var(--coffee-dark);
    transform: translateY(-50%) scale(1.08);
}
.prev-btn { left: 14px; }
.next-btn { right: 14px; }

.slider-indicators {
    position: absolute;
    bottom: 20px;
    right: 30px; /* Posisi indikator dipindah ke pojok agar lebih modern */
    left: auto;
    transform: none;
    display: flex;
    gap: 7px;
    z-index: 10;
}
.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot:hover { background: rgba(255, 255, 255, 0.75); }
.dot.active {
    background: var(--primary);
    width: 22px;
    border-radius: 10px;
}

/* ════════════════════════════════════════
   MOBILE (default, ≤768px)
   Layout: gambar penuh di atas, teks di bawah
   ════════════════════════════════════════ */
.slide {
    position: relative;
    flex-direction: column;
    height: auto;
}
.slide:not(.active) {
    position: absolute;
    inset: 0;
    height: 100%;
}
.slider-container {
    position: relative;
}

/* Gambar mobile: square aspect ratio, cover penuh */
.banner-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}
.banner-img img {
    object-fit: cover;
    object-position: center center;
}

/* Teks mobile */
.banner-content {
    width: 100%;
}

/* ════════════════════════════════════════
   DESKTOP (≥769px)
   Layout: teks kiri 42%, gambar kanan 58%
   ════════════════════════════════════════ */
@media (min-width: 769px) {
    .hero-slider {
        height: clamp(320px, 40vh, 420px);
    }
    .slider-container {
        height: 100%;
    }
    .slide {
        position: absolute;
        inset: 0;
        height: 100%;
        flex-direction: row;
        align-items: stretch;
    }
    .banner-content {
        width: 42%;
        flex-shrink: 0;
        padding: 0 3% 0 5%;
        justify-content: center;
        gap: 14px;
        background: var(--coffee-dark);
    }
    .banner-img {
        width: 58%;
        height: 100%;
        background: #f5f0e8;
    }
    .banner-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    .banner-title { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
    .banner-desc { font-size: 0.92rem; line-height: 1.6; }
    .banner-disc { font-size: 0.82rem; }
    .banner-btn { padding: 13px 28px; font-size: 0.85rem; }
    .slider-btn { display: flex; }
    .slider-indicators { left: calc(42% + 29%); }
}

/* ════════════════════════════════════════
   DESKTOP BESAR (≥1025px)
   ════════════════════════════════════════ */
@media (min-width: 1025px) {
    .hero-slider {
        height: clamp(360px, 45vh, 480px);
    }
    .banner-content {
        width: 40%;
        padding: 0 3% 0 6%;
        gap: 16px;
    }
    .banner-img {
        width: 60%;
    }
    .banner-title { font-size: clamp(1.8rem, 2.6vw, 2.4rem); line-height: 1.15; }
    .banner-desc { font-size: 1rem; }
    .banner-disc { font-size: 0.88rem; padding: 7px 16px; }
    .banner-btn { padding: 14px 34px; font-size: 0.9rem; }
}

/* ════════════════════════════════════════
   MOBILE KECIL (≤420px)
   ════════════════════════════════════════ */
@media (max-width: 420px) {
    .banner-content { padding: 18px 16px 24px; gap: 8px; }
    .banner-title { font-size: clamp(1.25rem, 6vw, 1.6rem); }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .slide.active .banner-img img, .slide.active .banner-title,
    .slide.active .banner-disc, .slide.active .banner-desc, .slide.active .banner-btn {
        transition-duration: 0.01ms !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
    .slide.active { opacity: 1; }
}

@media (max-width: 768px) {
    .top-bar {
        height: auto !important;
        min-height: 60px !important;
        flex-wrap: wrap !important;
        padding: 10px 5% !important;
        gap: 12px !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    .header-left {
        order: 1 !important;
        flex-shrink: 0 !important;
        gap: 12px !important;
        margin-right: 0 !important;
        flex: 1;
    }
    .top-bar .logo {
        width: auto !important;
        max-width: 180px !important;
        height: 58px !important;
        overflow: visible !important;
    }
    .top-bar .brand-logo {
        height: 50px !important;
        width: auto !important;
        max-width: 180px !important;
        object-fit: contain !important;
        object-position: left center !important;
        margin-left: 0 !important;
        transform: none !important;
        image-rendering: auto;
        image-rendering: -webkit-optimize-contrast;
    }
    .header-search {
        display: flex !important;
        order: 3 !important;
        width: 100% !important;
        flex: 0 0 100% !important;
        margin: 0 0 5px 0 !important;
    }
    .search-container-nav {
        max-width: 100% !important;
        height: 38px !important;
        border-radius: 8px !important;
        background: var(--bg-warm) !important;
        width: 100% !important;
    }
    .search-container-nav input {
        padding: 0 8px !important;
        font-size: 0.75rem !important;
        width: 100% !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        overflow: hidden !important;
    }
    .search-container-nav .search-btn {
        padding: 0 !important;
        height: 38px !important;
        width: 38px !important;
        min-width: 38px !important;
        border-radius: 0 8px 8px 0 !important;
    }
    .search-container-nav .search-btn svg {
        width: 14px !important;
        height: 14px !important;
    }
    .top-icons {
        order: 3 !important;
        flex-shrink: 0 !important;
        margin-left: 0 !important;
        gap: 2px !important;
    }
    .icon-btn {
        width: 32px !important;
        height: 32px !important;
    }
    .icon-btn svg {
        width: 18px !important;
        height: 18px !important;
    }
    .top-icons .icon-btn[aria-label="Wishlist"] {
        display: none !important; /* Sembunyikan wishlist di mobile agar search bar lebih lega */
    }
    .icon-badge {
        top: 2px !important;
        right: 2px !important;
        min-width: 15px !important;
        height: 15px !important;
        font-size: 0.55rem !important;
    }
    .hero-slider { margin: 15px 4%; border-radius: 24px; }
    .slider-btn {
        display: none;
    }
    .slider-indicators {
        bottom: 14px;
    }
}


.quick-tabs { 
    display: flex; 
    gap: 10px; 
    padding: 20px 5%; 
    overflow-x: auto; 
    scrollbar-width: none; 
    background: var(--white); 
    position: relative; 
    z-index: 900; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.02); 
    justify-content: flex-start;
}
.quick-tabs::-webkit-scrollbar { display: none; }
.tab-item { 
    position: relative;
    padding: 12px 28px; 
    background: var(--bg-cream); 
    border-radius: 14px; 
    white-space: nowrap; 
    font-size: 0.85rem; 
    font-weight: 600; 
    color: var(--coffee-dark); 
    cursor: pointer; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    border: 1.5px solid rgba(197, 160, 89, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    user-select: none;
}
.tab-item:hover { 
    background: var(--white); 
    border-color: rgba(197, 160, 89, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.12);
}
.tab-item:active {
    transform: scale(0.97);
}
.tab-item.active { 
    background: linear-gradient(135deg, var(--coffee-dark) 0%, var(--coffee) 100%);
    color: var(--primary-light); 
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(75, 54, 33, 0.25);
}
.tab-icon { 
    font-size: 1.05rem; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    color: var(--primary-dark);
    min-width: 16px;
}
.tab-item.active .tab-icon {
    transform: scale(1.15);
    color: var(--primary-light);
}
.tab-label {
    letter-spacing: 0.3px;
    font-weight: 700;
}

/* Tab Ripple Effect */
.tab-ripple {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.25) 0%, transparent 70%);
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}
.tab-ripple.animate {
    animation: tabRipple 0.6s ease-out forwards;
}
@keyframes tabRipple {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}


/* FLASH SALE */
.flash-header { display: flex; align-items: center; gap: 15px; padding: 24px 5% 8px; flex-wrap: wrap; }
.flash-badge { display: flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--coffee), var(--coffee-dark)); color: var(--primary); padding: 10px 22px; border-radius: 12px; font-weight: 800; font-size: 0.9rem; border: 1px solid var(--primary-dark); white-space: nowrap; }
.countdown { display: flex; align-items: center; gap: 6px; flex-wrap: nowrap; }
.countdown span:not(.sep) { background:var(--primary); color:var(--coffee-dark); padding:5px 10px; border-radius:8px; font-weight:800; font-size:0.9rem; min-width: 32px; text-align: center; display: inline-block; }
.countdown .sep { color:var(--coffee-dark); font-weight: 800; font-size: 1.1rem; }

/* AUTO SCROLLING PRODUCTS */
.products-scroll-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
.products-scroll {
    display: flex;
    gap: 20px;
    padding: 0 5%;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.products-scroll::-webkit-scrollbar {
    display: none;
}

/* PRODUCTS */
.products-scroll { display:flex; gap:24px; padding:12px 5% 28px; overflow-x:auto; scrollbar-width: none; }
.product-card { min-width:240px; max-width:260px; background:var(--white); border-radius:28px; overflow:hidden; box-shadow: 0 16px 38px rgba(75, 54, 33, 0.08); border: 1px solid rgba(197, 160, 89, 0.14); transition:all 0.35s cubic-bezier(0.22, 1, 0.36, 1); display: flex; flex-direction: column; position: relative; }
.product-card:hover { transform:translateY(-8px); box-shadow:0 24px 50px rgba(75, 54, 33, 0.16); border-color: rgba(197, 160, 89, 0.22); }
.product-thumb { position:relative; aspect-ratio: 1 / 1; overflow:hidden; background: var(--bg-cream); display: flex; align-items: center; justify-content: center; }
.product-thumb img { width:100%; height:100%; object-fit:cover; transition: transform 0.4s ease; }
.product-card:hover .product-thumb img { transform: scale(1.06); }
.product-action-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(45, 27, 14, 0.08), rgba(45, 27, 14, 0.24));
    padding: 18px 16px 16px;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(100%);
}
.product-card:hover .product-action-overlay {
    transform: translateY(0);
    opacity: 1;
}
.btn-quick-add {
    background: var(--coffee-dark);
    color: var(--primary-light);
    border: none;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(75, 54, 33, 0.16);
}
.btn-quick-add:hover {
    background: var(--primary);
    color: var(--coffee-dark);
}
.disc-badge { position:absolute; top:16px; left:16px; background: linear-gradient(135deg, var(--coffee-dark), var(--coffee)); color: var(--primary-light); padding:7px 14px; border-radius: 999px; font-size:0.72rem; font-weight:700; z-index:2; box-shadow: 0 10px 20px rgba(75,54,33,0.12); }
.product-info { padding:18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-name { font-size:1rem; font-weight:700; color:var(--coffee-dark); line-height: 1.4; min-height: 3.2rem; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; }
.product-price { font-size:1.18rem; font-weight:800; color:var(--coffee); margin-top: auto; display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.product-price-old { font-size: 0.76rem; font-weight: 500; color:var(--text-muted); text-decoration: line-through; opacity: 0.72; }
.product-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; font-size: 0.77rem; color: var(--text-muted); gap: 8px; flex-wrap: wrap; }
.product-rating { color: var(--primary-dark); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.star-icon { vertical-align: middle; width: 14px; height: 14px; }
.product-location { display: inline-flex; align-items: center; gap: 4px; }

/* SECTION TITLE */
.section-title { padding: 40px 5% 12px; text-align: center; }
.section-title h2 { 
    font-family:'Playfair Display',serif; 
    font-size: 1.6rem; 
    font-weight: 700; 
    color: var(--coffee-dark); 
    margin-bottom: 6px;
}
.section-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* CATEGORIES (Static Premium Nav) */
.categories { padding:30px 16px; background:var(--white); border-bottom:1px solid rgba(197, 160, 89, 0.1); }
.categories-inner { display:flex; gap:12px; justify-content:center; overflow-x:auto; padding:10px 0; scrollbar-width: none; }
.categories-inner::-webkit-scrollbar { display:none; }
.cat-item { display:flex; flex-direction:column; align-items:center; gap:12px; min-width:100px; text-decoration:none; transition:all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.cat-item:hover { transform:translateY(-8px); }
.cat-img { 
    width:85px; 
    height:85px; 
    border-radius:24px; 
    overflow:hidden; 
    border:2px solid rgba(197, 160, 89, 0.3); 
    box-shadow: 0 4px 15px rgba(75, 54, 33, 0.08); 
    background:var(--bg-warm); 
    transition: all 0.3s; 
}
.cat-item:hover .cat-img { border-color: var(--primary); box-shadow: 0 8px 25px rgba(197, 160, 89, 0.2); }
.cat-img img { width:100%; height:100%; object-fit:cover; }
.cat-label { font-size:0.8rem; font-weight:800; color:var(--coffee-dark); text-transform: uppercase; letter-spacing: 0.8px; }

/* REMOVE FLOATING NAV */
.bottom-nav { display: none !important; }
.bottom-spacer { height:0 !important; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .accent-bar { padding: 6px 15px; }
    .accent-marquee { font-size: 0.65rem; gap: 12px; }
    
    .top-bar { height: 60px; padding: 0 4%; }
    .header-left { height: 60px; gap: 8px; }
    /* Logo rasio 1000x400 = 2.5:1. height 44px → width butuh ~110px */
    .top-bar .logo {
        width: auto !important;
        height: 44px !important;
        overflow: visible !important;
        flex-shrink: 0 !important;
    }
    .top-bar .logo picture {
        display: flex !important;
        align-items: center !important;
        height: 44px !important;
        overflow: visible !important;
    }
    .top-bar .brand-logo {
        height: 44px !important;
        width: auto !important;
        max-width: 220px !important;
        min-width: 110px !important;
        object-fit: contain !important;
        object-position: left center !important;
        margin-left: 0 !important;
        transform: none !important;
    }

    .desktop-nav { display: none !important; }
    .mobile-menu-btn { display: flex; }
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }
    .search-bar.mobile-only { display: block !important; }
}

/* Print: sembunyikan hamburger & mobile nav */
@media print {
    .mobile-menu-btn, .site-mobile-menu-btn { display: none !important; }
    .mobile-nav-overlay { display: none !important; }
    .desktop-nav { display: flex !important; }
}

/* Hide mobile overlay completely on desktop */
@media (min-width: 769px) {
    .mobile-nav-overlay { display: none !important; }
}

@media (max-width: 768px) {
    
    /* MOBILE NAVIGATION SIDEBAR */
    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(45, 27, 14, 0.4);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 2000;
        display: flex;
        justify-content: flex-start;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .mobile-nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
    .mobile-nav-content {
        background: var(--bg-cream);
        width: 80%;
        max-width: 320px;
        height: 100vh;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        padding: 24px 24px 32px;
        display: flex;
        flex-direction: column;
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    }
    .mobile-nav-overlay.active .mobile-nav-content {
        transform: translateX(0);
    }
    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 28px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    }
    .mobile-logo {
        height: 56px;
        width: auto;
        max-width: 160px;
        object-fit: contain;
        object-position: left center;
    }
    .close-menu {
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--coffee-dark);
        cursor: pointer;
        padding: 0;
        line-height: 1;
    }
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .mobile-nav-links a {
        text-decoration: none;
        color: var(--coffee-dark);
        font-size: 1.05rem;
        font-weight: 600;
        padding: 12px 16px;
        border-radius: 10px;
        transition: background 0.2s;
    }
    .mobile-nav-links a:hover {
        background: rgba(197, 160, 89, 0.08);
    }
    .mobile-dropdown-btn {
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--coffee-dark);
        padding: 12px 16px;
        border-radius: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
        transition: background 0.2s;
    }
    .mobile-dropdown-btn:hover {
        background: rgba(197, 160, 89, 0.08);
    }
    .mobile-dropdown-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        display: flex;
        flex-direction: column;
        padding-left: 12px;
        gap: 2px;
    }
    .mobile-dropdown-content.show {
        max-height: 250px;
    }
    .mobile-dropdown-content a {
        font-size: 0.95rem;
        font-weight: 500;
        padding: 10px 16px;
        border-radius: 8px;
        color: var(--text-muted);
    }
    .mobile-dropdown-content a:hover {
        background: rgba(197, 160, 89, 0.06);
    }
    .mobile-dropdown-btn svg {
        transition: transform 0.3s;
    }
    .mobile-dropdown-btn.active svg {
        transform: rotate(180deg);
    }
    .mobile-login-btn {
        background: var(--primary);
        color: var(--coffee-dark) !important;
        padding: 14px;
        border-radius: 12px;
        text-align: center;
        margin-top: 12px;
        font-weight: 700 !important;
        box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    }
    
    .top-bar { min-height: 65px; padding: 0 15px; }
    
    .icon-btn { width: 36px; height: 36px; border-radius: 10px; }
    .icon-btn svg { width: 18px; height: 18px; }
    .icon-badge { top: 2px; right: 2px; min-width: 16px; height: 16px; font-size: 0.55rem; }
    .top-icons { gap: 4px; }
    
    .search-bar { padding: 10px 15px; width: 100%; box-sizing: border-box; }
    .search-container { padding: 5px; border-radius: 12px; display: flex; align-items: center; width: 100%; box-sizing: border-box; }
    .search-icon-box { padding: 0 8px; flex-shrink: 0; }
    .search-container input { font-size: 0.85rem; flex: 1; min-width: 0; padding: 8px 5px; }
    .search-btn { padding: 0 12px; font-size: 0.75rem; height: 36px; white-space: nowrap; flex-shrink: 0; }
    
    .banner { margin: 10px; min-height: 180px; border-radius: 16px; }

    .quick-tabs { padding: 15px 10px; flex-wrap: wrap; justify-content: center; overflow: visible; }
    .tab-item { padding: 8px 14px; font-size: 0.75rem; gap: 6px; flex: 1 1 40%; min-width: 130px; justify-content: center; }

    .flash-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    
    .products-scroll { 
        display: grid !important; 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 12px !important; 
        padding: 10px !important;
        animation: none !important;
        width: 100% !important;
    }
    .product-card { min-width: 0 !important; max-width: none !important; }
    .product-thumb { aspect-ratio: 1/1; }
    .product-info { padding: 10px; gap: 4px; }
    .product-name { font-size: 0.75rem; height: 2.1rem; }
    .product-price { font-size: 0.9rem; }
    
    .footer-container { 
        grid-template-columns: 1fr; 
        gap: 40px; 
        text-align: center; 
    }
    .footer-brand { align-items: center; }
    .footer-links-group { flex-direction: column; gap: 40px; justify-content: center; text-align: center; }
    .footer-column h4::after { left: 50%; transform: translateX(-50%); }
    .footer-payments { align-items: center; }
    .payment-icons { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .top-bar { height: 64px; padding: 0 3%; }
    .top-bar .brand-logo { height: 56px; width: auto; max-width: 220px; object-fit: contain; object-position: left center; }
    .header-left { height: 64px; padding: 0 14px; }
    .desktop-nav { gap: 2px; }
    .desktop-nav a { font-size: 0.78rem; padding: 6px 10px; }
    .top-icons { gap: 4px; }
    .icon-btn { width: 36px; height: 36px; }
    .icon-btn svg { width: 17px; height: 17px; }
    .icon-badge { top: 2px; right: 2px; min-width: 15px; height: 15px; font-size: 0.55rem; border-width: 1.5px; }
    .banner { min-height: 240px; margin: 15px 3%; }
    .products-scroll { 
        display: grid !important; 
        grid-template-columns: repeat(3, 1fr) !important; 
        gap: 15px !important;
        animation: none !important;
        width: 100% !important;
    }
    .footer-container { gap: 40px; }
}

@media (min-width: 1025px) {
    .banner { min-height:350px; }
    .products-scroll { 
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
        animation: none !important;
        width: 100% !important;
    }
    .product-card { min-width: 0 !important; max-width: none !important; }
}

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse { 0%,100% { transform:scale(1); } 50% { transform:scale(1.05); } }
.animate-in { animation:fadeInUp 0.6s ease-out forwards; }
.flash-badge { animation:pulse 2s infinite; }

/* Hide desktop nav on mobile */
/* FOOTER */
.site-footer { background: linear-gradient(180deg, var(--coffee-dark) 0%, #1a1008 100%); padding: 80px 5% 40px; border-top: 3px solid var(--primary); margin-top: 0; color: var(--bg-cream); }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 60px; }
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-brand .logo { 
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: auto !important; 
    width: auto !important; 
    background: none !important; 
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}
.footer-logo { 
    height: 80px !important; 
    width: auto !important;
    max-width: 280px !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    display: block !important;
    mix-blend-mode: screen !important;
}
.footer-brand .logo picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 280px;
    overflow: visible;
}
.footer-desc { font-size: 0.88rem; line-height: 1.8; color: rgba(250, 247, 242, 0.65); max-width: 300px; }
.footer-socials { display: flex; gap: 16px; margin-top: 5px; }
.footer-socials a { font-size: 0.8rem; font-weight: 600; text-decoration: none; color: var(--primary); transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.footer-socials a:hover { color: var(--white); transform: translateY(-2px); }
.footer-links-group { display: flex; gap: 50px; justify-content: flex-start; }
.footer-column h4 { font-family:'Playfair Display',serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 28px; color: var(--primary); letter-spacing: 0.5px; position: relative; padding-bottom: 12px; }
.footer-column h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary); }
.footer-column ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-column ul a { text-decoration: none; font-size: 0.88rem; color: rgba(250, 247, 242, 0.7); font-weight: 400; transition: all 0.3s; white-space: nowrap; display: block; }
.footer-column ul a:hover { color: var(--primary); transform: translateX(4px); }
.footer-payments { display: flex; flex-direction: column; gap: 24px; }
.payment-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.payment-icon { padding: 8px 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(197, 160, 89, 0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; color: var(--primary-light); transition: all 0.3s; letter-spacing: 0.5px; }
.payment-icon:hover { background: rgba(197, 160, 89, 0.08); border-color: var(--primary); transform: translateY(-2px); }
.footer-bottom { max-width: 1200px; margin: 50px auto 0; padding-top: 24px; border-top: 1px solid rgba(250, 247, 242, 0.08); display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(250, 247, 242, 0.45); }

/* RESPONSIVE FOOTER */
@media (min-width: 768px) {
    .site-footer {
        padding: 80px 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 80px;
    }
    
    .footer-links-group {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        gap: 80px;
    }
}

/* NEWSLETTER */
.newsletter-section { 
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%); 
    padding: 80px 20px; 
    text-align: center; 
    margin-top: 40px;
    position: relative;
}
.newsletter-container { max-width: 520px; margin: 0 auto; }
.newsletter-container h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 12px; color: var(--coffee-dark); font-weight: 700; }
.newsletter-container p { color: var(--text-muted); margin-bottom: 32px; font-size: 0.92rem; line-height: 1.6; }
.newsletter-form { display: flex; gap: 0; background: white; padding: 6px; border-radius: 14px; box-shadow: 0 4px 20px rgba(75, 54, 33, 0.06); border: 1px solid rgba(197, 160, 89, 0.15); }
.newsletter-form input { flex: 1; border: none; outline: none; padding: 0 20px; font-family: 'Inter', sans-serif; background: transparent; font-size: 0.9rem; }
.newsletter-form input::placeholder { color: rgba(75, 54, 33, 0.3); }
.newsletter-form button { background: var(--coffee-dark); color: var(--primary); border: none; padding: 14px 28px; border-radius: 10px; font-weight: 700; cursor: pointer; transition: all 0.3s; font-size: 0.85rem; letter-spacing: 0.3px; }
.newsletter-form button:hover { background: var(--primary); color: var(--coffee-dark); }

@media (max-width: 768px) {
    .site-footer { padding: 50px 20px 30px; }
    .footer-container { 
        grid-template-columns: 1fr; 
        gap: 50px; 
        text-align: center; 
    }
    .footer-brand { align-items: center; }
    .footer-links-group { flex-direction: column; gap: 40px; justify-content: center; align-items: center; text-align: center; }
    .footer-column h4::after { left: 50%; transform: translateX(-50%); }
    .footer-payments { align-items: center; }
    .payment-icons { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
    .newsletter-section { padding: 50px 15px; }
    .newsletter-form { flex-direction: column; background: transparent; box-shadow: none; border: none; padding: 0; gap: 10px; }
    .newsletter-form input { background: white; padding: 15px 20px; border-radius: 10px; border: 1px solid rgba(197, 160, 89, 0.2); }
    .newsletter-form button { width: 100%; }
}

/* FLOATING CUSTOMER SERVICE WIDGET */
.floating-help {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.floating-help-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--coffee-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(45, 27, 14, 0.3);
    transition: transform 0.2s;
    position: relative;
}
.floating-help-btn:hover {
    transform: scale(1.06);
}
.floating-help-btn svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
    stroke: none;
}
.floating-help-label {
    background: var(--coffee-dark);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}
.floating-help:hover .floating-help-label {
    opacity: 1;
}
.floating-help-popup {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    overflow: hidden;
    display: none;
    flex-direction: column;
}
.floating-help-popup.active {
    display: flex;
    animation: popupIn 0.2s ease;
}
@keyframes popupIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
.floating-help-popup .popup-header {
    background: var(--coffee-dark);
    color: var(--primary);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.floating-help-popup .popup-header h4 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
}
.floating-help-popup .popup-header button {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.5;
    transition: opacity 0.15s;
}
.floating-help-popup .popup-header button:hover {
    opacity: 1;
}
.floating-help-popup .popup-body {
    padding: 12px 16px;
    overflow-y: auto;
    max-height: 340px;
}
.popup-cs-intro {
    font-size: 0.78rem;
    color: #888;
    line-height: 1.5;
    margin: 0 0 10px 0;
}
.popup-cs-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s;
    margin-bottom: 4px;
}
.popup-cs-card:last-child {
    margin-bottom: 0;
}
.popup-cs-card:hover {
    background: #f5f0eb;
}
.popup-cs-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.popup-cs-icon svg {
    width: 20px;
    height: 20px;
    stroke: none;
    fill: #fff;
    stroke-width: 0;
}
.popup-cs-info {
    flex: 1;
    min-width: 0;
}
.popup-cs-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.82rem;
    margin-bottom: 1px;
}
.popup-cs-number {
    font-size: 0.73rem;
    color: #999;
}
.popup-cs-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    flex-shrink: 0;
}
.popup-cs-badge.online {
    background: #e6f7ee;
    color: #16a34a;
}
.popup-cs-badge.offline {
    background: #f0f0f0;
    color: #aaa;
}
.popup-cs-card.offline {
    opacity: 0.6;
}
.popup-cs-card.offline .popup-cs-name {
    color: #aaa;
}
.popup-cs-card.offline .popup-cs-icon {
    background: #b2dfb2;
}
.floating-help-popup .popup-footer {
    padding: 8px 16px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #faf8f5;
}
.floating-help-popup .popup-footer svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--primary-dark);
    stroke-width: 2;
    flex-shrink: 0;
}
.floating-help-popup .popup-footer span {
    font-size: 0.72rem;
    color: #999;
}
.floating-help-popup .popup-footer a {
    color: var(--coffee-dark);
    font-weight: 600;
    text-decoration: none;
    margin-left: auto;
    font-size: 0.72rem;
    transition: color 0.15s;
}
.floating-help-popup .popup-footer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
.help-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.2);
    z-index: 9998;
    display: none;
}
.help-overlay.active {
    display: block;
}

@media (max-width: 600px) {
    .floating-help {
        bottom: 12px;
        right: 12px;
    }
    .floating-help-btn {
        width: 44px;
        height: 44px;
    }
    .floating-help-btn svg {
        width: 20px;
        height: 20px;
    }
    .floating-help-popup {
        width: calc(100vw - 24px);
        bottom: 56px;
        right: -4px;
    }
}

/* TOAST NOTIFICATION */
.toast-notification { position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--coffee-dark); color: var(--primary); padding: 12px 30px; border-radius: 50px; font-size: 0.9rem; font-weight: 700; box-shadow: 0 10px 30px rgba(0,0,0,0.3); z-index: 10000; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); opacity: 0; pointer-events: none; border: 1px solid var(--primary); }
.toast-notification.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* DROPDOWN PREMIUM */
.nav-item.dropdown { position: relative; }
.dropdown-menu { 
    position: absolute; 
    top: calc(100% + 8px); 
    left: 50%; 
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 260px; 
    border-radius: 16px; 
    box-shadow: 0 20px 50px rgba(75, 54, 33, 0.12), 0 0 0 1px rgba(197, 160, 89, 0.1); 
    display: none; 
    padding: 12px; 
    z-index: 2000; 
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown-right {
    left: auto;
    right: 0;
    transform: translateY(10px);
}
/* Invisible bridge to prevent hover loss */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    height: 20px;
    background: transparent;
}
.dropdown:hover .dropdown-menu { 
    display: block; 
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.dropdown:hover .dropdown-right {
    transform: translateY(0);
}
.dropdown-header {
    padding: 8px 14px 12px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    margin-bottom: 8px;
}
.dropdown-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dropdown-item { 
    display: flex; 
    align-items: center;
    gap: 14px;
    padding: 10px 12px; 
    text-decoration: none; 
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown-item:hover { 
    background: rgba(197, 160, 89, 0.08); 
    transform: translateX(5px);
}
.dropdown-img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-warm);
    border: 1px solid rgba(197, 160, 89, 0.2);
    flex-shrink: 0;
}
.dropdown-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.dropdown-item:hover .dropdown-img img {
    transform: scale(1.15);
}
.dropdown-icon-only {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    border: 1px solid rgba(197, 160, 89, 0.2);
    color: var(--primary-dark);
    flex-shrink: 0;
    transition: all 0.4s ease;
}
.dropdown-item:hover .dropdown-icon-only {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}
.dropdown-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.dropdown-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--coffee-dark);
    transition: color 0.3s;
}
.dropdown-item:hover .dropdown-title {
    color: var(--primary-dark);
}
.dropdown-desc {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* FOOTER SOCIAL ICONS */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-warm);
    color: var(--primary-dark);
    border: 1px solid rgba(197, 160, 89, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}
.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
    border-color: var(--primary);
}

/* WHATSAPP CLUB BUTTON */
.btn-wa-club {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366; /* Official WhatsApp Green */
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}
.btn-wa-club:hover {
    background: #1EBE5D;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    color: white;
}

/* ELEGANT PROMO BANNER */
.promo-banner-section {
    margin: 40px auto;
    padding: 0 5%;
}
.promo-banner-section + .promo-banner-section {
    margin-top: 50px;
}
.elegant-banner {
    display: flex;
    background: var(--bg-cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(75, 54, 33, 0.08);
    min-height: 280px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    margin: 0 auto;
    max-width: 1200px;
}
.banner-text-content {
    flex: 1;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.elegant-banner .banner-subtitle {
    color: var(--primary-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}
.elegant-banner .banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--coffee-dark);
    font-style: normal;
    line-height: 1.2;
    margin-bottom: 15px;
    opacity: 1;
    transform: none;
}
.elegant-banner .banner-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 90%;
    opacity: 1;
    transform: none;
}
.elegant-banner .banner-action {
    align-self: flex-start;
    display: inline-block;
    padding: 12px 28px;
    background: var(--coffee-dark);
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 0.9rem;
    border: 1px solid var(--coffee-dark);
}
.elegant-banner .banner-action:hover {
    background: var(--primary);
    color: var(--coffee-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
    border-color: var(--primary);
}
.banner-image-content {
    flex: 1.2;
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    background: var(--bg-warm);
}
.banner-image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s ease;
}
.elegant-banner:hover .banner-image-content img {
    transform: scale(1.05);
}

/* Reverse layout for the second banner */
.elegant-banner.reverse {
    flex-direction: row-reverse;
}
.elegant-banner.reverse .banner-image-content {
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}
.elegant-banner.reverse .banner-text-content {
    align-items: flex-end;
    text-align: right;
    padding-left: 30px;
}
.elegant-banner.reverse .banner-desc {
    margin-left: auto;
    margin-right: 0;
}
.elegant-banner.reverse .banner-action {
    align-self: flex-end;
}

@media (max-width: 768px) {
    .elegant-banner {
        flex-direction: column !important;
        height: auto;
    }
    .banner-image-content {
        height: 250px;
        clip-path: none !important;
        order: -1;
    }
    .banner-text-content {
        padding: 30px 20px;
        text-align: center !important;
        align-items: center !important;
    }
    .elegant-banner .banner-desc {
        margin: 0 auto 20px !important;
    }
    .elegant-banner .banner-action {
        align-self: center !important;
    }
    .elegant-banner .banner-title {
        font-size: 1.8rem;
    }
}



/* PERFORMANCE: Optimize slider animations */
.slide {
    will-change: opacity;
}

/* PERFORMANCE: Prevent picture elements from causing layout shifts */
picture {
    display: contents;
}
.product-thumb picture > img,
.banner-image-content picture > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PERFORMANCE: content-visibility for below-fold sections */
.quick-tabs,
.flash-header,
.products-scroll-container,
.promo-banner-section,
.section-title,
.newsletter-section,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 200px;
}

/* ACCESSIBILITY: Focus indicators */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ACCESSIBILITY: Skip to content */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coffee-dark);
    color: var(--primary-light);
    padding: 12px 24px;
    border-radius: 0 0 12px 12px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10000;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-to-content:focus {
    top: 0;
}

/* ACCESSIBILITY: Improved contrast for muted text */
.feature-text p,
.product-meta,
.section-subtitle,
.footer-desc,
.elegant-banner .banner-desc,
.banner-desc.elegant,
.text-muted {
    color: #5A4D42;
}

/* ACCESSIBILITY: Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* PERFORMANCE: Optimize slider animations */
.slide {
    will-change: opacity;
}
