/* ============================================
   WHEELERSFOOD - Hybrid Cloud Kitchen Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --wf-primary: #d10000;
    --wf-primary-dark: #a30000;
    --wf-primary-light: #ff4444;
    --wf-yellow: #fabb00;
    --wf-yellow-light: #ffd54f;
    --wf-text-green: #388e3c;
    --wf-dark: #222222;
    --wf-bg: #ffffff;
    --wf-white: #ffffff;
    --wf-gray-50: #fafafa;
    --wf-gray-100: #f0f0f0;
    --wf-gray-200: #e0e0e0;
    --wf-gray-300: #bdbdbd;
    --wf-gray-400: #9e9e9e;
    --wf-gray-500: #757575;
    --wf-gray-600: #616161;
    --wf-gray-700: #555555;
    --wf-gray-800: #333333;
    --wf-veg: #008000;
    --wf-success: #0f8a4f;
    --wf-warning: #e8a317;
    --wf-danger: #cc0000;
    --wf-shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --wf-shadow-sm: 0 2px 5px rgba(0,0,0,0.08);
    --wf-shadow: 0 4px 9px rgba(0,0,0,0.1);
    --wf-shadow-md: 0 6px 12px rgba(0,0,0,0.12);
    --wf-shadow-lg: 0 10px 20px rgba(0,0,0,0.14);
    --wf-radius-sm: 8px;
    --wf-radius: 12px;
    --wf-radius-lg: 16px;
    --wf-radius-xl: 20px;
    --wf-radius-full: 9999px;
    --wf-transition: all 0.2s ease;
}

/* ============ RIPPLE ============ */
@keyframes wf-ripple {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

.wf-btn, .wf-card-add, .wf-menu-item-add, .wf-diet-btn,
.wf-menu-pill, .wf-cat-pill, .wf-sticky-cart-btn,
.wf-checkout-btn, .wf-auth-link.signup, .wf-cart-pill {
    position: relative;
}

.wf-btn::after, .wf-card-add::after, .wf-menu-item-add::after,
.wf-diet-btn::after, .wf-menu-pill::after, .wf-cat-pill::after,
.wf-sticky-cart-btn::after, .wf-checkout-btn::after,
.wf-auth-link.signup::after, .wf-cart-pill::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.35);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    opacity: 0;
}

.wf-btn:active::after, .wf-card-add:active::after, .wf-menu-item-add:active::after,
.wf-diet-btn:active::after, .wf-menu-pill:active::after, .wf-cat-pill:active::after,
.wf-sticky-cart-btn:active::after, .wf-checkout-btn:active::after,
.wf-auth-link.signup:active::after, .wf-cart-pill:active::after {
    animation: wf-ripple 0.5s ease-out;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: #fcfcfc;
    color: var(--wf-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 50px;
    margin: 0;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--wf-gray-300); border-radius: 3px; }

/* ============ TOP BAR ============ */
.wf-topbar {
    background: var(--wf-primary);
    color: white;
    font-size: 0.75rem;
    padding: 6px 0;
}

.wf-topbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wf-topbar a { color: rgba(255,255,255,0.8); text-decoration: none; }
.wf-topbar a:hover { color: white; }

/* ============ HEADER (Premium Yellow Gradient) ============ */
.wf-header-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.wf-new-header {
    position: relative;
    width: 100%;
    overflow: visible;
}

.wf-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 135px;
    z-index: 0;
  }

/* ---- DESKTOP: centered premium layout ---- */
.wf-new-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 30px 0;
    position: relative;
    z-index: 2;
}

.wf-hamburger {
    display: none;
}

.wf-new-logo-link {
    display: block;
    text-decoration: none;
    flex-shrink: 0;
    align-self: flex-start;
    margin-bottom: -60px;
}

.wf-new-logo-badge {
    width: 200px;
    height: 200px;
    margin-top: 0;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.wf-new-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wf-new-brand-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 900;
    color: #6a6464;
    margin-top: -36px;
    line-height: 1.1;
    text-align: right;
}

.wf-new-brand-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin: 2px 0 0;
    text-align: right;
}

.wf-new-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.wf-new-header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px 10px 230px;
    position: relative;
    z-index: 2;
    margin-top: -15px;
    gap: 16px;
}

.wf-new-brand-text {
    text-align: left;
    flex-shrink: 0;
}

.wf-brand-mobile {
    display: none;
}

.wf-new-header-pills {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    flex: 1;
    flex-wrap: wrap;
    margin-top: -36px;
}

.wf-new-header-wave {
    position: relative;
    display: block;
    width: 100%;
    height: 30px;
    margin-top: 10px;
}

.wf-header-scallop {
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    max-width: 600px;
    height: 220px;
    pointer-events: none;
    z-index: 1;
}

/* Cart Link */
.wf-cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgb(207, 0, 0);
    border-radius: 50%;
    transition: background 0.2s;
}
.wf-cart-link:hover { background: rgb(180, 0, 0); }

.wf-cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--wf-primary);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

/* User Avatar */
.wf-user-avatar {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

/* Login Button */
.wf-login-btn {
    padding: 6px 18px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    background: rgb(207, 0, 0);
    color: white;
    transition: background 0.2s;
}
.wf-login-btn:hover { background: rgb(180, 0, 0); }
.wf-login-icon { display: none; }

/* Hamburger */
.wf-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.wf-hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.wf-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.wf-hamburger.open span:nth-child(2) { opacity: 0; }
.wf-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav Group */
.wf-nav-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hamburger Button */
.wf-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 28px;
    background: rgba(184, 3, 3, 0.904);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.wf-hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.wf-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.wf-hamburger.open span:nth-child(2) { opacity: 0; }
.wf-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.wf-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.wf-mobile-menu.open {
    display: block;
    opacity: 1;
}
.wf-mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 0;
}
.wf-mobile-menu.open .wf-mobile-menu-panel {
    right: 0;
}
.wf-mobile-menu-header {
    background: linear-gradient(135deg, #d4a843, #f2c94c);
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.wf-mobile-close-btn {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wf-mobile-menu-header img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
}
.wf-mobile-menu-header div {
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
}
.wf-mobile-menu-nav {
    padding: 12px 0;
}
.wf-mobile-menu-nav a,
.wf-mobile-menu-nav button {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.15s;
}
.wf-mobile-menu-nav a:hover,
.wf-mobile-menu-nav button:hover {
    background: #f9fafb;
}
.wf-mobile-menu-nav .wf-mobile-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 4px 20px;
}

@media (max-width: 768px) {
    * { line-height: 1.4; }
    .wf-header-wrapper {
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 1000;
    }
    .wf-header-bg {
        min-height: 120px;
    }
    .wf-new-header-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 9px 10px 0;
        gap: 6px;
        position: relative;
        z-index: 2;
    }
    .wf-hamburger {
        display: flex;
        flex-shrink: 0;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
    }
    .wf-new-logo-link {
        display: block;
        flex-shrink: 0;
        order: 0;
    }
    .wf-new-logo-badge {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
    }
    .wf-new-logo-badge img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .wf-brand-mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex: 1;
        margin-left: 0;
    }
    .wf-brand-mobile .wf-new-brand-title {
        font-size: 16px;
        color: #000;
        margin-top: 0;
        text-align: left;
    }
    .wf-brand-mobile .wf-new-brand-subtitle {
        font-size: 8px;
        margin: 2px 0 0;
        text-align: left;
    }
    .wf-new-header-bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0 10px 4px;
        position: relative;
        z-index: 2;
        gap: 2px;
    }
    .wf-new-header-bottom .wf-new-brand-text {
        display: none;
    }
    .wf-new-header-bottom .wf-new-brand-title {
        font-size: 20px;
        color: #5d5757;
        margin-top: 0;
        text-align: left;
        margin-left: 105px;

    }
    .wf-new-header-bottom .wf-new-brand-subtitle {
        font-size: 9px;
        margin: 1px 166px 0;
        text-align: right;
        line-height: 0.5;
      }
    .wf-new-header-pills {
        display: none;
    }
    .wf-tab-btn {
        flex-shrink: 0;
        padding: 5px 6px;
        border-radius: 12px;
        border: 2px solid rgba(255, 255, 255, 0);
        background: rgb(246,174,174);
        color: #1c0101;
        font-family: 'Inter', sans-serif;
        font-size: 7px !important;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    .wf-new-header-right {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }
    .wf-cart-link {
        width: 32px;
        height: 32px;
    }
    .wf-cart-link svg {
        width: 20px;
        height: 20px;
    }
    .wf-login-btn {
        padding: 4px 10px;
        font-size: 11px;
    }
    .wf-user-pill {
        padding: 4px 8px;
        font-size: 11px;
    }
    .wf-user-avatar {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    .wf-new-header-wave {
        height: 16px;
        margin-top: 6px;
    }
    .wf-header-scallop {
        width: 200px;
        height: 90px;
    }
    .wf-section-banner {
        position: relative;
        background: var(--wf-yellow);
        color: var(--wf-dark);
        font-family: 'Cinzel', serif;
        font-size: 15px;
        line-height: 37px;
        font-weight: 700;
        padding: 0px 25px 1px 0px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 270%;
        letter-spacing: -1.5px;
        text-transform: uppercase;
        border-radius: 0 700px 0 0;
        overflow: hidden;
        margin-top: 10px;
    }
    .wf-card-name { font-size: 14px; padding-top: 2px; margin-bottom: 1px; }
    .wf-card-price { font-size: 18px; }
    .wf-card-price .currency { font-size: 14px; }
    .wf-card-bottom { padding: 6px 10px; }
    .wf-card-add { padding: 5px 10px; font-size: 13px; border-radius: 16px; }
    .wf-card-price-inline { font-size: 14px; }
    .wf-card-price-inline .curr { font-size: 12px; }
    .wf-list-card { padding: 8px; }
    .wf-list-title { font-size: 13px; }
    .wf-list-header { margin-bottom: 4px; }
    .wf-list-img-box { margin-bottom: 4px; }
    .wf-veg-icon-inline { width: 14px; height: 14px; }
    .wf-veg-icon-inline::after { width: 6px; height: 6px; }
    .wf-product-specs { font-size: 10px; padding: 3px 6px; }
    .wf-product-specs p { margin: 0; padding: 0; line-height: 1.2; margin-bottom: 1px; }
    .wf-intro-banner { margin: 2px auto; padding: 0 10px; }
    .wf-hindi-text { font-size: 18px; font-weight: 500; color: #222222; line-height: 1.4; }
    .wf-green-tagline { font-size: 11px; margin-top: 3px; }
    .wf-footer-inner { padding: 32px 16px 20px; }
    .wf-footer-brand h3 { font-size: 1.1rem; }
    .wf-footer-brand p { font-size: 0.75rem; }
    .wf-footer-col h4 { font-size: 0.8rem; margin-bottom: 8px; }
    .wf-footer-col a { font-size: 0.75rem; padding: 2px 0; }
    .wf-footer-bottom { font-size: 0.7rem; padding-top: 14px; }
    .wf-sticky-cart-inner { padding: 10px 14px; }
    .wf-sticky-cart-total { font-size: 1rem; }
    .wf-sticky-cart-btn { padding: 8px 16px; font-size: 0.8rem; }
    .wf-container { padding: 0 10px; }
    .wf-inline-stepper { height: 32px; }
    .wf-stepper-minus, .wf-stepper-plus { width: 28px; font-size: 0.9rem; }
    .wf-stepper-qty { width: 24px; font-size: 0.75rem; }
}

.wf-nav-btn {
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    background-color: #800000;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--wf-transition);
}

.wf-nav-btn:hover { transform: translateY(-1px); background-color: #660000; }

.wf-nav-btn.btn-western {
    background-color: #800000;
    color: #ffffff;
}

.wf-nav-btn.btn-red {
    background-color: #800000;
    color: #ffffff;
}

.wf-nav-btn.active.btn-western {
    background-color: #660000;
    color: #ffffff;
}

.wf-nav-btn.active.btn-red {
    background-color: #660000;
    color: #ffffff;
}

/* Intro Banner */
.wf-intro-banner {
    text-align: center;
    max-width: 820px;
    margin: 41px auto;
    padding: 0 15px;
}

.wf-hindi-text {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    line-height: 1.4;
}

.wf-green-tagline {
    font-size: 13px;
    font-weight: 800;
    color: #2e7d32;
    margin-top: 5px;
}

/* ============ USER DROPDOWN & AUTH ============ */
.wf-user-dropdown { position: relative; }

.wf-user-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.7);
    border-radius: var(--wf-radius-full);
    font-size: 13px;
    color: var(--wf-dark);
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    transition: var(--wf-transition);
}

.wf-user-pill:hover { background: rgba(255,255,255,0.9); }

.wf-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: white;
    border-radius: var(--wf-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.16);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 9999;
    border: 1px solid var(--wf-gray-100);
}

.wf-user-dropdown.open .wf-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wf-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    text-decoration: none;
    color: var(--wf-gray-700);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--wf-transition);
    width: 100%;
    border: none;
    background: none;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    text-align: left;
}

.wf-dropdown-item:hover { background: var(--wf-gray-50); color: var(--wf-primary); }
.wf-dropdown-icon { font-size: 1rem; width: 22px; text-align: center; flex-shrink: 0; }
.wf-dropdown-divider { height: 1px; background: var(--wf-gray-100); margin: 4px 0; }
.wf-dropdown-logout { color: var(--wf-danger); }
.wf-dropdown-logout:hover { background: rgba(204,0,0,0.04); color: var(--wf-danger); }

/* ============ SECTION BANNER (Yellow rounded) ============ */
.wf-section-banner {
    position: relative;
    background: var(--wf-yellow);
    color: var(--wf-dark);
    font-family: 'Cinzel', serif;
    font-size: 20px;
    line-height: 37px;
    font-weight: 700;
    padding: 0px 25px 1px 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 23%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 0 700px 0 0;
    overflow: hidden;
}
.wf-section-banner-icon {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    max-height: 100%;
    object-fit: contain;
    z-index: 1;
}
.wf-banner-red {
    background: var(--wf-primary);
    color: #fff;
    border-radius: 0;
}
.wf-banner-red::before {
    text-shadow:
        -8px 8px 0 var(--wf-primary),
        8px -8px 0 var(--wf-primary);
}

/* ============ STICKY TABS BAR ============ */
.wf-tabs-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 6px 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: transparent;
    flex-wrap: nowrap;
}
.wf-tabs-bar::-webkit-scrollbar { display: none; }
.wf-tabs-label {
    flex-shrink: 0;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--wf-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    white-space: nowrap;
}
.wf-tabs-categories {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}
.wf-tabs-cat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--wf-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.wf-tabs-cat-link {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 20px;
    background: var(--wf-primary);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.wf-tabs-cat-link:hover {
    background: var(--wf-primary-dark);
}
.wf-tab-btn {
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.7);
    background: rgb(207, 0, 0);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.wf-tab-btn:hover,
.wf-tab-btn.active {
    background: #fff;
    color: rgb(207, 0, 0);
    border-color: rgb(207, 0, 0);
}
.wf-search-input {
    flex-shrink: 0;
    padding: 10px 16px;
    border-radius: 20px;
    border: 2px solid var(--wf-gray-200);
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--wf-dark);
    outline: none;
    min-width: 180px;
    transition: border-color 0.3s ease;
}
.wf-search-input:focus {
    border-color: var(--wf-primary);
}
.wf-search-input::placeholder {
    color: var(--wf-gray-400);
}


/* ============ INTRO / TAGLINE ============ */
.wf-intro {
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.wf-intro-text {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
}

.wf-tagline {
    color: #55b352;
    font-weight: 700;
    font-size: 14px;
    margin-top: 5px;
}

/* ============ CONTAINER ============ */
.wf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ============ MDB BUTTONS ============ */
.wf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--wf-radius-full);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--wf-transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.wf-btn:hover { transform: translateY(-1px); box-shadow: var(--wf-shadow-md); }

.wf-btn-red { background: var(--wf-primary); color: white; }
.wf-btn-red:hover { background: var(--wf-primary-dark); }
.wf-btn-primary { background: var(--wf-primary); color: white; }
.wf-btn-primary:hover { background: var(--wf-primary-dark); }
.wf-btn-white { background: white; color: var(--wf-primary); }
.wf-btn-white:hover { background: var(--wf-gray-50); }
.wf-btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.wf-btn-outline:hover { border-color: white; background: rgba(255,255,255,0.15); }
.wf-btn-ghost { background: transparent; color: var(--wf-primary); border: 2px solid var(--wf-primary); }
.wf-btn-ghost:hover { background: var(--wf-primary); color: white; }
.wf-btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.wf-btn-outline::after, .wf-btn-ghost::after { background: rgba(255,255,255,0.3); }
.wf-btn-ghost::after { background: rgba(204,0,0,0.2); }

/* ============ SECTIONS ============ */
.wf-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}

.wf-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.wf-section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--wf-dark);
    letter-spacing: 0.5px;
}

.wf-section-link {
    color: var(--wf-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

.wf-section-link:hover { text-decoration: underline; }

/* ============ DEALS CAROUSEL ============ */
.wf-deals-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 0 16px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.wf-deals-scroll::-webkit-scrollbar { display: none; }

.wf-deal-card {
    min-width: 280px;
    border-radius: var(--wf-radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: var(--wf-transition);
    scroll-snap-align: start;
    flex-shrink: 0;
}

.wf-deal-card:hover { transform: translateY(-3px); box-shadow: var(--wf-shadow-md); }
.wf-deal-card.deal-1 { background: linear-gradient(135deg, #ff6b35, var(--wf-primary)); }
.wf-deal-card.deal-2 { background: linear-gradient(135deg, #1b3c87, #2e5ecc); }
.wf-deal-card.deal-3 { background: linear-gradient(135deg, #0f8a4f, #28a745); }
.wf-deal-card.deal-4 { background: linear-gradient(135deg, var(--wf-yellow), #e8a317); }

.wf-deal-inner {
    padding: 24px 22px;
    color: white;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wf-deal-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: var(--wf-radius-full);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 10px;
}

.wf-deal-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; line-height: 1.2; }
.wf-deal-desc { font-size: 0.8rem; opacity: 0.8; }

.wf-deal-price { display: flex; align-items: baseline; gap: 8px; margin-top: 12px; }
.wf-deal-price .old { text-decoration: line-through; opacity: 0.5; font-size: 0.82rem; }
.wf-deal-price .new { font-size: 1.5rem; font-weight: 900; }

/* ============ CATEGORY PILLS ============ */
.wf-cats {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.wf-cats::-webkit-scrollbar { display: none; }

.wf-cat-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: var(--wf-radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
    transition: var(--wf-transition);
    border: 2px solid var(--wf-gray-200);
    color: var(--wf-gray-600);
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.wf-cat-pill:hover { border-color: var(--wf-primary); color: var(--wf-primary); }
.wf-cat-pill.active { background: var(--wf-primary); color: white; border-color: var(--wf-primary); }

/* ============ VEG / NON-VEG DIET DOT ============ */
.wf-diet-dot {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 2px solid;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.wf-diet-dot:hover { transform: none; }

.wf-diet-dot.veg { border-color: var(--wf-veg); background: rgba(0,128,0,0.04); }
.wf-diet-dot.veg::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--wf-veg); }
.wf-diet-dot.non-veg { border-color: var(--wf-primary); background: rgba(209,0,0,0.04); }
.wf-diet-dot.non-veg::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--wf-primary); }

/* ============ PRODUCT CARDS (Beautiful Redesign) ============ */
.wf-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.wf-card {
    background: none;
    border-radius: var(--wf-radius-lg);
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: none;
    border: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wf-primary), var(--wf-yellow), var(--wf-primary));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.wf-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(209,0,0,0.1), 0 12px 32px rgba(0,0,0,0.06);
    border-color: rgba(209,0,0,0.08);
}

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

.wf-card-top-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.wf-card:hover .wf-card-emoji { transform: none; }

.wf-card-img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0;
    background: linear-gradient(160deg, #fefefe, #f8f8f8);
    overflow: hidden;
}

.wf-card-img .wf-card-emoji { font-size: 4.5rem; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }

.wf-card-img .wf-card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    z-index: 2;
}

/* Veg badge on cards */
.wf-card-img::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 18px;
    height: 18px;
    border: 2px solid var(--wf-veg);
    border-radius: 3px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    z-index: 2;
}

.wf-card-img::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 8px;
    height: 8px;
    background: var(--wf-veg);
    border-radius: 50%;
    z-index: 3;
}

.wf-badge {
    padding: 4px 10px;
    border-radius: var(--wf-radius-full);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.wf-badge-stock { background: rgba(15,138,79,0.9); color: white; }
.wf-badge-preorder { background: rgba(232,163,23,0.9); color: white; }
.wf-badge-soldout { background: rgba(189,189,189,0.9); color: var(--wf-gray-600); }
.wf-badge-bestseller { background: rgba(209,0,0,0.9); color: white; }
.wf-badge-cat { background: rgba(0,0,0,0.5); color: white; backdrop-filter: blur(4px); }

.wf-card-body {
    padding: 4px 8px 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    width: 100%;
    align-items: center;
}

.wf-card-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--wf-primary);
    line-height: 1.3;
    padding-top: 4px;
    margin-bottom: 2px;
    text-align: center;
    letter-spacing: -0.3px;
}

a.wf-card-top-link:hover .wf-card-name { color: var(--wf-primary); }

.wf-card-desc {
    font-size: 0.76rem;
    color: var(--wf-gray-400);
    line-height: 1.4;
    text-align: center;
    padding: 0 4px;
}

.wf-delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--wf-gray-400);
    margin-top: 4px;
}

.wf-delivery-badge .icon { font-size: 0.8rem; }

/* Card bottom — price and button */
.wf-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 8px 12px;
    border-top: 1px solid var(--wf-gray-50);
    background: linear-gradient(180deg, transparent, rgba(250,251,252,0.5));
}

.wf-card-price {
    font-size: 20px;
    font-weight: 900;
    color: var(--wf-primary);
    letter-spacing: -0.5px;
}

.wf-card-price .currency {
    font-size: 18px;
    font-weight: 800;
    color: var(--wf-primary);
    letter-spacing: 0;
}

/* ADD button — modern gradient */
.wf-card-add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--wf-primary) 0%, #e80000 100%);
    color: white;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 3px 10px rgba(209,0,0,0.25);
    text-transform: uppercase;
    white-space: nowrap;
}

.wf-card-add:hover {
    background: linear-gradient(135deg, var(--wf-primary-dark) 0%, #b00000 100%);
    box-shadow: 0 6px 20px rgba(209,0,0,0.35);
}

.wf-card-add.preorder {
    background: linear-gradient(135deg, var(--wf-yellow) 0%, #e8a317 100%);
    box-shadow: 0 3px 10px rgba(232,163,23,0.25);
}

.wf-card-add.preorder:hover {
    background: linear-gradient(135deg, #e8a317 0%, #c8920f 100%);
    box-shadow: 0 6px 20px rgba(232,163,23,0.35);
}

.wf-card-add.disabled {
    background: linear-gradient(135deg, var(--wf-gray-200), var(--wf-gray-300));
    color: var(--wf-gray-400);
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}

/* Product specs below card */
.wf-product-specs {
    font-size: 11px;
    color: var(--wf-gray-500);
    line-height: 1.4;
    width: 100%;
    border-top: 1px dashed var(--wf-gray-100);
    padding: 4px 8px;
    margin-top: auto;
    background: none;
}
.wf-product-specs p { margin-bottom: 2px; }
.wf-product-specs strong { color: var(--wf-dark); }

/* ============ COMBO CARD VARIANT (Beautiful) ============ */
.wf-card.combo-card {
    border: none;
    background: linear-gradient(180deg, #fffdf5, #fff);
}

.wf-card.combo-card::before {
    background: linear-gradient(90deg, var(--wf-yellow), #ffd54f, var(--wf-yellow));
}

.wf-card.combo-card:hover {
    box-shadow: 0 8px 24px rgba(250,187,0,0.15), 0 12px 32px rgba(0,0,0,0.06);
    border-color: rgba(250,187,0,0.15);
}

.wf-card.combo-card .wf-card-name {
    margin-bottom: 8px;
    color: var(--wf-dark);
}

.wf-card-combo-box {
    border: none;
    border-radius: var(--wf-radius);
    overflow: hidden;
    margin: 0 12px 0;
    box-shadow: 0 2px 8px rgba(250,187,0,0.08);
    transition: box-shadow 0.3s ease;
}

.wf-card.combo-card:hover .wf-card-combo-box {
    box-shadow: 0 4px 16px rgba(250,187,0,0.15);
}

.wf-card-combo-box .wf-card-img {
    margin-bottom: 0;
    background: linear-gradient(160deg, #fffef7, #fef9e7);
}

.wf-card-combo-box .wf-card-bottom {
    padding: 10px 12px;
    background: linear-gradient(180deg, #fffcf0, #fff9e0);
}

/* ============ SUB-CATEGORY (Indo-Chinese) ============ */
.wf-sub-category {
    display: inline-block;
    background: url('../sub_category_background.png') center / cover no-repeat;
    color: var(--wf-primary-dark);
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 6px;
    margin: 12px 0 10px 0;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.wf-sub-category::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2));
    pointer-events: none;
}

/* ============ LIST GRID (Indo-Chinese cards — Beautiful) ============ */
.wf-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
}

.wf-list-card {
    background: white;
    padding: 10px;
    border-radius: var(--wf-radius);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.wf-list-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wf-primary), var(--wf-yellow));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.wf-list-card:hover {
    box-shadow: 0 8px 24px rgba(209,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    transform: translateY(-4px);
    border-color: rgba(209,0,0,0.06);
}

.wf-list-card:hover::before { opacity: 1; }

.wf-list-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.wf-list-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--wf-dark);
    margin: 0;
    letter-spacing: -0.2px;
}

.wf-veg-icon-inline {
    width: 18px;
    height: 18px;
    border: 2px solid var(--wf-veg);
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
}

.wf-veg-icon-inline::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--wf-veg);
    border-radius: 50%;
}

.wf-list-img-box {
    position: relative;
    width: 100%;
    border-radius: var(--wf-radius);
    overflow: hidden;
    margin-bottom: 6px;
    background: linear-gradient(160deg, #fefefe, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wf-list-emoji {
    font-size: 3.2rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wf-list-card:hover .wf-list-emoji {
    transform: none;
}

.wf-list-img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--wf-radius);
    transition: transform 0.4s ease;
}

.wf-list-card:hover .wf-list-img {
    transform: none;
}

.wf-card-img-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--wf-radius-sm);
}

.wf-card:hover .wf-card-img-photo {
    transform: none;
}

.wf-price-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 900;
    color: var(--wf-primary);
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    letter-spacing: -0.3px;
}

.wf-price-badge .curr {
    font-size: 11px;
    font-weight: 700;
}

.wf-list-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.wf-card-price-inline {
    font-size: 16px;
    font-weight: 800;
    color: var(--wf-primary);
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.wf-card-price-inline .curr {
    font-size: 20px;
    font-weight: 600;
    color:#797878;
}

/* Inline stepper */
.wf-inline-stepper {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--wf-primary);
    border-radius: var(--wf-radius-full);
    overflow: hidden;
    height: 36px;
}

.wf-stepper-minus, .wf-stepper-plus {
    width: 32px;
    height: 100%;
    border: none;
    background: transparent;
    color: var(--wf-primary);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wf-stepper-minus:hover, .wf-stepper-plus:hover { background: rgba(204,0,0,0.06); }
.wf-stepper-qty { width: 28px; text-align: center; font-size: 0.82rem; font-weight: 700; color: var(--wf-dark); line-height: 28px; }

/* ============ INDO-CHINESE DISH CARDS (testdrive style) ============ */
.wf-dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.wf-dish-card {
    padding: 10px;
}

.wf-dish-name {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.wf-dish-name small {
    color: #6a9b42;
    font-size: 12px;
    display: block;
}

.wf-dish-body {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.wf-round-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.wf-dish-right {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wf-dish-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--wf-primary);
}

.wf-diet-dot.inline-dot {
    position: relative;
    top: 0;
    right: 0;
}

/* ============ SUB CATEGORY TITLE ============ */
.wf-sub-category-title {
    color: var(--wf-primary);
    font-size: 22px;
    font-weight: 800;
    margin: 25px 0 15px 0;
    border-bottom: 2px solid var(--wf-yellow);
    display: inline-block;
}

.wf-sub-category-title .wf-highlight {
    background-color: var(--wf-yellow);
    padding: 0 5px;
    color: #111;
}

/* ============ FEATURES ROW ============ */
.wf-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--wf-gray-200);
    border-radius: var(--wf-radius-lg);
    overflow: hidden;
    max-width: 1060px;
    margin: 0 auto;
}

@media (max-width: 768px) { .wf-features { grid-template-columns: repeat(2, 1fr); } }

.wf-feature { background: white; padding: 28px 20px; text-align: center; }
.wf-feature .icon { font-size: 1.5rem; margin-bottom: 8px; }
.wf-feature h4 { font-size: 0.82rem; font-weight: 700; color: var(--wf-dark); margin-bottom: 3px; }
.wf-feature p { font-size: 0.75rem; color: var(--wf-gray-400); }

/* ============ PRODUCT MENU LAYOUT ============ */
.wf-menu-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 900px) { .wf-menu-layout { grid-template-columns: 1fr; } }

.wf-sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 24px 0;
    border-right: 1px solid var(--wf-gray-100);
    margin-right: 24px;
}

@media (max-width: 900px) {
    .wf-sidebar {
        position: static;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid var(--wf-gray-100);
        margin-right: 0;
        padding: 16px 0;
        display: flex;
        gap: 8px;
        overflow-x: auto;
    }
}

.wf-sidebar-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--wf-gray-400);
    padding: 0 16px 12px;
}

@media (max-width: 900px) { .wf-sidebar-title { display: none; } }

.wf-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--wf-gray-600);
    font-size: 0.88rem;
    font-weight: 500;
    border-right: 3px solid transparent;
    transition: var(--wf-transition);
    white-space: nowrap;
    border-radius: 0 var(--wf-radius-sm) var(--wf-radius-sm) 0;
}

@media (max-width: 900px) {
    .wf-sidebar-link {
        border-right: none;
        border-radius: var(--wf-radius-full);
        padding: 8px 16px;
        border: 2px solid var(--wf-gray-200);
        font-size: 0.82rem;
    }
}

.wf-sidebar-link:hover { color: var(--wf-primary); background: rgba(204,0,0,0.04); }
.wf-sidebar-link.active { color: var(--wf-primary); font-weight: 600; border-right-color: var(--wf-primary); background: rgba(204,0,0,0.04); }

@media (max-width: 900px) {
    .wf-sidebar-link.active { border-right: none; background: var(--wf-primary); color: white; border-color: var(--wf-primary); }
}

.wf-sidebar-emoji { font-size: 1.1rem; width: 24px; text-align: center; flex-shrink: 0; }

/* Menu content */
.wf-menu-content { padding: 24px 0 40px; min-width: 0; }

.wf-cat-section { margin-bottom: 32px; }

.wf-cat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--wf-gray-100);
    scroll-margin-top: 90px;
}

.wf-cat-header .emoji { font-size: 1.3rem; }
.wf-cat-header h2 { font-family: 'Cinzel', serif; font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--wf-dark); }
.wf-cat-header .count { font-size: 0.75rem; font-weight: 600; color: var(--wf-gray-400); background: var(--wf-gray-100); padding: 2px 10px; border-radius: var(--wf-radius-full); margin-left: auto; }

/* Menu list items */
.wf-menu-list { display: flex; flex-direction: column; gap: 8px; }

.wf-menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    background: white;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--wf-radius);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.wf-menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--wf-primary), var(--wf-yellow));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.wf-menu-item:hover {
    border-color: rgba(209,0,0,0.08);
    box-shadow: 0 6px 20px rgba(209,0,0,0.08), 0 3px 10px rgba(0,0,0,0.04);
    transform: translateY(-2px);
}

.wf-menu-item:hover::before { opacity: 1; }

.wf-menu-item-link {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.wf-menu-item-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wf-menu-item:hover .wf-menu-item-img {
    transform: none;
}

.wf-menu-item-img img {
    border-radius: 50%;
}

.wf-menu-item-img.cat-burgers { background: linear-gradient(145deg, #fff1f1, #ffe0e0); }
.wf-menu-item-img.cat-pizza { background: linear-gradient(145deg, #fff8f0, #ffe8d0); }
.wf-menu-item-img.cat-wraps { background: linear-gradient(145deg, #f0fdf4, #dcfce7); }
.wf-menu-item-img.cat-sides { background: linear-gradient(145deg, #fffbeb, #fef3c7); }
.wf-menu-item-img.cat-beverages { background: linear-gradient(145deg, #eff6ff, #dbeafe); }
.wf-menu-item-img.cat-default { background: linear-gradient(145deg, #f9fafb, #f3f4f6); }

.wf-menu-item-info { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.wf-menu-item-top { display: flex; align-items: center; gap: 8px; }

.wf-menu-item-name { font-size: 0.95rem; font-weight: 800; color: var(--wf-dark); line-height: 1.3; transition: color 0.25s ease; }
a.wf-menu-item-link:hover .wf-menu-item-name { color: var(--wf-primary); }

.wf-menu-item-desc { font-size: 0.8rem; color: var(--wf-gray-400); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.wf-menu-item-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--wf-radius-full);
    margin-top: 2px;
    width: fit-content;
}

.wf-menu-item-tag.preorder { background: rgba(233,196,106,0.18); color: #b8860b; }
.wf-menu-item-tag.soldout { background: var(--wf-gray-100); color: var(--wf-gray-400); }

.wf-menu-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.wf-menu-item-price { font-size: 1.05rem; font-weight: 900; color: var(--wf-dark); white-space: nowrap; letter-spacing: -0.3px; }
.wf-menu-item-price .curr { font-size: 0.72rem; font-weight: 700; color: var(--wf-gray-400); }

.wf-menu-item-add {
    height: 34px;
    padding: 0 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--wf-primary) 0%, #e80000 100%);
    color: white;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 3px 10px rgba(209,0,0,0.25);
}

.wf-menu-item-add:hover {
    background: linear-gradient(135deg, var(--wf-primary-dark) 0%, #b00000 100%);
    box-shadow: 0 6px 18px rgba(209,0,0,0.35);
}

.wf-menu-item-add.preorder {
    background: linear-gradient(135deg, var(--wf-yellow) 0%, #e8a317 100%);
    box-shadow: 0 3px 10px rgba(232,163,23,0.25);
}
.wf-menu-item-add.preorder:hover {
    background: linear-gradient(135deg, #e8a317 0%, #c8920f 100%);
    box-shadow: 0 6px 18px rgba(232,163,23,0.35);
}
.wf-menu-item-add.disabled { background: linear-gradient(135deg, var(--wf-gray-200), var(--wf-gray-300)); color: var(--wf-gray-400); cursor: not-allowed; pointer-events: none; box-shadow: none; }

/* ============ STORE INFO STRIP ============ */
.wf-store-strip { background: var(--wf-gray-50); border-top: 1px solid var(--wf-gray-100); }

.wf-store-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.wf-store-info { display: flex; align-items: center; gap: 20px; }

.wf-store-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--wf-gray-600);
}

.wf-store-item .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--wf-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.wf-store-item strong { color: var(--wf-dark); }

/* ============ STORE LOCATOR ============ */
.wf-locator { background: white; border-radius: var(--wf-radius-lg); padding: 32px; border: 1px solid var(--wf-gray-100); }
.wf-locator h2 { font-family: 'Cinzel', serif; font-size: 1.6rem; font-weight: 700; color: var(--wf-dark); margin-bottom: 4px; }
.wf-locator p { font-size: 0.85rem; color: var(--wf-gray-500); margin-bottom: 20px; }

.wf-locator-form { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; align-items: end; }
@media (max-width: 768px) { .wf-locator-form { grid-template-columns: 1fr; } }

.wf-select-group label { display: block; font-size: 0.72rem; font-weight: 600; color: var(--wf-gray-500); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }

.wf-select-group select, .wf-select-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--wf-gray-200);
    border-radius: var(--wf-radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--wf-gray-700);
    background: white;
    outline: none;
}

.wf-select-group select:focus, .wf-select-group input:focus { border-color: var(--wf-primary); box-shadow: 0 0 0 3px rgba(204,0,0,0.08); }

/* Store cards */
.wf-store-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; margin-top: 24px; }

.wf-store-card { background: white; border: 1px solid var(--wf-gray-100); border-radius: var(--wf-radius-lg); padding: 20px; transition: var(--wf-transition); }
.wf-store-card:hover { box-shadow: var(--wf-shadow); border-color: var(--wf-yellow); }
.wf-store-card h3 { font-size: 1rem; font-weight: 700; color: var(--wf-dark); margin-bottom: 8px; }
.wf-store-card .addr { font-size: 0.82rem; color: var(--wf-gray-500); line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wf-store-card-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; color: var(--wf-gray-500); }
.wf-store-card-meta span { display: flex; align-items: center; gap: 4px; }
.wf-store-card .rating { display: inline-flex; align-items: center; gap: 4px; background: var(--wf-success); color: white; padding: 2px 8px; border-radius: var(--wf-radius-sm); font-size: 0.75rem; font-weight: 700; }

/* ============ CART ============ */
.wf-cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
@media (max-width: 900px) { .wf-cart-grid { grid-template-columns: 1fr; } }

.wf-cart-items { display: flex; flex-direction: column; gap: 8px; }

.wf-cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: none;
    border: none;
    border-radius: 12px;
    box-shadow: none;
}

.wf-cart-item-img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    overflow: hidden;
    background: none;
}

.wf-cart-item-info { flex: 1; min-width: 0; }
.wf-cart-item-name { font-size: 0.95rem; font-weight: 700; color: var(--wf-dark); margin-bottom: 4px; }
.wf-cart-item-meta { font-size: 0.8rem; color: var(--wf-gray-400); }

.wf-cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.wf-cart-item-total { font-weight: 800; color: var(--wf-dark); font-size: 0.95rem; }

.wf-cart-item-qty { display: flex; align-items: center; border: 2px solid var(--wf-primary); border-radius: 8px; overflow: hidden; }
.wf-qty-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: var(--wf-primary);
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}
.wf-qty-btn.minus { background: #fff; color: var(--wf-primary); }
.wf-qty-btn.plus { background: var(--wf-primary); color: #fff; }
.wf-qty-input {
    width: 40px;
    height: 34px;
    border: none;
    border-left: 1px solid var(--wf-gray-200);
    border-right: 1px solid var(--wf-gray-200);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    outline: none;
    background: #fff;
}

/* Add more items link */
.wf-add-more-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border: 2px dashed var(--wf-gray-200);
    border-radius: 12px;
    color: var(--wf-gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin-top: 4px;
}
.wf-add-more-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--wf-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

/* Cart summary */
.wf-cart-summary {
    background: none;
    border: none;
    border-radius: 12px;
    padding: 24px;
    position: sticky;
    top: 88px;
    box-shadow: none;
}

.wf-cart-summary h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; color: var(--wf-dark); }

.wf-cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--wf-gray-500);
}

.wf-cart-summary-row.total { border-top: none; margin-top: 8px; padding-top: 12px; font-size: 1.1rem; font-weight: 800; color: var(--wf-dark); }
.wf-cart-summary-row.total span:last-child { color: var(--wf-primary); }

/* Promo code */
.wf-promo-row { padding: 12px 0 !important; }
.wf-promo-input-group { display: flex; width: 100%; gap: 8px; }
.wf-promo-input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid var(--wf-gray-200);
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}
.wf-promo-input:focus { border-color: var(--wf-primary); }
.wf-promo-btn {
    padding: 10px 18px;
    border: 2px solid var(--wf-primary);
    background: #fff;
    color: var(--wf-primary);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.wf-checkout-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: var(--wf-primary);
    color: white;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--wf-transition);
    text-align: center;
    text-decoration: none;
    margin-top: 16px;
}

.wf-clear-cart-btn {
    background: none;
    border: none;
    color: var(--wf-gray-400);
    font-size: 0.82rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-decoration: underline;
}

/* Sticky checkout bar */
.wf-sticky-checkout {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--wf-gray-100);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    z-index: 100;
}
.wf-sticky-info { display: flex; flex-direction: column; }
.wf-sticky-total { font-size: 1.1rem; font-weight: 800; color: var(--wf-dark); }
.wf-sticky-count { font-size: 0.78rem; color: var(--wf-gray-400); }
.wf-sticky-checkout-btn {
    padding: 12px 40px;
    background: var(--wf-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
}

/* ============ CHECKOUT ============ */
.wf-checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 24px; align-items: start; }
@media (max-width: 900px) { .wf-checkout-grid { grid-template-columns: 1fr; } }

.wf-form-card {
    background: white;
    border-radius: var(--wf-radius-lg);
    border: 1px solid var(--wf-gray-100);
    padding: 28px;
}

.wf-form-card h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; color: var(--wf-dark); }

.wf-form-group { margin-bottom: 16px; }
.wf-form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--wf-gray-500); margin-bottom: 5px; }

.wf-form-group input, .wf-form-group select, .wf-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--wf-gray-200);
    border-radius: var(--wf-radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: var(--wf-transition);
    background: white;
}

.wf-form-group input:focus, .wf-form-group select:focus, .wf-form-group textarea:focus { border-color: var(--wf-primary); box-shadow: 0 0 0 3px rgba(204,0,0,0.06); }
.wf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .wf-form-row { grid-template-columns: 1fr; } }

.wf-add-to-cart-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: var(--wf-radius-full);
    background: var(--wf-primary);
    color: white;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--wf-transition);
}

.wf-add-to-cart-btn:hover { background: var(--wf-primary-dark); transform: translateY(-1px); }

/* ============ DETAIL PAGE ============ */
.wf-detail-top { background: linear-gradient(180deg, #fff, #fefefe); border-bottom: 1px solid var(--wf-gray-100); }

.wf-detail-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 48px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 800px) { .wf-detail-inner { grid-template-columns: 1fr; gap: 28px; padding: 24px 16px; } }

.wf-detail-img-box {
    width: 100%;
    aspect-ratio: 1;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wf-detail-img-box:hover {
    transform: none;
}

.wf-detail-img-box .wf-detail-emoji { font-size: 8rem; transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); z-index: 1; }
.wf-detail-img-box:hover .wf-detail-emoji { transform: none; }

.wf-detail-img-box.cat-burgers { background: linear-gradient(145deg, #fff1f1, #ffe0e0); }
.wf-detail-img-box.cat-pizza { background: linear-gradient(145deg, #fff8f0, #ffe8d0); }
.wf-detail-img-box.cat-wraps { background: linear-gradient(145deg, #f0fdf4, #dcfce7); }
.wf-detail-img-box.cat-sides { background: linear-gradient(145deg, #fffbeb, #fef3c7); }
.wf-detail-img-box.cat-beverages { background: linear-gradient(145deg, #eff6ff, #dbeafe); }
.wf-detail-img-box.cat-default { background: linear-gradient(145deg, #f9fafb, #f3f4f6); }

.wf-detail-img-box .price-float {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--wf-primary), #e80000);
    color: white;
    padding: 10px 20px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 6px 24px rgba(209,0,0,0.35);
    z-index: 2;
    letter-spacing: -0.3px;
}

.wf-detail-img-box .price-float .curr { font-size: 0.75rem; font-weight: 600; opacity: 0.8; vertical-align: super; }

.wf-detail-back { display: inline-flex; align-items: center; gap: 6px; color: var(--wf-gray-400); text-decoration: none; font-size: 0.85rem; font-weight: 500; margin-bottom: 20px; transition: color 0.25s ease; }
.wf-detail-back:hover { color: var(--wf-primary); }

.wf-detail-cat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 16px;
    background: rgba(209,0,0,0.06);
    border-radius: var(--wf-radius-full);
    color: var(--wf-primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    margin-bottom: 14px;
    transition: background 0.25s ease;
}
.wf-detail-cat:hover { background: rgba(209,0,0,0.12); }

.wf-detail-title { font-family: 'Cinzel', serif; font-size: 2.8rem; font-weight: 900; color: var(--wf-dark); margin-bottom: 10px; line-height: 1.1; letter-spacing: -0.5px; }
@media (max-width: 800px) { .wf-detail-title { font-size: 2rem; } }

.wf-detail-desc { font-size: 0.92rem; color: var(--wf-gray-400); line-height: 1.7; margin-bottom: 18px; max-width: 480px; }

.wf-detail-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border-radius: var(--wf-radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}
.wf-detail-stock.in-stock { background: linear-gradient(135deg, #e6f4ea, #d1fae5); color: var(--wf-success); box-shadow: 0 2px 8px rgba(15,138,79,0.1); }
.wf-detail-stock.pre-order { background: linear-gradient(135deg, #fef7e0, #fef3c7); color: #b8860b; box-shadow: 0 2px 8px rgba(184,134,11,0.1); }
.wf-detail-stock.out-of-stock { background: linear-gradient(135deg, #fde8e8, #fee2e2); color: var(--wf-danger); box-shadow: 0 2px 8px rgba(204,0,0,0.08); }

.wf-detail-info-row { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.wf-detail-info-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--wf-gray-500);
    background: var(--wf-gray-50);
    padding: 6px 14px;
    border-radius: var(--wf-radius-full);
    border: 1px solid var(--wf-gray-100);
}
.wf-detail-info-chip .icon { font-size: 1rem; }

.wf-detail-price {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--wf-dark);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.wf-detail-price .curr { font-size: 1rem; font-weight: 600; color: var(--wf-gray-400); vertical-align: super; margin-right: 2px; }
.wf-detail-price .decimal { font-size: 1rem; font-weight: 600; color: var(--wf-gray-300); }

/* Product details section (serving, energy, ingredients) */
.wf-product-specs {
    background: none;
    border: none;
    border-radius: var(--wf-radius);
    padding: 2px;
    margin-bottom: 2px;
    font-size: 0.82rem;
    color: var(--wf-gray-600);
    line-height: 1.3;
}

.wf-product-specs p { margin-bottom: 4px; }
.wf-product-specs strong { color: var(--wf-dark); }

.wf-detail-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.wf-qty-lg {
    display: flex;
    align-items: center;
    border: 2px solid var(--wf-gray-200);
    border-radius: var(--wf-radius);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.wf-qty-lg:focus-within { border-color: var(--wf-primary); }

.wf-qty-lg button {
    width: 44px;
    height: 48px;
    border: none;
    background: var(--wf-gray-50);
    cursor: pointer;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    color: var(--wf-gray-700);
    transition: background 0.2s ease;
}
.wf-qty-lg button:hover { background: var(--wf-gray-200); }

.wf-qty-lg input {
    width: 52px;
    height: 48px;
    border: none;
    border-left: 1px solid var(--wf-gray-100);
    border-right: 1px solid var(--wf-gray-100);
    text-align: center;
    font-size: 1.05rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    outline: none;
    color: var(--wf-dark);
}

.wf-add-full {
    flex: 1;
    min-width: 180px;
    height: 48px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--wf-primary) 0%, #e80000 100%);
    color: white;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(209,0,0,0.25);
    letter-spacing: 0.3px;
}

.wf-add-full:hover {
    background: linear-gradient(135deg, var(--wf-primary-dark) 0%, #b00000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(209,0,0,0.35);
}

.wf-add-full.preorder {
    background: linear-gradient(135deg, var(--wf-yellow) 0%, #e8a317 100%);
    box-shadow: 0 4px 16px rgba(232,163,23,0.25);
}
.wf-add-full.preorder:hover {
    background: linear-gradient(135deg, #e8a317 0%, #c8920f 100%);
    box-shadow: 0 8px 24px rgba(232,163,23,0.35);
}

.wf-detail-unavail {
    background: var(--wf-gray-50);
    border: 1px solid var(--wf-gray-100);
    border-radius: 12px;
    padding: 18px 22px;
    color: var(--wf-gray-400);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.wf-detail-unavail strong { color: var(--wf-gray-600); display: block; margin-bottom: 2px; }

.wf-detail-bottom { max-width: 1100px; margin: 0 auto; padding: 40px 24px 48px; }

.wf-detail-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
@media (max-width: 700px) { .wf-detail-features { grid-template-columns: 1fr; } }

.wf-detail-feature {
    background: white;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.wf-detail-feature:hover {
    box-shadow: 0 8px 24px rgba(209,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
    transform: translateY(-4px);
    border-color: rgba(209,0,0,0.06);
}

.wf-detail-feature .icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(209,0,0,0.06), rgba(250,187,0,0.06));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 14px;
    transition: transform 0.3s ease;
}

.wf-detail-feature:hover .icon { transform: none; }

.wf-detail-feature h4 { font-size: 0.9rem; font-weight: 800; color: var(--wf-dark); margin-bottom: 4px; }

.wf-detail-feature p { font-size: 0.78rem; color: var(--wf-gray-400); }

.wf-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.wf-section-subtitle { font-size: 0.85rem; color: var(--wf-gray-400); margin-top: 2px; }

/* ============ FILTER ROW ============ */
.wf-filter-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.wf-diet-filters { display: flex; gap: 6px; flex-shrink: 0; }

.wf-diet-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: var(--wf-radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
    transition: var(--wf-transition);
    border: 2px solid var(--wf-gray-200);
    color: var(--wf-gray-600);
    background: white;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.wf-diet-btn:hover { border-color: var(--wf-gray-300); }
.wf-diet-btn.active { border-color: var(--wf-primary); color: var(--wf-dark); background: rgba(204,0,0,0.04); }
.wf-diet-btn:has(.wf-diet-dot.veg).active { border-color: var(--wf-veg); background: rgba(0,128,0,0.06); color: var(--wf-veg); }
.wf-diet-btn:has(.wf-diet-dot.non-veg).active { border-color: var(--wf-primary); background: rgba(204,0,0,0.06); color: var(--wf-primary); }
.wf-diet-btn .wf-diet-dot { width: 14px; height: 14px; }
.wf-diet-icon.all { font-size: 1rem; }

.wf-menu-pills { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 16px; }
.wf-menu-pills::-webkit-scrollbar { display: none; }

.wf-menu-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: var(--wf-radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
    transition: var(--wf-transition);
    border: 2px solid var(--wf-gray-200);
    color: var(--wf-gray-600);
    background: white;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.wf-menu-pill:hover { border-color: var(--wf-primary); color: var(--wf-primary); }
.wf-menu-pill.active { background: var(--wf-primary); color: white; border-color: var(--wf-primary); }

/* ============ SEARCH ============ */
.wf-search-wrap { position: relative; max-width: 480px; margin-bottom: 20px; }
.wf-search-wrap .wf-search-input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 2px solid var(--wf-gray-200);
    border-radius: var(--wf-radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--wf-gray-700);
    background: white;
    outline: none;
}
.wf-search-wrap .wf-search-input:focus { border-color: var(--wf-primary); box-shadow: 0 0 0 3px rgba(204,0,0,0.08); }
.wf-search-wrap .wf-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 1rem; color: var(--wf-gray-400); pointer-events: none; }
.wf-search-wrap .wf-search-clear {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    width: 24px; height: 24px; border-radius: 50%; border: none;
    background: var(--wf-gray-100); color: var(--wf-gray-500); cursor: pointer;
    font-size: 0.75rem; display: none; align-items: center; justify-content: center;
}
.wf-search-wrap .wf-search-clear.show { display: flex; }

/* ============ ORDER STATUS ============ */
.wf-order-card {
    background: white;
    border: 1px solid var(--wf-gray-100);
    border-radius: var(--wf-radius-lg);
    padding: 20px;
    margin-bottom: 12px;
    transition: var(--wf-transition);
    text-decoration: none;
    display: block;
    color: inherit;
}

.wf-order-card:hover { box-shadow: var(--wf-shadow); border-color: var(--wf-primary); }

.wf-order-number { font-weight: 700; color: var(--wf-dark); font-size: 1rem; }
.wf-order-date { font-size: 0.82rem; color: var(--wf-gray-400); margin-top: 2px; }

.wf-order-status {
    padding: 3px 12px;
    border-radius: var(--wf-radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.wf-status-pending { background: var(--wf-gray-100); color: var(--wf-gray-600); }
.wf-status-confirmed { background: #dbeafe; color: #1e40af; }
.wf-status-preparing { background: #fef3c7; color: #92400e; }
.wf-status-ready { background: #d1fae5; color: #065f46; }
.wf-status-completed { background: #d1fae5; color: #065f46; }
.wf-status-cancelled { background: #fee2e2; color: #991b1b; }
.wf-status-preorder { background: rgba(233,196,106,0.15); color: #b8860b; }

/* ============ BREADCRUMB ============ */
.wf-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; margin-bottom: 20px; }
.wf-breadcrumb a { color: var(--wf-primary); text-decoration: none; font-weight: 500; }
.wf-breadcrumb a:hover { text-decoration: underline; }
.wf-breadcrumb .sep { color: var(--wf-gray-300); }

/* ============ FOOTER ============ */
.wf-footer { background: var(--wf-dark); color: rgba(255,255,255,0.5); margin-top: auto; }

.wf-footer-inner { max-width: 1100px; margin: 0 auto; padding: 48px 20px 24px; }

.wf-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 768px) { .wf-footer-grid { grid-template-columns: 1fr 1fr; } }

.wf-footer-brand h3 { font-family: 'Cinzel', serif; font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: 10px; }
.wf-footer-brand p { font-size: 0.82rem; line-height: 1.6; }

.wf-footer-col h4 { color: white; font-weight: 600; margin-bottom: 12px; font-size: 0.88rem; }
.wf-footer-col a { display: block; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; padding: 3px 0; transition: var(--wf-transition); }
.wf-footer-col a:hover { color: var(--wf-yellow); }

.wf-footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; text-align: center; font-size: 0.78rem; }

/* ============ EMPTY / PAGINATION / ALERTS ============ */
.wf-empty { text-align: center; padding: 60px 20px; }
.wf-empty-icon { font-size: 3rem; margin-bottom: 12px; opacity: 0.5; }
.wf-empty h2 { font-size: 1.2rem; font-weight: 700; color: var(--wf-dark); margin-bottom: 6px; }
.wf-empty p { color: var(--wf-gray-400); margin-bottom: 20px; font-size: 0.9rem; }

.wf-pagination { display: flex; justify-content: center; gap: 4px; margin-top: 32px; }
.wf-pagination a, .wf-pagination span {
    display: flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 10px;
    border-radius: var(--wf-radius-sm); font-size: 0.82rem; font-weight: 500;
    text-decoration: none; transition: var(--wf-transition);
    border: 1px solid var(--wf-gray-200); color: var(--wf-gray-600); background: white;
}
.wf-pagination a:hover { border-color: var(--wf-primary); color: var(--wf-primary); }
.wf-pagination .active { background: var(--wf-primary); color: white; border-color: var(--wf-primary); }

/* Laravel default pagination */
.pagination { display: flex; justify-content: center; gap: 4px; margin-top: 32px; list-style: none; padding: 0; }
.pagination li { list-style: none; }
.pagination li a, .pagination li span {
    display: flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 10px;
    border-radius: var(--wf-radius-sm); font-size: 0.82rem; font-weight: 500;
    text-decoration: none; transition: var(--wf-transition);
    border: 1px solid var(--wf-gray-200); color: var(--wf-gray-600); background: white;
}
.pagination li a:hover { border-color: var(--wf-primary); color: var(--wf-primary); }
.pagination li.active a, .pagination li.active span { background: var(--wf-primary); color: white; border-color: var(--wf-primary); }
.pagination li.disabled a, .pagination li.disabled span { color: var(--wf-gray-300); pointer-events: none; opacity: 0.5; }

.wf-alert { padding: 12px 18px; border-radius: var(--wf-radius); margin-bottom: 16px; font-size: 0.88rem; font-weight: 500; }
.wf-alert-success { background: #e6f4ea; color: #0f8a4f; border: 1px solid #a7f3d0; }
.wf-alert-error { background: #fde8e8; color: #991b1b; border: 1px solid #fca5a5; }

.wf-notice { background: #fef7e0; border: 1px solid #fcd34d; border-radius: var(--wf-radius); padding: 14px 18px; font-size: 0.88rem; color: #92400e; display: flex; align-items: flex-start; gap: 8px; margin-bottom: 16px; }

/* ============ STICKY BOTTOM CART ============ */
.wf-sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--wf-dark);
    color: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    animation: slideUpCart 0.3s ease;
}

@keyframes slideUpCart { from { transform: translateY(100%); } to { transform: translateY(0); } }

.wf-sticky-cart-inner { max-width: 1100px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; }
.wf-sticky-cart-info { display: flex; align-items: center; gap: 16px; }
.wf-sticky-cart-count { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.wf-sticky-cart-total { font-size: 1.15rem; font-weight: 800; color: white; }

.wf-sticky-cart-btn {
    padding: 10px 24px;
    background: var(--wf-primary);
    color: white;
    border-radius: var(--wf-radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--wf-transition);
}

.wf-sticky-cart-btn:hover { background: var(--wf-primary-dark); transform: translateY(-1px); }

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.wf-stagger > * { opacity: 0; animation: fadeInUp 0.4s ease forwards; }
.wf-stagger > *:nth-child(1) { animation-delay: 0.04s; }
.wf-stagger > *:nth-child(2) { animation-delay: 0.08s; }
.wf-stagger > *:nth-child(3) { animation-delay: 0.12s; }
.wf-stagger > *:nth-child(4) { animation-delay: 0.16s; }
.wf-stagger > *:nth-child(5) { animation-delay: 0.20s; }
.wf-stagger > *:nth-child(6) { animation-delay: 0.24s; }
.wf-stagger > *:nth-child(7) { animation-delay: 0.28s; }
.wf-stagger > *:nth-child(8) { animation-delay: 0.32s; }

/* ============ CART PAGE BODY ============ */
body:has(.wf-sticky-cart:not([style*="display: none"])) { padding-bottom: 64px; }

/* ============ ORDER TIMELINE ============ */
.wf-order-timeline { margin-bottom: 24px; }

.wf-timeline-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 10px;
}

.wf-timeline-track::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: var(--wf-gray-200);
    border-radius: 2px;
    z-index: 0;
}

.wf-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.wf-timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--wf-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--wf-gray-200);
}

.wf-timeline-step.active .wf-timeline-dot {
    background: var(--wf-primary);
    border-color: var(--wf-primary);
    box-shadow: 0 0 0 4px rgba(209, 0, 0, 0.15);
    transform: scale(1.1);
}

.wf-timeline-step.done .wf-timeline-dot {
    background: var(--wf-success);
    border-color: var(--wf-success);
}

.wf-timeline-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--wf-gray-400);
    text-align: center;
}

.wf-timeline-step.active .wf-timeline-label {
    color: var(--wf-primary);
    font-weight: 700;
}

.wf-timeline-step.done .wf-timeline-label {
    color: var(--wf-success);
}

.wf-timeline-time {
    font-size: 0.65rem;
    color: var(--wf-gray-400);
    font-weight: 500;
}

@media (max-width: 600px) {
    .wf-timeline-track { gap: 4px; }
    .wf-timeline-track::before { left: 24px; right: 24px; top: 16px; }
    .wf-timeline-dot { width: 32px; height: 32px; font-size: 0.85rem; }
    .wf-timeline-label { font-size: 0.62rem; }
    .wf-timeline-time { display: none; }
}

/* ============ PAYMENT BADGES ============ */
.wf-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: var(--wf-radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.wf-payment-cod { background: #fef3c7; color: #92400e; }
.wf-payment-online { background: #dbeafe; color: #1e40af; }

/* ============ DESI DINNER GRID (fallback) ============ */
.wf-grid { display: grid; gap: 20px; }
.wf-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ============ MOBILE HORIZONTAL SWIPE CAROUSEL ============ */
@media (max-width: 768px) {
    .wf-products-grid,
    .wf-list-grid,
    .wf-grid.wf-grid-3 {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 14px !important;
        padding: 4px 0 16px 4px !important;
        margin-left: -8px !important;
        margin-right: -8px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        scrollbar-width: none !important;
    }

    .wf-products-grid::-webkit-scrollbar,
    .wf-list-grid::-webkit-scrollbar,
    .wf-grid.wf-grid-3::-webkit-scrollbar {
        display: none !important;
    }

    .wf-products-grid > .wf-card,
    .wf-list-grid > .wf-list-card,
    .wf-grid.wf-grid-3 > .wf-card {
        flex: 0 0 72vw !important;
        min-width: 72vw !important;
        max-width: 72vw !important;
        scroll-snap-align: start !important;
    }

    .wf-products-grid > .wf-card.combo-card {
        flex: 0 0 78vw !important;
        min-width: 78vw !important;
        max-width: 78vw !important;
    }

    .wf-list-grid > .wf-list-card {
        flex: 0 0 78vw !important;
        min-width: 78vw !important;
        max-width: 78vw !important;
    }

    /* Peek effect: show hint of next card */
    .wf-products-grid::after,
    .wf-list-grid::after,
    .wf-grid.wf-grid-3::after {
        content: '';
        flex: 0 0 16px;
        min-width: 16px;
    }
}

/* Remove hover effects on mobile only */
@media (max-width: 768px) {
    *:hover { transform: none !important; box-shadow: none !important; }
}

.western-food {
    position: relative;
    width: 430px;
    height: 52px;
    background: #f9c74f;
    border-top-right-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #444;
    letter-spacing: 1px;
}

.western-food::before {
    content: "✦";
    position: absolute;
    left: 14px;
    top: 10px;
    color: #fff;
    font-size: 18px;
    text-shadow:
        -8px 8px 0 #fff,
        8px -8px 0 #fff;
}


@media (max-width: 768px) {
    .wf-hindi-text {
        font-size: 12px;
        font-weight: 700;
        color: #222222;
        line-height: 1.4;
      }
      .wf-section-banner {
        
        font-size: 16px;
        line-height: 37px;
        font-weight: 900;
        padding: 0px 31px 0px 0px;
        width: 58%;
      }
      .wf-header-overlay {
        padding: 8px 4px;
    }
    .wf-logo-text-link
    {
        margin-top: 22px;
    font-size: 30px;
    }
    
.wf-tab-btn {
    flex-shrink: 0;
    padding: 5px 7px;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.7);
    background: rgb(207, 0, 0);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.wf-new-header-pills {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-top: 0;
    margin-left: 107px;
  }
  .wf-tabs-bar {
    margin-top: 22px;
  }
  .wf-tab-btn {
    flex-shrink: 0;
    padding: 5px 7px;
    border-radius: 20px;
    border: 0px solid rgba(255,255,255,0.7);
    background: rgb(231, 180, 180);
    color: #0d0101;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
}
