/* ============================================
   ORGANIC ROOTS — Main Stylesheet
   "Ghar Jaisa Swad, Sehat Ke Saath"
   ============================================ */

:root {
    --cream:        #F4EFE3;
    --cream-soft:    #FBF9F2;
    --green-deep:    #2D5016;
    --green-fresh:   #3F7D20;
    --green-pale:    #E9F1DD;
    --amber-pale:    #FBEFD9;
    --brown-copper:  #6B4226;
    --brown-light:   #8A7560;
    --ink:           #2A2118;
    --white:         #FFFFFF;
    --gold:          #E8A933;
    --shadow-soft:   rgba(45, 80, 22, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream-soft);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    color: var(--green-deep);
    font-weight: 600;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Image placeholder (CMS will replace with uploads) ---------- */

.img-ph {
    width: 100%;
    height: 100%;
    background-color: var(--green-pale);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--green-deep);
    gap: 6px;
    text-align: center;
}

.img-ph i { font-size: 26px; opacity: 0.55; }
.img-ph span { font-size: 11px; color: var(--brown-light); padding: 0 8px; }

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.btn-primary { background-color: var(--green-deep); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px var(--shadow-soft); }

.btn-sm {
    padding: 8px 16px;
    font-size: 12.5px;
    border-radius: 6px;
}

/* ---------- Navbar ---------- */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--cream-soft);
    border-bottom: 1px solid rgba(107, 66, 38, 0.12);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    gap: 24px;
}

.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-brand img { height: 75px; width:75px; border-radius: 50%; object-fit: cover; }
/*.nav-brand-text { display: flex; flex-direction: column; }*/
.nav-brand-text { 
    display: none !important; 
}
.nav-brand-text strong { font-family: 'Fraunces', serif; font-size: 18px; color: var(--green-deep); }
.nav-brand-text span { font-size: 10px; color: var(--brown-copper); line-height: 1.3; max-width: 140px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--green-deep);
    border-bottom-color: var(--green-deep);
}

/* ---- Dropdown (About Us > Achievements) ---- */
.nav-dropdown { position: relative; }
.nav-dropdown > a { position: relative; padding-right: 16px !important; }
.nav-dropdown-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    transition: transform 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-arrow { transform: translateY(-50%) rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(45,80,22,0.15);
    min-width: 190px;
    padding: 20px 8px 8px;
    margin-top: -6px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 500;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    border-radius: 8px;
    border-bottom: none;
    white-space: nowrap;
}
.nav-dropdown-menu li a i { color: var(--green-fresh); width: 14px; }
.nav-dropdown-menu li a:hover {
    background-color: var(--cream-soft);
    color: var(--green-deep);
    border-bottom: none;
}

.nav-actions { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
}

.nav-phone i { color: var(--green-deep); font-size: 16px; }

.nav-cart {
    position: relative;
    font-size: 19px;
    color: var(--ink);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--green-deep);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--green-deep); cursor: pointer; }

.nav-search-wrapper {
    display: inline-flex;
    align-items: center;
    background-color: var(--cream-soft);
    border: 1.5px solid var(--green-fresh);
    border-radius: 6px;
    padding: 0 12px;
    height: 42px;
    width: 160px;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s;
    box-sizing: border-box;
    overflow: hidden;
}

.nav-search-wrapper .search-icon {
    color: var(--green-deep);
    font-size: 16px;
    margin-right: 10px;
    flex-shrink: 0;
}

.nav-search-input {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--ink);
    padding: 0 !important;
    margin: 0 !important;
}

.nav-search-input::placeholder {
    color: var(--brown-light);
    opacity: 0.8;
}

.nav-search-wrapper:focus-within {
    width: 280px; /* क्लिक करने पर स्केच की तरह इतना फैल जाएगा */
    border-color: var(--green-deep);
    background-color: var(--white);
    box-shadow: 0 4px 12px var(--shadow-soft);
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    background-color: var(--cream);
    overflow: hidden;
    padding: 56px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 50px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 18px;
}

.hero h1 .line-2 { color: var(--brown-copper); }

.hero-tagline {
    font-weight: 600;
    font-size: 15.5px;
    color: var(--ink);
    margin-bottom: 10px;
}

.hero p.lead {
    font-size: 15px;
    color: var(--brown-light);
    max-width: 420px;
    margin-bottom: 28px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
}

.trust-badge i { color: var(--green-fresh); font-size: 15px; }

.hero-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/11;
}

.hero-visual .img-ph { border-radius: 20px; }

.eat-healthy-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background-color: var(--cream-soft);
    border: 2px dashed var(--green-deep);
    color: var(--green-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Fraunces', serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    z-index: 3;
}

.eat-healthy-badge i { font-size: 16px; margin-bottom: 2px; }

.hero-dots {
    display: flex;
    gap: 6px;
    margin-top: 16px;
}

.hero-dots span { width: 7px; height: 7px; border-radius: 50%; background-color: rgba(45,80,22,0.25); }
.hero-dots span.active { background-color: var(--green-deep); width: 18px; border-radius: 4px; }

/* ---------- Hero Slider (multi-banner) ---------- */

.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 560px;
}

.hero-slides-track {
    position: relative;
    width: 100%;
    height: 560px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    display: none;
}

.hero-slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-slide .hero-content {
    max-width: 560px;
}

.hero-slide .hero-content h1 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.hero-slide .hero-content .lead {
    color: rgba(255,255,255,0.92);
    font-size: 16px;
    max-width: 480px;
    margin-bottom: 26px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-slide .trust-badge { color: #fff; }
.hero-slide .trust-badge i { color: var(--green-fresh); }

.hero-slide-btn {
    margin-top: 8px;
    display: inline-block;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255,255,255,0.85);
    color: var(--green-deep);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background-color 0.2s ease;
}

.hero-arrow:hover { background-color: #fff; }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

.hero-slider .hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    margin-top: 0;
}

.hero-slider .hero-dots span {
    cursor: pointer;
    background-color: rgba(255,255,255,0.5);
}

.hero-slider .hero-dots span.active {
    background-color: #fff;
    width: 22px;
}

/* ---------- Feature strip ---------- */

.feature-strip { padding: 44px 0; }

.feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    background-color: var(--white);
    border: 1px solid rgba(107, 66, 38, 0.10);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.feature-icon.green { background-color: var(--green-pale); color: var(--green-deep); }
.feature-icon.amber { background-color: var(--amber-pale); color: var(--brown-copper); }

.feature-card h4 { font-size: 15.5px; margin-bottom: 4px; }
.feature-card p { font-size: 13px; color: var(--brown-light); }

/* ---------- Categories + Dishes ---------- */

.cat-dish-section { padding: 40px 0 60px; }

.cat-dish-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.6fr;
    gap: 40px;
}

.block-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
}

.block-head h3 { font-size: 19px; }

.view-all { font-size: 13.5px; font-weight: 600; color: var(--green-deep); display: inline-flex; align-items: center; gap: 5px; }

.category-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.category-item { text-align: center; }

.category-thumb {
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid rgba(107,66,38,0.12);
}

.category-thumb .img-ph i { font-size: 18px; }
.category-thumb .img-ph span { font-size: 9px; }

.category-item h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.category-item h5 i { color: var(--green-fresh); font-size: 11px; }

.dish-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.dish-card {
    background-color: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(107, 66, 38, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dish-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px var(--shadow-soft); }

.dish-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dish-card:hover .dish-img img { transform: scale(1.05); }

.dish-body { padding: 14px 16px 16px; }

.dish-body h4 { font-size: 14.5px; margin-bottom: 4px; color: var(--ink); font-family: 'Inter', sans-serif; font-weight: 600; }

.dish-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--brown-light);
    margin-bottom: 10px;
}

.dish-rating i { color: var(--gold); font-size: 11px; }

.dish-footer { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }

.dish-price { font-size: 16px; font-weight: 700; color: var(--ink); font-family: 'Inter', sans-serif; }

.add-cart-btn {
    width: 100%;
    background-color: var(--green-deep);
    color: var(--white);
    border: none;
    border-radius: 7px;
    padding: 9px;
    font-size: 12.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

/* ---------- Today's special banner ---------- */

.special-banner {
    background-color: var(--green-deep);
    border-radius: 16px;
    padding: 28px 36px;
    display: grid;
    grid-template-columns: 1.3fr 1fr auto;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.special-left { display: flex; align-items: center; gap: 18px; }

.special-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.special-thumb .img-ph i { font-size: 16px; }
.special-thumb .img-ph span { display: none; }

.special-label { font-size: 12px; color: rgba(244,238,221,0.7); margin-bottom: 4px; }

.special-title { color: var(--cream); font-size: 21px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.off-tag {
    background-color: var(--gold);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
}

.special-mid { color: var(--cream); font-size: 13.5px; line-height: 1.5; }

.special-banner .btn-primary { background-color: var(--white); color: var(--green-deep); }

/* ---------- Our process ---------- */

.process-section { padding: 56px 0; }

.process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(107,66,38,0.10);
    padding: 30px;
    position: relative;
}

.process-step { text-align: center; position: relative; padding: 0 12px; }

.process-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--amber-pale);
    color: var(--brown-copper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 14px;
}

.process-step h4 { font-size: 15px; margin-bottom: 6px; color: var(--ink); font-family: 'Inter', sans-serif; font-weight: 600; }
.process-step p { font-size: 12.5px; color: var(--brown-light); }

.process-arrow {
    position: absolute;
    top: 28px;
    right: -22px;
    color: var(--brown-light);
    font-size: 18px;
}

/* ---------- Testimonials + About ---------- */

.testi-about-section { padding: 20px 0 60px; }

.testi-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
}

.testi-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }

.testi-arrows { display: flex; gap: 8px; }

.testi-arrow-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(107,66,38,0.2);
    background: var(--white);
    color: var(--brown-copper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
}

.testi-list { display: flex; flex-direction: column; gap: 14px; }

.testi-card {
    background-color: var(--white);
    border: 1px solid rgba(107,66,38,0.10);
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    gap: 14px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--green-pale);
    color: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.testi-stars { color: var(--gold); font-size: 11px; margin-bottom: 6px; }
.testi-card p.quote { font-size: 13.5px; color: var(--ink); margin-bottom: 6px; }
.testi-name { font-size: 12.5px; color: var(--brown-light); font-weight: 600; }

.about-block h2 { font-size: 24px; margin-bottom: 14px; }
.about-block p { font-size: 14px; color: var(--brown-light); margin-bottom: 18px; }

.about-img {
    aspect-ratio: 16/8;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
}

/* ---------- Footer ---------- */

.site-footer { background-color: var(--green-deep); color: var(--cream); padding: 56px 0 26px; position: relative; overflow: hidden; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-brand-block { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand-block img { height: 80px; width: 80px; border-radius: 50%; margin-bottom: 10px; }
.footer-brand-block strong { font-family: 'Fraunces', serif; font-size: 18px; color: var(--cream); display: block; }
.footer-brand-block span { font-size: 11px; color: rgba(244,238,221,0.65); }

.footer-col h5 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: var(--cream); }

.footer-col ul li { margin-bottom: 10px; font-size: 13.5px; }
.footer-col ul li a { color: rgba(244,238,221,0.75); display: flex; align-items: center; gap: 7px; }
.footer-col ul li a i { font-size: 12px; width: 14px; }

.footer-col p { font-size: 13.5px; color: rgba(244,238,221,0.75); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }
.footer-col p i { font-size: 13px; margin-top: 2px; }

.social-row { display: flex; gap: 10px; margin-bottom: 18px; }

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(244,238,221,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
}

.social-icon:hover {
    background-color: rgba(255,255,255,0.15);
    border-color: rgba(244,238,221,0.70);
}

.delivery-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
}

.delivery-badge.swiggy { background-color: #fc8019; }
.delivery-badge.zomato { background-color: #e23744; }

.footer-leaf { position: absolute; right: 0; bottom: 0; width: 180px; opacity: 0.15; z-index: 1; }

.footer-bottom {
    border-top: 1px solid rgba(244,238,221,0.15);
    padding-top: 22px;
    font-size: 12.5px;
    color: rgba(244,238,221,0.55);
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-phone { display: none; }
    .hero .container { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
    .hero-slider, .hero-slides-track { min-height: 460px; height: 460px; }
    .hero-slide .hero-content h1 { font-size: 32px; }
    .hero-arrow { width: 38px; height: 38px; font-size: 14px; }
    .hero-arrow-prev { left: 14px; }
    .hero-arrow-next { right: 14px; }
    .feature-row { grid-template-columns: repeat(2, 1fr); }
    .cat-dish-grid { grid-template-columns: 1fr; }
    .category-list { grid-template-columns: repeat(4, 1fr); }
    .dish-grid { grid-template-columns: repeat(3, 1fr); }
    .special-banner { grid-template-columns: 1fr; text-align: center; }
    .special-left { flex-direction: column; }
    .process-row { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
    .process-arrow { display: none; }
    .testi-about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 30px; }
    .hero-slider, .hero-slides-track { min-height: 420px; height: 420px; }
    .hero-slide .hero-content h1 { font-size: 26px; }
    .hero-slide .hero-content .lead { font-size: 14px; }
    .hero-arrow { display: none; }
    .feature-row { grid-template-columns: 1fr; }
    .category-list { grid-template-columns: repeat(2, 1fr); }
    .dish-grid { grid-template-columns: repeat(2, 1fr); }
    .process-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .trust-badges { gap: 14px; }
}
/* ============================================
   RESPONSIVE ADDITIONS — Mobile & Tablet Fix
   ============================================ */

/* ---------- Mobile Nav Drawer ---------- */

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
}

.mobile-nav.open { display: block; }

.mobile-nav-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.mobile-nav-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--cream-soft);
    padding: 28px 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--green-deep);
    cursor: pointer;
    margin-bottom: 10px;
}

.mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(107,66,38,0.12);
}

.mobile-nav-brand img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.mobile-nav-brand strong { font-family: 'Fraunces', serif; font-size: 16px; color: var(--green-deep); }

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    transition: background 0.15s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active { background: var(--green-pale); color: var(--green-deep); }
.mobile-nav-link i { width: 20px; text-align: center; color: var(--green-fresh); }

.mobile-nav-divider {
    height: 1px;
    background: rgba(107,66,38,0.1);
    margin: 8px 0;
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(107,66,38,0.1);
    font-size: 13px;
    color: var(--brown-light);
}

.mobile-nav-footer a { color: var(--green-deep); font-weight: 600; }

/* ---------- Mobile Bottom Navigation Bar ---------- */
/* Sirf chhoti screens par dikhta hai — desktop par hidden (responsive.css me show hoga) */

.mobile-bottom-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    background: var(--green-deep);
    box-shadow: 0 -4px 18px rgba(0,0,0,0.18);
    padding: 6px 4px;
    padding-bottom: calc(6px + env(safe-area-inset-bottom));
}

.mobile-bottom-nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 2px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    transition: color 0.15s, background 0.15s;
}

.mobile-bottom-nav-link i {
    font-size: 17px;
}

.mobile-bottom-nav-link span {
    line-height: 1.2;
    max-width: 72px;
}

.mobile-bottom-nav-link:hover,
.mobile-bottom-nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.12);
}

/* ---------- General mobile improvements ---------- */

@media (max-width: 980px) {

    /* Navbar — hide Order Now button on tablet to save space */
    .navbar .btn { display: none; }

    /* Cart checkout grid */
    .cart-grid { grid-template-columns: 1fr !important; }

    /* Checkout two-column form */
    .checkout-grid { grid-template-columns: 1fr !important; }

    /* Product detail grid */
    .product-detail-grid { grid-template-columns: 1fr !important; }

    /* Product reviews grid */
    .product-reviews-grid { grid-template-columns: 1fr !important; }

    /* Admin stats */
    .admin-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }

    /* Admin two-col grids */
    .admin-report-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {

    /* Container padding */
    .container { padding: 0 16px; }

    /* Navbar height is auto now (2-row layout, set further down) */
    .nav-brand-text span { display: none; }
    .nav-brand-text strong { font-size: 16px; }
/*    .nav-brand img { */
/*    height: 75px; */
/*    width: 75px; */
/*    border-radius: 50%; */
/*    object-fit: cover; */
/*}*/

    /* Hero slider */
    .hero-slider, .hero-slides-track { min-height: 340px !important; height: 340px !important; }
    .hero-slide .hero-content h1 { font-size: 22px !important; }
    .hero-slide .hero-content .lead { font-size: 13px !important; display: none; }
    .hero-slide .trust-badges { display: none; }
    .hero-slide-btn { padding: 10px 18px !important; font-size: 13px !important; }

    /* Sections */
    .section-head h2 { font-size: 24px; }
    .cat-dish-section { padding: 24px 0 40px; }
    .process-section { padding: 32px 0; }
    .testi-about-section { padding: 0 0 40px; }

    /* Feature strip */
    .feature-strip { padding: 24px 0; }
    .feature-card { padding: 16px; }

    /* Dish grid — always 2 cols on mobile */
    .dish-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .dish-body { padding: 10px 12px 12px; }
    .dish-body h4 { font-size: 13px; }
    .dish-price { font-size: 14px; }
    .add-cart-btn { font-size: 11.5px; padding: 8px; }

    /* Special banner */
    .special-banner { padding: 20px; }

    /* Footer */
    .footer-grid { gap: 24px; }
    .site-footer { padding: 36px 0 20px; }

    /* Cart page */
    .cart-item-row { flex-direction: column !important; gap: 10px !important; }

    /* Profile page grids */
    .profile-grid { grid-template-columns: 1fr !important; }

    /* Product detail */
    .product-detail-grid { grid-template-columns: 1fr !important; }
    .product-reviews-grid { grid-template-columns: 1fr !important; }

    /* Track order timeline — vertical on mobile */
    .order-timeline { flex-direction: column !important; align-items: flex-start !important; gap: 0 !important; }
    .timeline-step { flex-direction: row !important; align-items: flex-start !important; min-width: unset !important; width: 100%; gap: 14px; margin-bottom: 0; }
    .timeline-dot { margin-bottom: 0 !important; flex-shrink: 0; }
    .timeline-line { position: absolute; top: 46px; left: 22px; width: 2px !important; height: 100% !important; }
    .timeline-label { text-align: left !important; padding-top: 12px; padding-bottom: 16px; }
    .timeline-label strong { font-size: 13px !important; }

    /* Buttons full width on small screens */
    .btn-block-mobile { width: 100% !important; justify-content: center !important; }

    /* Admin stats — single column */
    .admin-stats-grid { grid-template-columns: 1fr 1fr !important; }

    /* Admin tables — horizontal scroll */
    .admin-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ---------- Admin Panel — Mobile Responsive ---------- */

@media (max-width: 600px) {

    .admin-content { padding: 16px !important; }
    .admin-card { padding: 16px !important; }

    /* Admin forms */
    .admin-form-group input,
    .admin-form-group select,
    .admin-form-group textarea { font-size: 16px; } /* Prevents iOS zoom */

    /* Admin table scroll */
    .admin-table { min-width: 540px; }
    .admin-card { overflow-x: auto; }

    /* Admin card header stack */
    .admin-card-header { flex-direction: column !important; align-items: flex-start !important; gap: 10px !important; }

    /* Report grids */
    div[style*="grid-template-columns:1fr 1fr"],
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns:1.6fr 1fr"],
    div[style*="grid-template-columns: 1.6fr 1fr"],
    div[style*="grid-template-columns:1.7fr 1fr"],
    div[style*="grid-template-columns: 1.7fr 1fr"],
    div[style*="grid-template-columns:1fr 1.6fr"],
    div[style*="grid-template-columns: 1fr 1.6fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Stats grid */
    .admin-stats-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
    .stat-value { font-size: 20px !important; }

    /* Order tabs wrap */
    .order-tabs { gap: 6px; }
    .order-tab { padding: 8px 12px; font-size: 13px; }

    /* Billing/report filter forms */
    form[method="get"] { flex-direction: column !important; }
    form[method="get"] .admin-form-group { width: 100% !important; }
    form[method="get"] input[type="date"],
    form[method="get"] input[type="month"],
    form[method="get"] select { width: 100%; }
}

@media (max-width: 900px) and (min-width: 601px) {
    .admin-content { padding: 20px; }
    .admin-stats-grid { grid-template-columns: repeat(3, 1fr); }

    div[style*="grid-template-columns:1fr 1fr"],
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   HOMEPAGE REDESIGN — New Section Styles
   ============================================ */

/* ---------- Script / Decorative Section Headings ---------- */

.hp-script {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    color: var(--green-deep);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hp-script i { font-size: 18px; color: var(--green-fresh); }

.hp-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.hp-section-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hp-divider-line {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(to right, rgba(63,125,32,0.3), transparent);
    width: 100px;
    min-width: 60px;
}

.hp-section-center {
    text-align: center;
    margin-bottom: 36px;
}

.hp-divider-center {
    width: 80px;
    height: 2px;
    background: var(--green-fresh);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ---------- Categories ---------- */

.hp-categories {
    padding: 48px 0 36px;
    background-color: var(--cream-soft);
}

.hp-cat-row {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hp-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 100px;
    flex: 1;
    max-width: 140px;
}

.hp-cat-thumb {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(107,66,38,0.12);
    background-color: var(--green-pale);
    transition: border-color 0.2s, transform 0.2s;
}

.hp-cat-item:hover .hp-cat-thumb {
    border-color: var(--green-fresh);
    transform: translateY(-3px);
}

.hp-cat-thumb img { width: 100%; height: 100%; object-fit: cover; }

.hp-cat-item h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hp-cat-item h5 i { color: var(--green-fresh); font-size: 11px; }

/* ---------- Best Selling Dishes ---------- */

.hp-dishes {
    padding: 40px 0 48px;
    background-color: var(--white);
}

.hp-dish-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.hp-dish-card {
    background-color: var(--cream-soft);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(107,66,38,0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-dish-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px var(--shadow-soft); }

.hp-dish-img-link { display: block; }

.hp-dish-img {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.hp-dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.hp-dish-card:hover .hp-dish-img img { transform: scale(1.05); }

.hp-dish-body { padding: 12px 14px 14px; }

.hp-dish-body h4 {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    margin-bottom: 5px;
    line-height: 1.3;
}

.hp-dish-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11.5px;
    color: var(--gold);
    margin-bottom: 8px;
}

.hp-dish-rating span { color: var(--brown-light); font-size: 11px; margin-left: 2px; }

.hp-dish-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.hp-dish-old {
    font-size: 12px;
    font-weight: 400;
    color: var(--brown-light);
    text-decoration: line-through;
}

.hp-add-btn {
    width: 100%;
    background-color: var(--green-deep);
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 9px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Inter', sans-serif;
}

.hp-add-btn:hover { background-color: var(--green-fresh); }

/* ---------- Today's Special ---------- */

.hp-special-section { padding: 0 0 40px; }

.hp-special-banner {
    background-color: var(--green-deep);
    border-radius: 18px;
    padding: 28px 36px;
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.hp-special-banner::before {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.hp-special-img {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.hp-special-img img { width: 100%; height: 100%; object-fit: cover; }

.hp-special-label {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 4px;
}

.hp-special-title {
    color: var(--cream);
    font-family: 'Fraunces', serif;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hp-off-tag {
    background-color: var(--gold);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
}

.hp-special-sub {
    font-size: 13.5px;
    color: rgba(244,238,221,0.75);
    margin-top: 4px;
}

.hp-special-btn {
    background-color: var(--white);
    color: var(--green-deep);
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 14px;
}

.hp-special-btn:hover { background-color: var(--cream); }

/* ---------- Our Process ---------- */

.hp-process {
    padding: 52px 0;
    background-color: var(--cream-soft);
}

.hp-process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background-color: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(107,66,38,0.10);
    padding: 36px 24px;
    position: relative;
}

.hp-process-step {
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.hp-process-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--green-deep);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-family: 'Inter', sans-serif;
}

.hp-process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--green-pale);
    color: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 10px auto 16px;
    border: 2px dashed var(--green-fresh);
}

.hp-process-icon-amber {
    background-color: var(--amber-pale);
    color: var(--brown-copper);
    border-color: var(--brown-copper);
}

.hp-process-step h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}

.hp-process-step p { font-size: 12.5px; color: var(--brown-light); line-height: 1.5; }

.hp-process-arrow {
    position: absolute;
    top: 42px;
    right: -18px;
    color: var(--brown-light);
    font-size: 18px;
    z-index: 3;
}

/* ---------- Blog / From Our Kitchen ---------- */

.hp-blog-section {
    padding: 52px 0;
    background-color: var(--cream-soft);
}

.hp-blog-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hp-blog-card {
    display: block;
    background-color: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(107,66,38,0.10);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px var(--shadow-soft);
}

.hp-blog-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.hp-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hp-blog-card:hover .hp-blog-img img {
    transform: scale(1.05);
}

.hp-blog-body {
    padding: 18px 20px 22px;
}

.hp-blog-date {
    font-size: 12px;
    color: var(--brown-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.hp-blog-body h4 {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.35;
}

.hp-blog-body p {
    font-size: 13.5px;
    color: var(--brown-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.hp-blog-readmore {
    font-size: 13px;
    font-weight: 600;
    color: var(--green-deep);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ---------- Testimonials ---------- */

.hp-testi-section {
    padding: 52px 0;
    background-color: var(--white);
}

.hp-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.hp-testi-card {
    background-color: var(--cream-soft);
    border: 1px solid rgba(107,66,38,0.10);
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

.hp-testi-quote {
    font-size: 28px;
    color: var(--green-pale);
    margin-bottom: 10px;
    line-height: 1;
}

.hp-testi-stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}

.hp-testi-card p {
    font-size: 14px;
    color: var(--ink);
    line-height: 1.65;
    margin-bottom: 16px;
}

.hp-testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brown-copper);
}

.hp-testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--green-pale);
    color: var(--green-deep);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.hp-testi-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* ---------- Testimonial Carousel (wrapper around .hp-testi-card) ---------- */

.testi-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-carousel-viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.testi-carousel-track {
    display: flex;
    will-change: transform;
}

.testi-carousel-slide {
    flex-shrink: 0;
    box-sizing: border-box;
}

.testi-carousel-arrow {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(107,66,38,0.18);
    background-color: var(--white);
    color: var(--green-deep);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    box-shadow: 0 2px 8px rgba(45,80,22,0.08);
}

.testi-carousel-arrow:hover { background-color: var(--green-pale); }

.testi-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.tc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(45,80,22,0.22);
    cursor: pointer;
    transition: background-color 0.2s, width 0.2s;
}

.tc-dot.active {
    background-color: var(--green-deep);
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 640px) {
    .testi-carousel-wrap { gap: 8px; }
    .testi-carousel-arrow { width: 32px; height: 32px; font-size: 12px; }
}

/* ---------- About Section ---------- */

.hp-about-section {
    padding: 52px 0;
    background-color: var(--cream-soft);
}

.hp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hp-about-text h2 {
    font-size: 35px;
    margin-bottom: 14px;
}

.hp-about-text p {
    font-size: 14.5px;
    color: var(--brown-light);
    line-height: 1.75;
}

.hp-about-text a.btn {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.hp-about-img-block {
    position: relative;
}

.hp-about-img {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.hp-about-img img { width: 100%; height: 100%; object-fit: cover; }

.hp-about-badge {
    position: absolute;
    bottom: -18px;
    right: 20px;
    background: var(--white);
    border: 1px solid rgba(107,66,38,0.12);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(45,80,22,0.10);
}

.hp-about-badge img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.hp-about-badge strong { font-size: 13px; color: var(--green-deep); font-family: 'Fraunces', serif; }

/* ---------- Homepage Responsive ---------- */

@media (max-width: 1100px) {
    .hp-dish-row { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 980px) {
    .hp-dish-row { grid-template-columns: repeat(3, 1fr); }
    .hp-testi-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-about-grid { grid-template-columns: 1fr; gap: 28px; }
    .hp-special-banner { grid-template-columns: 80px 1fr; }
    .hp-special-btn { grid-column: 1 / -1; width: 100%; justify-content: center; }
    .hp-process-row { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; padding: 30px 20px; }
    .hp-process-arrow { display: none; }
    .hp-cat-item { max-width: 120px; }
}

@media (max-width: 600px) {
    .hp-categories { padding: 28px 0 20px; }
    .hp-cat-row { gap: 10px; justify-content: space-between; }
    .hp-cat-item { max-width: 80px; min-width: 70px; flex: 0 0 calc(33.33% - 8px); }
    .hp-cat-item h5 { font-size: 11.5px; }

    .hp-dish-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hp-dish-body h4 { font-size: 12.5px; }

    .hp-testi-grid { grid-template-columns: 1fr; }

    .hp-special-banner { grid-template-columns: 1fr; text-align: center; padding: 20px; gap: 14px; }
    .hp-special-img { width: 70px; height: 70px; margin: 0 auto; }
    .hp-special-title { font-size: 18px; justify-content: center; }

    .hp-process-row { grid-template-columns: 1fr 1fr; gap: 36px 10px; padding: 24px 14px; }
    .hp-process-icon { width: 52px; height: 52px; font-size: 20px; }
    .hp-process-step h4 { font-size: 13px; }

    .hp-script { font-size: 28px; }
    .hp-about-section { padding-bottom: 52px; }
    .hp-about-badge { bottom: -14px; right: 10px; }
    .hp-about-text h2 { font-size: 24px; }
}

/* ============================================
   TOP BAR — Phone + Social Icons
   ============================================ */

.top-bar {
    background-color: #2D5016;
    color: rgba(255,255,255,0.90);
    font-size: 13px;
    height: 38px;
    display: flex;
    align-items: center;

    /* Desktop: sticky, sticks above navbar */
    position: sticky;
    top: 0;
    z-index: 101; /* above navbar (z-index:100) */
}

.top-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* ---- Left: Phone ---- */

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.90);
    text-decoration: none;
    font-weight:700;
    font-size: 13px;
    transition: color 0.15s;
}

.top-bar-phone:hover { color: #fff; }

.top-bar-phone i {
    font-size: 12px;
    background-color: rgba(255,255,255,0.15);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Right: Social Icons ---- */

.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-bar-socials li a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    text-decoration: none;
    transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}

.top-bar-socials li a:hover {
    background-color: rgba(255,255,255,0.20);
    border-color: rgba(255,255,255,0.60);
    color: #fff;
}

/* ---- Mobile-only search inside top-bar (hidden on desktop) ---- */
.top-bar-search {
    display: none;
}

/* ---- Navbar: push down by top-bar height ---- */
/* Navbar was sticky top:0, now it sticks just below top-bar */
.navbar {
    top: 38px; /* same as top-bar height */
}

/* ============================================
   NAV SEARCH BAR
   ============================================ */

.nav-search {
    display: flex;
    align-items: center;
    background-color: var(--cream);
    border: 1.5px solid rgba(107,66,38,0.18);
    border-radius: 8px;
    overflow: hidden;
    height: 40px;
    width: 200px;
    transition: width 0.25s ease, border-color 0.2s;
}

.nav-search:focus-within {
    border-color: var(--green-fresh);
    width: 240px;
}

.nav-search-icon {
    padding: 0 10px;
    color: var(--brown-light);
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-search input {
    border: none;
    background: transparent;
    font-size: 13.5px;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    outline: none;
    width: 100%;
    padding-right: 10px;
}

.nav-search input::placeholder { color: var(--brown-light); }

/* ---- Nav Avatar (logged-in user initial circle) ---- */

.nav-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--green-deep);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

/* ---- hide-desktop: brand tagline only on mobile ---- */
.hide-desktop span { /* already shown on all, just keep */ }

/* ============================================
   TOP BAR — MOBILE: hidden when scrolled down
   ============================================ */

/* On mobile (<=600px), top-bar is NOT sticky — it scrolls away.
   Navbar top resets to 0 so it sticks to very top after top-bar scrolls. */
@media (max-width: 600px) {
    /* Top-bar: back to original behavior — phone number + social icons,
       scrolls away with the page (not sticky) */
    .top-bar {
        position: relative;
        top: auto;
        z-index: auto;
        height: 34px;
        font-size: 12px;
    }

    .top-bar-phone { font-size: 12px; }
    .top-bar-socials li a { width: 24px; height: 24px; font-size: 11px; }

    /* Navbar sticks to very top on mobile (no top-bar above it) */
    .navbar { top: 0; }
    .navbar .container { height: 68px; gap: 10px; }

    /* nav (empty on mobile, .nav-links is hidden) takes no space */
    .navbar nav { flex: 0 0 0; width: 0; overflow: hidden; }

    /* Shrink every icon in nav-actions so they take less room, leaving
       more space for the search bar to expand into */
    .nav-actions {
        gap: 10px;
        flex-shrink: 0;
    }

    .nav-actions .nav-cart,
    .nav-actions .nav-toggle {
        flex-shrink: 0;
        font-size: 16px;
    }

    .nav-actions .nav-avatar {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .nav-actions .nav-cart .fa-circle-user {
        font-size: 18px !important;
    }

    .nav-toggle { font-size: 19px; }

    .cart-badge {
        width: 15px;
        height: 15px;
        font-size: 8.5px;
        top: -6px;
        right: -8px;
    }

    /* The container needs position:relative so the absolutely-positioned
       expanded search box has something to anchor against */
    .navbar .container { position: relative; }

    /* Search icon: small circle by default, sitting right next to the
       action icons (S/cart/hamburger) — margin-left:auto pushes it to
       absorb the empty middle space, landing it beside nav-actions */
    .nav-search {
        position: relative;
        width: 32px;
        height: 32px;
        min-width: 32px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
        margin-left: auto;
        justify-content: center;
    }

    .nav-search-icon {
        padding: 0;
        margin: 0;
        font-size: 13px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .nav-search input { display: none; }

    /* Expanded state: right edge is pinned via JS (see script below) to
       its own natural position, so it grows only toward the logo side
       and never reaches the icons after it. */
    .nav-search.expanded {
        position: absolute;
        top: 50%;
        left: 95px;
        transform: translateY(-50%);
        width: auto;
        height: 38px;
        border-radius: 19px;
        z-index: 20;
        box-shadow: 0 4px 14px rgba(0,0,0,0.15);
        display: flex;
        align-items: center;
    }

    /* Icon: fixed-size box, centered, same height as the pill so it
       never drifts up/down — just a flex item like in the input row */
    .nav-search.expanded .nav-search-icon {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

    .nav-search.expanded input {
        display: block;
        flex: 1;
        min-width: 0;
        height: 100%;
        font-size: 13px;
        padding: 0 12px 0 2px;
        margin: 0;
        line-height: normal;
    }
}

@media (max-width: 980px) and (min-width: 601px) {
    /* Tablet: search also takes the middle space left by hidden nav-links */
    .nav-search { flex: 1 1 auto; width: auto; max-width: 320px; }
    .nav-search:focus-within { width: auto; }
}

/* ============================================
   CATEGORY SLIDER — Add to style.css
   (Replace/override existing .hp-cat-row rules)
   ============================================ */

/* Wrapper: positions prev/next arrows */
.hp-cat-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Scrollable track */
.hp-cat-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;          /* Firefox */
    -ms-overflow-style: none;       /* IE/Edge */
    padding: 8px 4px 12px;          /* breathing room so hover shadow isn't clipped */
    flex: 1;
    min-width: 0;
}

.hp-cat-track::-webkit-scrollbar { display: none; } /* Chrome/Safari */

/* Each category item — fixed width so exactly N are visible */
.hp-cat-track .hp-cat-item {
    flex: 0 0 110px;                /* desktop: ~5 items visible at 1240px */
    max-width: 110px;
    scroll-snap-align: start;
    min-width: 0;
}

/* Prev / Next arrow buttons */
.hp-cat-arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(107,66,38,0.18);
    background-color: var(--white);
    color: var(--green-deep);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, opacity 0.2s;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(45,80,22,0.08);
}

.hp-cat-arrow:hover { background-color: var(--green-pale); }

/* ---- Tablet (max 980px): 4 items visible ---- */
@media (max-width: 980px) {
    .hp-cat-track .hp-cat-item {
        flex: 0 0 100px;
        max-width: 100px;
    }
    .hp-cat-track { gap: 16px; }
}

/* ---- Mobile (max 600px): 3 items visible ---- */
@media (max-width: 600px) {
    .hp-cat-slider-wrap { gap: 4px; }

    .hp-cat-track {
        gap: 12px;
        padding: 6px 2px 10px;
    }

    .hp-cat-track .hp-cat-item {
        flex: 0 0 62px;
        max-width: 62px;
    }

    .hp-cat-arrow {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .hp-cat-item h5 { font-size: 11px; }
}
/* ============================================
   ABOUT PAGE
   ============================================ */

/*.about-page-section {*/
/*    padding: 56px 0 70px;*/
/*    background-color: var(--cream-soft);*/
/*}*/

/*.about-page-card {*/
/*    max-width: 640px;*/
/*    margin: 0 auto;*/
/*    background-color: var(--cream);*/
/*    border: 1px solid rgba(107,66,38,0.14);*/
/*    border-radius: 20px;*/
/*    padding: 44px 40px;*/
/*    text-align: center;*/
/*}*/

/*.about-page-title {*/
/*    font-family: 'Fraunces', serif;*/
/*    font-size: 30px;*/
/*    color: var(--green-deep);*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*    margin-bottom: 26px;*/
/*}*/

/*.about-page-title i {*/
/*    color: var(--green-fresh);*/
/*    font-size: 20px;*/
/*}*/

/*.about-page-story p {*/
/*    font-size: 14.5px;*/
/*    color: var(--ink);*/
/*    line-height: 1.8;*/
/*    max-width: 480px;*/
/*    margin: 0 auto 18px;*/
/*}*/

/*.about-page-story p:last-child { margin-bottom: 0; }*/

/*.about-page-divider {*/
/*    margin: 30px 0;*/
/*    color: var(--gold);*/
/*    font-size: 14px;*/
/*}*/

/*.about-page-subtitle {*/
/*    font-family: 'Fraunces', serif;*/
/*    font-size: 19px;*/
/*    letter-spacing: 0.04em;*/
/*    color: var(--green-deep);*/
/*    margin-bottom: 22px;*/
/*}*/

/*.about-page-contact {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 14px;*/
/*    max-width: 360px;*/
/*    margin: 0 auto 28px;*/
/*    text-align: left;*/
/*}*/

/*.about-contact-row {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 14px;*/
/*    font-size: 14px;*/
/*    color: var(--ink);*/
/*    text-decoration: none;*/
/*}*/

/*.about-contact-icon {*/
/*    flex-shrink: 0;*/
/*    width: 36px;*/
/*    height: 36px;*/
/*    border-radius: 50%;*/
/*    background-color: var(--green-deep);*/
/*    color: var(--white);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-size: 14px;*/
/*}*/

/*.about-page-social {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    gap: 12px;*/
/*}*/

/*.about-social-label {*/
/*    font-size: 13px;*/
/*    font-weight: 600;*/
/*    color: var(--brown-light);*/
/*    letter-spacing: 0.04em;*/
/*}*/

/*.about-social-icons {*/
/*    display: flex;*/
/*    gap: 12px;*/
/*}*/

/*.about-social-icons a {*/
/*    width: 38px;*/
/*    height: 38px;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: var(--white);*/
/*    font-size: 16px;*/
/*}*/

/*.about-social-icons a:nth-child(1) { background-color: #E1306C; }*/
/*.about-social-icons a:nth-child(2) { background-color: #1877F2; }*/
/*.about-social-icons a:nth-child(3) { background-color: #25D366; }*/

/*@media (max-width: 600px) {*/
/*    .about-page-section { padding: 32px 0 48px; }*/
/*    .about-page-card { padding: 30px 22px; border-radius: 16px; }*/
/*    .about-page-title { font-size: 24px; }*/
/*    .about-page-story p { font-size: 13.5px; }*/
/*}*/

/* ============================================
   ABOUT PAGE — Redesigned (image-based layout)
   ============================================ */

/* ---- Hero ---- */
.about-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 15, 0.55);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
    max-width: 720px;
    padding: 60px 24px;
}

.about-hero-content h1 {
    color: #fff;
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 18px;
    text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}

.about-hero-sub {
    color: rgba(255,255,255,0.92);
    font-size: 16px;
    margin-bottom: 26px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.about-hero-btn { margin: 0 auto; }

/* ---- Our Story ---- */
.about-story-section {
    padding: 56px 0;
    background-color: var(--cream-soft);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-story-img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-story-img img { width: 100%; height: 100%; object-fit: cover; }

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brown-copper);
    margin-bottom: 10px;
}

.about-story-text h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.about-story-text p {
    font-size: 14.5px;
    color: var(--ink);
    line-height: 1.75;
    margin-bottom: 14px;
}

/* ---- Why Choose Us ---- */
.about-why-section {
    padding: 52px 0;
    background-color: var(--white);
}

.about-section-heading {
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-why-card {
    background-color: var(--cream-soft);
    border: 1px solid rgba(107,66,38,0.10);
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
}

.about-why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--green-deep);
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 3px solid var(--gold);
}

.about-why-card h4 {
    font-size: 16px;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-why-card p {
    font-size: 13px;
    color: var(--brown-light);
    line-height: 1.6;
}

/* ---- Inside Our Kitchen ---- */
.about-inside-section {
    padding: 52px 0;
    background-color: var(--cream-soft);
}

.about-eyebrow-center {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brown-copper);
    margin-bottom: 8px;
}

.about-inside-sub {
    font-size: 14px;
    color: var(--brown-light);
    margin-top: 6px;
}

.about-inside-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.about-inside-img {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: 12px;
}

.about-inside-img img { width: 100%; height: 100%; object-fit: cover; }

.about-inside-item p {
    text-align: center;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
}

/* ---- Bottom CTA Strip ---- */
.about-cta-strip {
    background-color: #1A1714;
    padding: 36px 0;
}

.about-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    text-align: center;
}

.about-cta-content h3 {
    color: #fff;
    font-size: 22px;
    margin: 0;
}

.about-cta-btn {
    background-color: var(--green-fresh);
    color: #fff;
    white-space: nowrap;
}

.about-cta-btn:hover { background-color: var(--green-deep); }

/* ---- Responsive ---- */
@media (max-width: 980px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-why-grid { grid-template-columns: 1fr; gap: 16px; }
    .about-inside-grid { grid-template-columns: 1fr; gap: 16px; }
    .about-hero-content h1 { font-size: 32px; }
}

@media (max-width: 600px) {
    .about-hero { min-height: 360px; }
    .about-hero-content h1 { font-size: 26px; }
    .about-hero-content { padding: 40px 20px; }
    .about-story-section, .about-why-section, .about-inside-section { padding: 32px 0; }
    .about-cta-content { flex-direction: column; gap: 16px; }
    .about-cta-content h3 { font-size: 18px; }
}

/* ============================================
   MENU PAGE — Extra Styles
   Append at bottom of style.css
   ============================================ */

/* ---- Menu Hero ---- */
.menu-hero {
    background-color: var(--cream);
    padding: 40px 0 28px;
    border-bottom: 1px solid rgba(107,66,38,0.10);
}

.menu-hero .hp-script { display: block; margin-bottom: 6px; }
.menu-hero h1 { font-size: 32px; margin-bottom: 6px; }
.menu-hero p  { font-size: 14px; color: var(--brown-light); }

/* ---- Filter / Sort Bar ---- */
.menu-filter-wrap {
    background-color: var(--white);
    border-bottom: 1px solid rgba(107,66,38,0.10);
    position: sticky;
    top: 126px;   /* top-bar 38px + navbar 88px */
    z-index: 50;
    padding: 10px 0;
}

.menu-filter-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.menu-result-count {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--green-deep);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.menu-filter-divider {
    flex: 1;
    height: 1px;
    background: rgba(107,66,38,0.10);
    min-width: 20px;
}

.menu-sort-select {
    border: 1.5px solid rgba(107,66,38,0.18);
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 13.5px;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background-color: var(--cream-soft);
    cursor: pointer;
    outline: none;
}

.menu-sort-select:focus { border-color: var(--green-fresh); }

/* ---- Dish Grid — equal cards ---- */
.menu-dish-grid {
    /* Override hp-dish-row: use auto-fill so any number of products
       fills the row evenly, min 200px per card */
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    gap: 20px !important;
}

/* Equal card height — flex column so button sticks to bottom */
.menu-dish-grid .hp-dish-card {
    display: flex;
    flex-direction: column;
}

.menu-dish-grid .hp-dish-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Push Add to Cart button to bottom of every card */
.menu-dish-grid .hp-add-btn,
.menu-dish-grid form { margin-top: auto; }

/* Fixed aspect ratio image — equal height no matter what ---- */
.menu-dish-grid .hp-dish-img {
    aspect-ratio: 1 / 1;   /* square, same as index.php cards */
    overflow: hidden;
    background-color: var(--green-pale);
}

.menu-dish-grid .hp-dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* always fills, never stretches */
    transition: transform 0.3s ease;
}

.menu-dish-grid .hp-dish-card:hover .hp-dish-img img { transform: scale(1.05); }

/* Category tag badge on card */
.menu-dish-cat-tag {
    display: inline-block;
    background-color: var(--green-pale);
    color: var(--green-deep);
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Description line under title */
.menu-dish-desc {
    font-size: 12px;
    color: var(--brown-light);
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Active category highlight */
.menu-cat-active .hp-cat-item h5 { color: var(--green-deep); }

/* Empty state */
.menu-empty {
    text-align: center;
    padding: 60px 0;
    color: var(--brown-light);
}

.menu-empty i { font-size: 48px; opacity: 0.3; display: block; margin-bottom: 16px; }
.menu-empty p { font-size: 15px; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
    .menu-filter-wrap { top: 68px; }
    .menu-dish-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)) !important;
    }
}

@media (max-width: 600px) {
    .menu-hero { padding: 24px 0 18px; }
    .menu-hero h1 { font-size: 24px; }
    .menu-filter-wrap { top: 68px; }
    .menu-dish-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .menu-dish-grid .hp-dish-body { padding: 10px 12px 12px; }
    .menu-dish-grid .hp-dish-body h4 { font-size: 12.5px; }
}

/* ===================== SUBSCRIPTION BUILDER PAGE ===================== */
/* Append this block to the end of your existing style.css.
   Uses your logo palette: #2D5016 (dark green), #6B4226 (brown),
   #F4EFE3 (cream), #3F7D20 (light green) — Fraunces + Inter. */

.subscription-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
}

.sub-hero {
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px 16px;
  background: #F4EFE3;
  border-radius: 16px;
  margin-bottom: 8px;
}

.sub-hero h1 {
  font-family: 'Fraunces', serif;
  color: #2D5016;
  font-size: 28px;
  margin-bottom: 8px;
}

.sub-hero p {
  color: #6B4226;
  font-family: 'Inter', sans-serif;
}

.sub-alert {
  grid-column: 1 / -1;
  background: #fff7e6;
  border: 1px solid #f0c36d;
  border-radius: 10px;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
}
.sub-alert a { color: #2D5016; font-weight: 600; }

.sub-wizard { display: flex; flex-direction: column; gap: 24px; }

.sub-step {
  background: #fff;
  border: 1px solid #e8e2d4;
  border-radius: 14px;
  padding: 20px;
}

.sub-step h2 {
  font-family: 'Fraunces', serif;
  color: #2D5016;
  font-size: 18px;
  margin-bottom: 14px;
}

.sub-hint { color: #6B4226; font-size: 13px; margin-top: 6px; }

.sub-field-group { margin-bottom: 16px; }
.sub-field-group label {
  display: block;
  font-weight: 600;
  color: #2D5016;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.sub-field-group select,
.sub-field-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
}

.sub-checkbox-row { display: flex; gap: 18px; flex-wrap: wrap; }
.sub-checkbox-row label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: #3F7D20;
}

.sub-toggle { display: flex; align-items: center; gap: 8px; font-weight: 500; }

.sub-meta { font-size: 13px; color: #6B4226; margin-top: 8px; }

/* Menu tabs (Step 2) */
.sub-menu-tabs { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.sub-tab-btn {
  padding: 8px 18px;
  border: 1px solid #3F7D20;
  background: #fff;
  color: #3F7D20;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.sub-tab-btn.active { background: #3F7D20; color: #fff; }

.sub-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}

.sub-product-card {
  border: 2px solid #e8e2d4;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.sub-product-card.selected { border-color: #2D5016; box-shadow: 0 0 0 2px rgba(45,80,22,0.2); }
.sub-product-card img { width: 100%; height: 100px; object-fit: cover; display: block; }
.sub-product-info { padding: 8px 10px; }
.sub-product-name { display: block; font-weight: 600; font-size: 13px; color: #2D5016; }
.sub-product-price { display: block; font-size: 12px; color: #3F7D20; margin-top: 2px; }

/* Sticky summary */
.sub-summary {
  position: sticky;
  top: 20px;
  align-self: start;
  background: #F4EFE3;
  border-radius: 14px;
  padding: 20px;
  height: fit-content;
}
.sub-summary h3 {
  font-family: 'Fraunces', serif;
  color: #2D5016;
  margin-bottom: 14px;
}
.sub-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #6B4226;
  padding: 6px 0;
}
.sub-summary hr { border: none; border-top: 1px solid #ddd3bb; margin: 10px 0; }

.sub-confirm-btn {
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  background: #2D5016;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}
.sub-confirm-btn:disabled { background: #aab8a0; cursor: not-allowed; }

@media (max-width: 768px) {
  .subscription-page { grid-template-columns: 1fr; }
  .sub-summary { position: static; }
}
/* ═══════════════════════════════════════════════════════════════════
   SUBSCRIPTION PAGE — customer/subscription.php
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────────── */
.sb-hero {
  display: flex; align-items: center; gap: 32px;
  padding: 40px 5vw 36px; background: var(--cream-soft);
  border-bottom: 1px solid rgba(107,66,38,0.08);
}
.sb-hero-left { flex: 1; }
.sb-hero-left h1 {
  font-family: 'Fraunces', serif; font-size: 38px; font-weight: 700;
  color: var(--ink); line-height: 1.25; margin-bottom: 10px;
}
.sb-hero-left h1 span { color: var(--green-fresh); }
.sb-hero-sub { font-size: 15.5px; color: var(--brown-light); margin-bottom: 22px; line-height: 1.6; }
.sb-trust-row { display: flex; gap: 20px; flex-wrap: wrap; }
.sb-trust-row span {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  font-size: 12.5px; font-weight: 600; color: var(--ink); gap: 4px;
}
.sb-trust-row span i { font-size: 22px; color: var(--green-fresh); }
.sb-trust-row small { font-size: 11px; color: var(--brown-light); font-weight: 400; }
.sb-hero-right { position: relative; flex-shrink: 0; width: 340px; }
.sb-hero-right img { width: 100%; border-radius: 16px; object-fit: cover; max-height: 220px; }
.sb-hero-card {
  position: absolute; top: 12px; right: 12px;
  background: var(--green-deep); color: #fff; border-radius: 12px;
  padding: 14px 18px; text-align: center; min-width: 150px;
}
.sb-hero-card strong { display: block; font-size: 13.5px; margin-bottom: 10px; }
.sb-hero-card-icons { display: flex; gap: 12px; justify-content: center; margin-bottom: 8px; }
.sb-hero-card-icons span { display: flex; flex-direction: column; align-items: center; font-size: 11px; gap: 4px; }
.sb-hero-card-icons i { font-size: 18px; }
.sb-hero-card p { font-size: 12px; margin: 0 0 2px; }
.sb-hero-card small { font-size: 11px; opacity: 0.8; }

/* ── Already active banner ──────────────────────────────────────── */
.sb-already-active {
  margin: 24px 5vw; padding: 16px 20px; background: var(--green-pale);
  border: 1px solid var(--green-fresh); border-radius: 10px;
  font-size: 14px; color: var(--green-deep);
}
.sb-already-active a { color: var(--green-deep); font-weight: 600; margin-left: 8px; }

/* ── Page body (wizard + sticky panel) ─────────────────────────── */
.sb-page-body {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 32px 5vw; max-width: 1280px; margin: 0 auto;
}
.sb-wizard { flex: 1; min-width: 0; }

/* ── Step shell ─────────────────────────────────────────────────── */
.sb-step {
  background: #fff; border: 1px solid rgba(107,66,38,0.1);
  border-radius: 14px; padding: 24px 26px; margin-bottom: 20px;
}
.sb-step-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 18px;
}
.sb-step-label span {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--green-deep); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.sb-step-desc { font-size: 13.5px; color: var(--brown-light); margin: -10px 0 16px; }

/* ── Step 1 ─────────────────────────────────────────────────────── */
.sb-step1-cols { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 24px; }
.sb-s1col h4 { font-size: 13px; font-weight: 600; color: var(--brown-light); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px; }

/* Duration type cards */
.sb-duration-types { display: flex; gap: 10px; }
.sb-dtype-card {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 14px 8px; border: 1.5px solid rgba(107,66,38,0.18);
  border-radius: 12px; cursor: pointer; text-align: center;
  font-size: 13px; font-weight: 600; color: var(--ink);
  transition: all .15s; position: relative;
}
.sb-dtype-card input { position: absolute; opacity: 0; pointer-events: none; }
.sb-dtype-card i { font-size: 22px; color: var(--green-fresh); }
.sb-dtype-card small { font-size: 11px; color: var(--brown-light); font-weight: 400; }
.sb-dtype-card.selected,
.sb-dtype-card:has(input:checked) {
  border-color: var(--green-deep); background: var(--green-pale); color: var(--green-deep);
}

/* Slot cards */
.sb-slots-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sb-slot-card {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 12px 6px; border: 1.5px solid rgba(107,66,38,0.15);
  border-radius: 10px; cursor: pointer; font-size: 12.5px; font-weight: 600;
  color: var(--ink); text-align: center; transition: all .15s; position: relative;
}
.sb-slot-card input { position: absolute; opacity: 0; pointer-events: none; }
.sb-slot-card i { font-size: 20px; color: var(--green-fresh); }
.sb-slot-card:has(input:checked) {
  border-color: var(--green-deep); background: var(--green-pale); color: var(--green-deep);
}

/* Duration chips */
.sb-duration-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.sb-chip {
  position: relative; padding: 8px 16px; border: 1.5px solid rgba(107,66,38,0.18);
  border-radius: 20px; cursor: pointer; font-size: 13.5px; font-weight: 600;
  color: var(--ink); transition: all .15s; display: flex; align-items: center; gap: 6px;
}
.sb-chip input { position: absolute; opacity: 0; pointer-events: none; }
.sb-chip.selected,
.sb-chip:has(input:checked) {
  border-color: var(--green-deep); background: var(--green-deep); color: #fff;
}
.sb-popular-tag {
  font-size: 10px; background: #f39c12; color: #fff;
  border-radius: 6px; padding: 2px 6px; font-weight: 600;
}
.sb-total-meals-line { font-size: 13px; color: var(--brown-light); margin: 0; }
.sb-total-meals-line strong { color: var(--green-deep); }

/* ── Step 2 ─────────────────────────────────────────────────────── */
.sb-step2-body { display: flex; gap: 24px; }
.sb-menu-col { flex: 1; min-width: 0; }
.sb-why-col { width: 210px; flex-shrink: 0; }
.sb-why-box {
  background: var(--cream-soft); border: 1px solid rgba(107,66,38,0.12);
  border-radius: 12px; padding: 16px 18px;
}
.sb-why-box h5 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 12px; display:flex; gap:8px; }
.sb-why-box ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.sb-why-box li { font-size: 12.5px; color: var(--ink); display: flex; gap: 8px; align-items: flex-start; }
.sb-why-box li i { color: var(--green-fresh); margin-top: 1px; flex-shrink: 0; }

/* Tabs */
.sb-menu-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; align-items: center; }
.sb-menu-tab-btn {
  padding: 8px 18px; border-radius: 20px; border: 1.5px solid rgba(107,66,38,0.18);
  background: #fff; cursor: pointer; font-size: 13.5px; font-weight: 600;
  color: var(--ink); display: inline-flex; align-items: center; gap: 7px; transition: all .15s;
}
.sb-menu-tab-btn.active { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }
.sb-tab-count {
  background: rgba(255,255,255,0.25); border-radius: 10px;
  font-size: 11px; padding: 1px 6px; font-weight: 700;
}
.sb-menu-tab-btn:not(.active) .sb-tab-count { background: var(--green-pale); color: var(--green-deep); }
.sb-hint { font-size: 13.5px; color: var(--brown-light); padding: 8px 0; }

/* Product cards grid */
.sb-menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px;
  margin-bottom: 14px;
}
.sb-item-card {
  border: 1.5px solid rgba(107,66,38,0.12); border-radius: 12px;
  background: #fff; overflow: hidden; cursor: pointer;
  transition: border-color .15s, box-shadow .15s; position: relative;
}
.sb-item-card.selected { border-color: var(--green-deep); box-shadow: 0 0 0 2px rgba(45,80,22,0.12); }
.sb-item-tick {
  position: absolute; top: 7px; right: 7px; width: 20px; height: 20px;
  background: var(--green-deep); border-radius: 50%; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 10px; z-index: 1;
}
.sb-food-dot {
  position: absolute; top: 7px; left: 7px; width: 12px; height: 12px;
  border-radius: 50%; border: 1.5px solid #333; z-index: 1;
}
.sb-food-dot.veg { background: #27ae60; border-color: #27ae60; }
.sb-food-dot.nonveg { background: #e74c3c; border-color: #e74c3c; }
.sb-item-card img { width: 100%; height: 90px; object-fit: cover; display: block; }
.sb-item-info { padding: 8px 8px 4px; }
.sb-item-name { display: block; font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.3; margin-bottom: 2px; }
.sb-item-price { font-size: 12px; color: var(--green-fresh); font-weight: 700; }
.sb-qty-row {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 6px 8px 8px; border-top: 1px solid rgba(107,66,38,0.08);
}
.sb-qty-btn {
  width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--green-deep);
  background: #fff; color: var(--green-deep); font-size: 15px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .12s;
}
.sb-qty-btn:hover { background: var(--green-deep); color: #fff; }
.sb-qty-num { min-width: 16px; text-align: center; font-size: 13px; font-weight: 700; color: var(--ink); }
.sb-view-more-btn {
  display: flex; align-items: center; gap: 8px; margin: 0 auto;
  background: none; border: 1.5px solid rgba(107,66,38,0.2);
  border-radius: 20px; padding: 8px 20px; font-size: 13.5px;
  font-weight: 600; color: var(--brown-copper); cursor: pointer;
}
.sb-view-more-btn:hover { background: var(--cream-soft); }

/* ── Step 3 ─────────────────────────────────────────────────────── */
.sb-step3-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.sb-field-group { display: flex; flex-direction: column; gap: 6px; }
.sb-field-group label { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.sb-field-group label em { font-style: normal; color: var(--brown-light); font-weight: 400; }
.sb-field-group select,
.sb-field-group input[type="text"],
.sb-field-group input[type="date"] {
  padding: 10px 12px; border: 1.5px solid rgba(107,66,38,0.2);
  border-radius: 8px; font-size: 13.5px; background: #fff; color: var(--ink);
  outline: none; transition: border-color .15s; width: 100%; box-sizing: border-box;

}
.sb-field-group select:focus,
.sb-field-group input:focus { border-color: var(--green-fresh); }
.sb-link { font-size: 12px; color: var(--green-fresh); text-decoration: none; margin-top: 2px; }

/* ── Step 4 Plan Cards ───────────────────────────────────────────── */
.sb-plan-cards { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.sb-plan-card {
  flex: 1; min-width: 150px; max-width: 200px;
  border: 2px solid rgba(107,66,38,0.15); border-radius: 14px;
  padding: 18px 16px; text-align: center; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: relative; transition: all .15s; background: #fff;
}
.sb-plan-card input { position: absolute; opacity: 0; pointer-events: none; }
.sb-plan-card.popular { border-color: var(--green-deep); box-shadow: 0 4px 16px rgba(45,80,22,0.12); }
.sb-plan-card.selected { border-color: var(--green-deep); background: var(--green-pale); }
.sb-popular-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--green-fresh); color: #fff; font-size: 10.5px; font-weight: 700;
  border-radius: 0 0 8px 8px; padding: 3px 12px; white-space: nowrap;
}
.sb-plan-name { font-size: 15px; font-weight: 700; color: var(--ink); margin-top: 10px; }
.sb-plan-days { font-size: 12.5px; color: var(--brown-light); }
.sb-plan-meals-count { font-size: 12.5px; color: var(--brown-light); }
.sb-plan-price-block { margin: 8px 0; }
.sb-plan-live-price { font-size: 22px; font-weight: 700; color: var(--green-deep); display: block; }
.sb-plan-per-meal { font-size: 11.5px; color: var(--brown-light); }
.sb-plan-choose-btn {
  display: block; width: 100%; padding: 9px 0; border-radius: 8px;
  background: var(--green-deep); color: #fff; font-size: 13px; font-weight: 600;
  border: none; cursor: pointer; margin-top: 4px; transition: background .15s;
  text-decoration: none; text-align: center;
}
.sb-plan-choose-btn:hover { background: var(--green-fresh); }
.sb-outline-btn { background: #fff !important; color: var(--green-deep) !important; border: 1.5px solid var(--green-deep) !important; }
.sb-custom-card { border-style: dashed; cursor: default; }
.sb-bottom-strip {
  display: flex; gap: 16px; flex-wrap: wrap; padding: 12px 16px;
  background: var(--green-pale); border-radius: 10px;
  font-size: 13px; color: var(--green-deep); font-weight: 500;
}

/* ── Step 5 Payment ──────────────────────────────────────────────── */
.sb-payment-row { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.sb-pay-methods { display: flex; gap: 12px; flex-wrap: wrap; }
.sb-pay-opt {
  display: flex; align-items: center; gap: 8px; padding: 10px 16px;
  border: 1.5px solid rgba(107,66,38,0.15); border-radius: 10px;
  font-size: 13px; font-weight: 600; color: var(--ink); background: #fff;
}
.sb-pay-opt i { color: var(--green-fresh); font-size: 16px; }
.sb-secure-box {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: var(--cream-soft); border-radius: 10px; border: 1px solid rgba(107,66,38,0.1);
}
.sb-secure-box i { font-size: 26px; color: var(--green-fresh); }
.sb-secure-box strong { display: block; font-size: 13.5px; color: var(--ink); }
.sb-secure-box small { font-size: 12px; color: var(--brown-light); }
.sb-confirm-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px;
  background: var(--green-deep); color: #fff; border: none; border-radius: 10px;
  font-size: 15px; font-weight: 700; cursor: pointer; transition: background .15s;
}
.sb-confirm-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.sb-confirm-btn:not(:disabled):hover { background: var(--green-fresh); }

/* ── Sticky Summary Panel ────────────────────────────────────────── */
.sb-summary-panel {
  width: 270px; flex-shrink: 0; position: sticky; top: 90px;
  background: var(--green-deep); color: #fff; border-radius: 14px;
  padding: 22px 20px;
}
.sb-summary-panel h4 { font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.sb-summary-rows { display: flex; flex-direction: column; gap: 10px; }
.sb-srow { display: flex; justify-content: space-between; font-size: 13px; }
.sb-srow span:first-child { opacity: 0.75; }
.sb-srow span:last-child { font-weight: 600; }
.sb-srow-total span:last-child { font-size: 20px; font-weight: 700; }
.sb-divider { border: none; border-top: 1px solid rgba(255,255,255,0.2); margin: 14px 0; }
.sb-save-tag {
  font-size: 12px; background: rgba(255,255,255,0.15); border-radius: 8px;
  padding: 6px 10px; text-align: center; margin: 10px 0 0;
}
.sb-summary-panel .sb-confirm-btn {
  width: 100%; justify-content: center; margin-top: 14px;
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.4);
}
.sb-summary-panel .sb-confirm-btn:not(:disabled):hover { background: rgba(255,255,255,0.25); }

/* ── What You Get strip ──────────────────────────────────────────── */
.sb-what-you-get {
  display: flex; gap: 0; background: var(--cream); margin-top: 8px;
  border-top: 1px solid rgba(107,66,38,0.1);
}
.sb-wyg-left, .sb-wyg-right { flex: 0 0 220px; padding: 28px 24px; }
.sb-wyg-center { flex: 1; padding: 28px 24px; text-align: center; border-left: 1px solid rgba(107,66,38,0.1); border-right: 1px solid rgba(107,66,38,0.1); }
.sb-wyg-center h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 18px; }
.sb-wyg-icons { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.sb-wyg-icons span { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 12px; color: var(--brown-light); }
.sb-wyg-icons i { font-size: 24px; color: var(--green-fresh); }
.sb-freshly-badge {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--green-deep); color: #fff; border-radius: 14px; padding: 18px 20px; text-align: center;
}
.sb-freshly-badge i { font-size: 22px; }
.sb-freshly-badge strong { font-size: 15px; line-height: 1.25; }
.sb-freshly-badge span { font-size: 11px; opacity: 0.8; }
.sb-wyg-right h5 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.sb-wyg-right p { font-size: 14px; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.sb-wyg-right i { color: var(--green-fresh); }
.sb-wyg-right small { font-size: 12px; color: var(--brown-light); }

/* ── Mobile ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .sb-hero { flex-direction: column; padding: 24px 4vw; }
  .sb-hero-right { width: 100%; }
  .sb-hero-left h1 { font-size: 28px; }
  .sb-page-body { flex-direction: column; padding: 20px 4vw; }
  .sb-summary-panel { width: 100%; position: static; }
  .sb-step1-cols { grid-template-columns: 1fr; }
  .sb-step3-grid { grid-template-columns: 1fr; }
  .sb-step2-body { flex-direction: column; }
  .sb-why-col { width: 100%; }
  .sb-plan-cards { gap: 10px; }
  .sb-plan-card { min-width: 130px; }
  .sb-menu-grid { grid-template-columns: repeat(auto-fill, minmax(110px,1fr)); }
  .sb-what-you-get { flex-direction: column; }
  .sb-wyg-left, .sb-wyg-right { flex: none; }
  .sb-wyg-center { border: none; }
}

/* Day tabs for subscription wizard */
.sb-day-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.sb-day-tab-btn {
  padding: 7px 14px; border-radius: 8px; border: 1.5px solid rgba(107,66,38,0.18);
  background: #fff; cursor: pointer; font-size: 13px; font-weight: 600;
  color: var(--ink); transition: all .15s; display: inline-flex; align-items: center; gap: 6px;
}
.sb-day-tab-btn.active { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }
.sb-day-tab-btn.done { border-color: var(--green-fresh); color: var(--green-fresh); }
.sb-day-tab-btn.active.done { background: var(--green-fresh); border-color: var(--green-fresh); color: #fff; }
.sb-slot-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }

/* Day progress sidebar */
.sb-day-progress { margin-top: 16px; background: var(--cream-soft); border-radius: 12px; padding: 14px 16px; }
.sb-day-progress h5 { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.sb-prog-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--ink); padding: 5px 0;
  border-bottom: 1px solid rgba(107,66,38,0.08); cursor: pointer;
}
.sb-prog-row:hover { color: var(--green-deep); }
.sb-prog-row.done { color: var(--green-fresh); font-weight: 600; }

/* Summary day list */
.sb-sum-day-row {
  display: flex; justify-content: space-between;
  font-size: 12.5px; padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ================================================================
   FULL MENU OVERLAY — "View Full Menu" full-page popup
   ================================================================ */
body.sb-no-scroll { overflow: hidden; }

.sb-fullmenu-overlay {
  display: none;              /* toggled to flex via JS */
  flex-direction: column;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--cream-soft);
}

.sb-fullmenu-header {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px 24px;
  background: var(--white);
  border-bottom: 1px solid rgba(107,66,38,0.12);
  box-shadow: 0 2px 10px rgba(45,80,22,0.06);
  flex-shrink: 0;
}
.sb-fullmenu-back {
  display: flex; align-items: center; gap: 8px;
  background: var(--green-pale); color: var(--green-deep);
  border: none; border-radius: 8px;
  padding: 9px 14px; font-size: 13.5px; font-weight: 600;
  cursor: pointer; flex-shrink: 0;
}
.sb-fullmenu-back:hover { background: var(--green-deep); color: #fff; }
.sb-fullmenu-title { flex: 1; min-width: 160px; }
.sb-fullmenu-title h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0; }
.sb-fullmenu-title span { font-size: 12.5px; color: var(--brown-light); }
.sb-fullmenu-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--cream-soft);
  border: 1.5px solid rgba(107,66,38,0.15);
  border-radius: 8px; padding: 9px 12px;
  min-width: 220px; flex-shrink: 0;
}
.sb-fullmenu-search i { color: var(--brown-light); font-size: 13px; }
.sb-fullmenu-search input {
  border: none; background: transparent; outline: none;
  font-size: 13.5px; color: var(--ink); width: 100%;
}

.sb-fullmenu-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px 100px;
}
.sb-fullmenu-cat-heading {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: var(--green-deep);
  margin: 22px 0 12px;
}
.sb-fullmenu-cat-heading:first-child { margin-top: 0; }

.sb-fullmenu-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 24px;
  background: var(--white);
  border-top: 1px solid rgba(107,66,38,0.12);
  box-shadow: 0 -2px 10px rgba(45,80,22,0.06);
  flex-shrink: 0;
}
.sb-fullmenu-footer-info { display: flex; flex-direction: column; gap: 2px; }
.sb-fullmenu-footer-info span { font-size: 12px; color: var(--brown-light); }
.sb-fullmenu-footer-info strong { font-size: 18px; color: var(--green-deep); }
.sb-fullmenu-footer .sb-confirm-btn { width: auto; padding: 12px 28px; }

/* ================================================================
   ABOUT PAGE — June 2026 Redesign
   Append this entire block to the END of assets/css/style.css
   ================================================================ */

/* ---- SHARED ---- */
.ab-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--green-fresh);
    margin-bottom: 10px;
}
.ab-section-h2 {
    font-family: 'Fraunces', serif;
    font-size: 28px; color: var(--green-deep);
    margin-bottom: 14px; line-height: 1.3;
}

/* ---- SECTION 1: HERO ---- */
.ab-hero {
    background: var(--cream-soft);
    padding: 0;
    overflow: hidden;
}
.ab-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    gap: 0;
}
.ab-hero-text {
    padding: 60px 40px 60px 0;
    display: flex; flex-direction: column; justify-content: center;
}
.ab-hero-h1 {
    font-family: 'Fraunces', serif;
    font-size: 40px; line-height: 1.2;
    color: var(--green-deep); margin-bottom: 16px;
}
.ab-hero-highlight {
    display: block;
    color: var(--green-fresh);
    font-style: italic;
}
.ab-hero-desc {
    font-size: 15px; color: var(--brown-light);
    line-height: 1.7; margin-bottom: 28px; max-width: 460px;
}
.ab-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.ab-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px; border-radius: 8px; font-weight: 600;
    border: 2px solid var(--green-deep); color: var(--green-deep);
    background: transparent; text-decoration: none; transition: all .2s;
}
.ab-btn-outline:hover { background: var(--green-deep); color: #fff; }
.ab-hero-img {
    height: 480px; overflow: hidden;
}
.ab-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.ab-hero-ph { height: 100%; }

/* ---- SECTION 2: OUR STORY ---- */
.ab-story-section { padding: 64px 0; background: #fff; }
.ab-story-grid {
    display: grid;
    grid-template-columns: 220px 1fr 200px;
    gap: 36px; align-items: start;
}
.ab-founder-col { text-align: center; }
.ab-founder-img-wrap {
    width: 200px; height: 240px;
    border-radius: 16px; overflow: hidden;
    margin: 0 auto 12px;
    border: 3px solid var(--cream);
}
.ab-founder-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ab-founder-card {
    background: var(--cream);
    border-radius: 10px; padding: 10px 14px;
    display: inline-block;
}
.ab-founder-card strong {
    display: block; font-size: 14px; color: var(--green-deep); font-family: 'Fraunces', serif;
}
.ab-founder-card span { font-size: 11px; color: var(--brown-light); }

.ab-story-text-col .ab-story-h2 { font-size: 24px; }
.ab-story-text-col p { font-size: 14px; color: var(--brown-light); line-height: 1.75; margin-bottom: 14px; }
.ab-mission-line {
    display: flex; align-items: center; gap: 8px;
    background: var(--cream); padding: 12px 16px;
    border-radius: 8px; font-size: 13px; color: var(--green-deep);
    font-weight: 600; margin-top: 8px;
}

.ab-partners-col { display: flex; flex-direction: column; gap: 10px; }
.ab-partner-card {
    background: #fff; border: 1px solid #e8e2d4;
    border-radius: 10px; padding: 12px 16px;
    display: flex; align-items: center; justify-content: center;
    min-height: 52px;
}
.ab-partner-card img { max-height: 36px; max-width: 140px; object-fit: contain; }
.ab-partner-placeholder {
    font-size: 13px; font-weight: 700;
    color: var(--green-deep);
}

/* ---- SECTION 3: WHY ---- */
.ab-why-section { padding: 64px 0; background: var(--cream-soft); }
.ab-why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px; margin-top: 28px;
}
.ab-why-card {
    background: #fff; border-radius: 14px;
    padding: 20px 14px; text-align: center;
    border: 1px solid #e8e2d4;
    transition: transform .2s, box-shadow .2s;
}
.ab-why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(45,80,22,.1); }
.ab-why-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--cream); margin: 0 auto 12px;
    display: flex; align-items: center; justify-content: center;
}
.ab-why-icon i { font-size: 20px; color: var(--green-fresh); }
.ab-why-card h5 { font-size: 13px; font-weight: 700; color: var(--green-deep); margin-bottom: 6px; }
.ab-why-card p { font-size: 12px; color: var(--brown-light); line-height: 1.6; margin: 0; }

/* ---- SECTION 4: CATEGORIES ---- */
.ab-categories-section { padding: 64px 0; background: #fff; }
.ab-cat-grid {
    display: flex; flex-wrap: wrap;
    gap: 16px; justify-content: center;
    margin-top: 28px;
}
.ab-cat-item { text-decoration: none; text-align: center; width: 90px; }
.ab-cat-thumb {
    width: 80px; height: 80px; border-radius: 50%;
    overflow: hidden; border: 3px solid var(--cream);
    margin: 0 auto 8px;
    transition: border-color .2s, transform .2s;
}
.ab-cat-item:hover .ab-cat-thumb { border-color: var(--green-fresh); transform: scale(1.05); }
.ab-cat-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ab-cat-item p { font-size: 12px; font-weight: 600; color: var(--green-deep); margin: 0; }

/* ---- SECTION 5: DESI FOODS + MICROGREENS ---- */
.ab-desi-section { padding: 64px 0; background: var(--cream-soft); }
.ab-desi-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px; align-items: start;
}
.ab-desi-sub { font-size: 13px; color: var(--brown-light); margin-bottom: 18px; }
.ab-desi-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.ab-desi-item { text-align: center; text-decoration: none; width: 100px; }
.ab-desi-img {
    width: 90px; height: 90px; border-radius: 12px; overflow: hidden;
    margin: 0 auto 6px; border: 2px solid #e8e2d4;
    transition: border-color .2s;
}
.ab-desi-item:hover .ab-desi-img { border-color: var(--green-fresh); }
.ab-desi-img img { width: 100%; height: 100%; object-fit: cover; }
.ab-desi-item p { font-size: 12px; color: var(--green-deep); font-weight: 600; margin: 0; }
.ab-desi-cta { margin-top: 4px; }

.ab-micro-card {
    background: var(--green-deep); border-radius: 16px;
    overflow: hidden; color: #fff;
}
.ab-micro-img { height: 160px; overflow: hidden; }
.ab-micro-img img { width: 100%; height: 100%; object-fit: cover; }
.ab-micro-body { padding: 18px; }
.ab-micro-body h4 {
    font-family: 'Fraunces', serif; font-size: 16px;
    margin-bottom: 10px; color: #fff;
}
.ab-micro-body p { font-size: 12.5px; color: rgba(255,255,255,.8); line-height: 1.65; margin-bottom: 14px; }
.ab-micro-badges {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.ab-micro-badges span {
    background: rgba(255,255,255,.15); border-radius: 20px;
    padding: 4px 10px; font-size: 11px; color: #fff;
    display: flex; align-items: center; gap: 4px;
}
.ab-micro-btn {
    background: #fff; color: var(--green-deep);
    font-size: 12.5px; padding: 9px 16px;
    display: inline-flex; align-items: center; gap: 6px;
    border-radius: 8px; text-decoration: none; font-weight: 600;
    transition: opacity .2s;
}
.ab-micro-btn:hover { opacity: .9; }

/* ---- SECTION 6: DRINKS ---- */
.ab-drinks-section { padding: 64px 0; background: #fff; }
.ab-drinks-row {
    display: flex; gap: 16px; flex-wrap: wrap;
    justify-content: center; margin-top: 28px;
}
.ab-drink-item { text-align: center; text-decoration: none; width: 90px; }
.ab-drink-img {
    width: 80px; height: 80px; border-radius: 50%;
    overflow: hidden; margin: 0 auto 6px;
    border: 3px solid var(--cream);
    transition: border-color .2s;
}
.ab-drink-item:hover .ab-drink-img { border-color: var(--green-fresh); }
.ab-drink-img img { width: 100%; height: 100%; object-fit: cover; }
.ab-drink-item p { font-size: 11.5px; color: var(--green-deep); font-weight: 600; margin: 0; }

/* ---- SECTION 7: CATERING ---- */
.ab-catering-section { padding: 64px 0; background: var(--cream-soft); }
.ab-catering-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px; align-items: center;
}
.ab-occasions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-top: 20px;
}
.ab-occ-item { text-align: center; }
.ab-occ-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: #fff; margin: 0 auto 8px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--cream);
}
.ab-occ-icon i { font-size: 22px; color: var(--green-deep); }
.ab-occ-item p { font-size: 12px; color: var(--green-deep); font-weight: 600; margin: 0; }
.ab-catering-img-wrap {
    position: relative; border-radius: 16px; overflow: hidden; height: 320px;
}
.ab-catering-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ab-catering-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(45,80,22,.88); padding: 20px 22px;
}
.ab-catering-overlay p { color: #fff; font-size: 13px; margin-bottom: 12px; }
.ab-catering-btn {
    background: #fff; color: var(--green-deep);
    padding: 9px 18px; border-radius: 8px;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; text-decoration: none;
    transition: opacity .2s;
}
.ab-catering-btn:hover { opacity: .9; }

/* ---- SECTION 8: PROMISE + NUMBERS ---- */
.ab-promise-section { padding: 64px 0; background: #fff; }
.ab-promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: start;
}
.ab-promise-list {
    list-style: none; padding: 0; margin: 0 0 20px;
}
.ab-promise-list li {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 0; border-bottom: 1px solid var(--cream);
    font-size: 14px; color: var(--green-deep); font-weight: 500;
}
.ab-promise-list li i { color: var(--green-fresh); flex-shrink: 0; }
.ab-promise-food-img {
    height: 180px; border-radius: 14px; overflow: hidden;
    border: 2px solid var(--cream);
}
.ab-promise-food-img img { width: 100%; height: 100%; object-fit: cover; }

.ab-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px; margin-top: 16px;
}
.ab-stat-card {
    background: var(--cream); border-radius: 14px;
    padding: 20px 14px; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.ab-stat-icon { margin-bottom: 4px; }
.ab-stat-icon i { font-size: 24px; color: var(--green-fresh); }
.ab-stat-num {
    font-family: 'Fraunces', serif;
    font-size: 28px; font-weight: 700; color: var(--green-deep);
    line-height: 1;
}
.ab-stat-label { font-size: 12px; color: var(--brown-light); font-weight: 600; }

/* ---- SECTION 9: VISION ---- */
.ab-vision-section { padding: 64px 0; background: var(--cream-soft); }
.ab-vision-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 32px; align-items: center;
}
.ab-vision-left, .ab-vision-right {
    height: 240px; border-radius: 16px; overflow: hidden;
}
.ab-vision-left img, .ab-vision-right img { width: 100%; height: 100%; object-fit: cover; }
.ab-vision-text { text-align: center; }
.ab-vision-h2 {
    font-family: 'Fraunces', serif;
    font-size: 22px; color: var(--green-deep);
    margin-bottom: 12px; line-height: 1.4;
}
.ab-vision-text p { font-size: 14px; color: var(--brown-light); line-height: 1.7; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .ab-why-grid { grid-template-columns: repeat(3, 1fr); }
    .ab-story-grid { grid-template-columns: 180px 1fr 160px; gap: 20px; }
}
@media (max-width: 768px) {
    .ab-hero-inner { grid-template-columns: 1fr; }
    .ab-hero-img { height: 240px; }
    .ab-hero-text { padding: 40px 0 24px; }
    .ab-hero-h1 { font-size: 28px; }
    .ab-story-grid { grid-template-columns: 1fr; }
    .ab-founder-col { display: none; }
    .ab-partners-col { flex-direction: row; flex-wrap: wrap; }
    .ab-partner-card { flex: 1 1 45%; min-width: 120px; }
    .ab-why-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-desi-grid { grid-template-columns: 1fr; }
    .ab-catering-grid { grid-template-columns: 1fr; }
    .ab-promise-grid { grid-template-columns: 1fr; }
    .ab-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-vision-inner { grid-template-columns: 1fr; }
    .ab-vision-left, .ab-vision-right { display: none; }
}
@media (max-width: 480px) {
    .ab-why-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-occasions-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   CATERING PAGE — Online Catering Order
   Append this entire block to the END of assets/css/style.css
   ================================================================ */

/* ---- HERO ---- */
.cat-hero {
    position: relative; min-height: 220px;
    background: linear-gradient(135deg, #1a3a0a 0%, #2D5016 50%, #4a7a20 100%);
    overflow: hidden;
}
.cat-hero-overlay {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.cat-hero-overlay::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,58,10,.85) 0%, rgba(45,80,22,.78) 50%, rgba(74,122,32,.68) 100%);
}
.cat-hero-inner {
    position: relative; z-index: 1;
    padding: 48px 0 32px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
}
.cat-hero-text h1 {
    font-family: 'Fraunces', serif;
    font-size: 44px; color: #fff; margin-bottom: 8px;
}
.cat-hero-text p { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 24px; }
.cat-trust-row {
    display: flex; gap: 24px; flex-wrap: wrap; justify-content: center;
}
.cat-trust-row span {
    display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,.9); font-size: 13px; font-weight: 600;
}
.cat-trust-row i { color: #f0c36d; }

/* ---- LAYOUT ---- */
.cat-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px; align-items: start;
    padding-top: 28px; padding-bottom: 48px;
}
.cat-steps-col { display: flex; flex-direction: column; gap: 20px; }

/* ---- STEP CARD ---- */
.cat-step-card {
    background: #fff; border: 1px solid #e8e2d4;
    border-radius: 16px; padding: 24px; overflow: hidden;
}
.cat-step-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px; flex-wrap: wrap;
}
.cat-step-header h2 {
    font-family: 'Fraunces', serif; font-size: 18px;
    color: var(--green-deep); margin: 0; flex: 1;
}
.cat-step-num {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--green-deep); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.cat-view-full-link {
    font-size: 13px; color: var(--green-fresh); font-weight: 600;
    text-decoration: none; display: flex; align-items: center; gap: 5px;
}

/* ---- FUNCTION TYPE GRID ---- */
.cat-fn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 12px;
}
.cat-fn-card {
    border: 2px solid #e8e2d4; border-radius: 12px;
    padding: 12px 8px; text-align: center; cursor: pointer;
    transition: all .18s;
}
.cat-fn-card:hover { border-color: var(--green-fresh); }
.cat-fn-card.active {
    border-color: var(--green-deep); background: #eaf4e0;
    position: relative;
}
.cat-fn-card.active::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; top: 4px; right: 6px;
    font-size: 10px; color: var(--green-fresh);
}
.cat-fn-card i { font-size: 22px; color: var(--green-deep); display: block; margin-bottom: 6px; }
.cat-fn-card span { font-size: 11.5px; font-weight: 600; color: var(--green-deep); }

/* ---- EVENT DETAILS FORM ---- */
.cat-form-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.cat-form-group { display: flex; flex-direction: column; gap: 4px; }
.cat-form-group label { font-size: 13px; font-weight: 600; color: var(--green-deep); }
.cat-form-group-full { grid-column: 1 / -1; }
.cat-input {
    padding: 10px 12px; border: 1px solid rgba(107,66,38,.25);
    border-radius: 8px; font-family: 'Inter', sans-serif;
    font-size: 14px; color: #333; width: 100%; box-sizing: border-box;
    transition: border-color .15s;
}
.cat-input:focus { border-color: var(--green-fresh); outline: none; }
.cat-req { color: #e74c3c; }

/* ---- PLATE QUANTITY SLIDER ---- */
.cat-slider-row {
    display: flex; align-items: center; gap: 14px; margin-bottom: 6px;
}
.cat-slider {
    flex: 1; accent-color: var(--green-deep); height: 6px;
}
.cat-slider-val {
    background: var(--green-deep); color: #fff;
    padding: 4px 12px; border-radius: 20px;
    font-weight: 700; font-size: 15px; min-width: 50px; text-align: center;
}
.cat-slider-labels {
    display: flex; justify-content: space-between;
    font-size: 11px; color: var(--brown-light); margin-bottom: 8px;
}
.cat-discount-msg {
    background: #eaf4e0; border: 1px solid var(--green-fresh);
    border-radius: 10px; padding: 10px 14px; font-size: 13px;
    color: var(--green-deep); margin: 12px 0; display: flex;
    align-items: center; gap: 8px;
}
.cat-discount-table-wrap {
    background: var(--cream); border-radius: 10px; padding: 14px;
    margin-top: 14px;
}
.cat-discount-table-wrap strong { font-size: 13px; color: var(--green-deep); }
.cat-discount-table {
    width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 13px;
}
.cat-discount-table th { background: var(--green-deep); color: #fff; padding: 7px 12px; text-align: left; }
.cat-discount-table td { padding: 7px 12px; border-bottom: 1px solid #ddd; }
.cat-disc-row-active { background: #eaf4e0 !important; font-weight: 700; }
.cat-disc-row-active td:last-child { color: var(--green-fresh); }

/* ---- FOOD CATEGORY ---- */
.cat-foodcat-row { display: flex; gap: 16px; flex-wrap: wrap; }
.cat-foodcat-card {
    border: 2px solid #e8e2d4; border-radius: 14px;
    padding: 18px 24px; text-align: center; cursor: pointer;
    transition: all .18s; display: flex; flex-direction: column;
    align-items: center; gap: 10px; min-width: 120px;
}
.cat-foodcat-card:hover { border-color: var(--green-fresh); }
.cat-foodcat-card.active { border-color: var(--green-deep); background: #eaf4e0; }
.cat-foodcat-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--cream); display: flex;
    align-items: center; justify-content: center; gap: 4px;
}
.cat-foodcat-icon.veg i { font-size: 22px; color: var(--green-fresh); }
.cat-foodcat-icon.non-veg i { font-size: 22px; color: #c0392b; }
.cat-foodcat-card span { font-size: 13px; font-weight: 600; color: var(--green-deep); }

/* ---- MENU ITEMS ---- */
.cat-menu-wrapper { display: flex; flex-direction: column; gap: 20px; }
.cat-menu-category h4 {
    font-size: 13px; font-weight: 700; letter-spacing: 1px;
    color: var(--brown-light); border-bottom: 2px solid var(--cream);
    padding-bottom: 6px; margin-bottom: 12px; text-transform: uppercase;
}
.cat-menu-items-list {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}
.cat-menu-item {
    border: 2px solid #e8e2d4; border-radius: 10px;
    overflow: hidden; cursor: pointer; transition: border-color .15s;
}
.cat-menu-item:hover { border-color: var(--green-fresh); }
.cat-menu-item.cat-item-selected { border-color: var(--green-deep); background: #eaf4e0; }
.cat-item-hidden { display: none; }
.cat-item-with-img img {
    width: 100%; height: 90px; object-fit: cover; display: block;
}
.cat-item-label {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 10px; cursor: pointer; font-size: 13px;
    color: var(--green-deep); font-weight: 500;
}
.cat-item-label input[type="checkbox"] { accent-color: var(--green-deep); width: 16px; height: 16px; flex-shrink: 0; }
.cat-food-dot { font-size: 8px; }
.dot-veg { color: var(--green-fresh); }
.dot-non-veg { color: #c0392b; }
.cat-show-more-btn {
    grid-column: 1 / -1; background: none; border: 1px dashed var(--green-fresh);
    border-radius: 8px; color: var(--green-fresh); padding: 8px;
    cursor: pointer; font-size: 13px; font-weight: 600; margin-top: 4px;
}
.cat-menu-empty {
    background: var(--cream); border-radius: 10px; padding: 20px;
    color: var(--brown-light); font-size: 14px; display: flex;
    align-items: center; gap: 10px;
}
.cat-why-box {
    background: var(--cream); border-radius: 12px; padding: 16px;
    margin-top: 20px;
}
.cat-why-box h4 { font-size: 14px; color: var(--green-deep); margin-bottom: 10px; }
.cat-why-box ul { list-style: none; padding: 0; margin: 0; }
.cat-why-box li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--green-deep); padding: 5px 0;
}
.cat-why-box li i { color: var(--green-fresh); }

/* ---- SUBMIT ---- */
.cat-form-error {
    background: #fdecea; border: 1px solid #e74c3c;
    border-radius: 8px; padding: 10px 14px;
    color: #a33; font-size: 13px; margin-bottom: 12px;
}
.cat-submit-row {
    display: flex; align-items: center; gap: 14px;
    flex-wrap: wrap; margin-top: 20px;
}
.cat-or { font-size: 13px; color: var(--brown-light); font-weight: 700; }
.cat-quote-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; background: var(--green-deep); color: #fff;
    border: none; border-radius: 10px; font-weight: 700; font-size: 15px;
    cursor: pointer; text-decoration: none; transition: opacity .2s;
}
.cat-quote-btn:hover { opacity: .9; }
.cat-consult-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px; border: 2px solid var(--green-deep);
    color: var(--green-deep); border-radius: 10px; font-weight: 700;
    font-size: 14px; text-decoration: none; transition: all .2s;
}
.cat-consult-btn:hover { background: var(--green-deep); color: #fff; }
.cat-success-msg {
    text-align: center; padding: 32px;
}
.cat-success-msg i { font-size: 56px; color: var(--green-fresh); margin-bottom: 16px; display: block; }
.cat-success-msg h3 { font-family: 'Fraunces', serif; color: var(--green-deep); font-size: 24px; }
.cat-success-msg p { color: var(--brown-light); margin-top: 8px; }

.cat-receipt {
    text-align: left; max-width: 420px; margin: 22px auto 0;
    background: var(--cream-soft); border: 1px solid rgba(107,66,38,0.15);
    border-radius: 14px; padding: 18px 20px;
}
.cat-receipt-brand {
    text-align: center; font-family: 'Fraunces', serif;
    font-weight: 700; font-size: 15px; color: var(--green-deep);
    margin-bottom: 10px; padding-bottom: 10px;
    border-bottom: 2px solid rgba(45,80,22,0.15);
}
.cat-receipt-meta {
    display: flex; justify-content: space-between;
    font-size: 12px; color: var(--brown-light); padding: 2px 0;
}
.cat-receipt h4 {
    font-family: 'Fraunces', serif; font-size: 15px; color: var(--green-deep);
    margin: 12px 0 10px; text-align: center;
}
.cat-receipt-items { list-style: none; margin: 0 0 12px; padding: 0; }
.cat-receipt-items li {
    display: flex; justify-content: space-between; gap: 8px;
    font-size: 13px; color: var(--ink); padding: 4px 0;
    border-bottom: 1px dashed rgba(107,66,38,0.15);
}
.cat-receipt-items li span:last-child { color: var(--brown-light); flex-shrink: 0; }
.cat-receipt-row {
    display: flex; justify-content: space-between;
    font-size: 13px; color: var(--ink); padding: 5px 0;
}
.cat-receipt-total {
    font-weight: 700; font-size: 15.5px; color: var(--green-deep);
    margin-top: 6px; padding-top: 10px;
    border-top: 2px solid rgba(45,80,22,0.15);
}
.cat-receipt-note {
    font-size: 12px; color: var(--brown-light); margin-top: 14px;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.cat-receipt-actions {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
    margin-top: 14px;
}
.cat-receipt-actions button { margin: 0; }
@media (max-width: 480px) {
    .cat-receipt-actions { flex-direction: column; }
    .cat-receipt-actions button { width: 100%; justify-content: center; }
}

/* ---- RIGHT SIDEBAR ---- */
.cat-summary-col { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 20px; }
.cat-summary-box {
    background: var(--green-deep); color: #fff;
    border-radius: 16px; padding: 20px;
}
.cat-summary-box h3 {
    font-family: 'Fraunces', serif; font-size: 16px;
    color: #fff; margin-bottom: 16px; text-align: center;
    text-transform: uppercase; letter-spacing: 1px;
}
.cat-sum-row {
    display: flex; justify-content: space-between;
    font-size: 13.5px; color: rgba(255,255,255,.85); padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.cat-sum-items {
    background: rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 14px;
}
.cat-sum-items-label {
    display: block; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .05em;
    color: rgba(255,255,255,.65); margin-bottom: 6px;
}
.cat-sum-items-list {
    list-style: none; margin: 0; padding: 0;
    max-height: 160px; overflow-y: auto;
}
.cat-sum-items-list li {
    display: flex; justify-content: space-between; gap: 8px;
    font-size: 12.5px; color: #fff; padding: 3px 0;
}
.cat-sum-items-list li span:last-child { color: rgba(255,255,255,.7); flex-shrink: 0; }
.cat-sum-discount span:last-child { color: #f0c36d; }
.cat-sum-total {
    display: flex; justify-content: space-between;
    font-family: 'Fraunces', serif;
    font-size: 20px; font-weight: 700; color: #fff;
    margin-top: 12px; padding-top: 12px;
    border-top: 2px solid rgba(255,255,255,.3);
}
.cat-sum-savings {
    text-align: center; font-size: 13px;
    color: #f0c36d; margin-top: 8px;
}
.cat-summary-offer-box {
    background: #fff7e6; border: 1px solid #f0c36d;
    border-radius: 12px; padding: 14px 16px;
    display: flex; align-items: center; gap: 12px;
}
.cat-offer-icon { font-size: 28px; color: #f0c36d; }
.cat-summary-offer-box p { font-size: 13px; color: var(--green-deep); margin: 0; }
.cat-why-sidebar {
    background: #fff; border: 1px solid #e8e2d4;
    border-radius: 12px; padding: 16px;
}
.cat-why-sidebar h4 { font-size: 14px; color: var(--green-deep); margin-bottom: 10px; font-weight: 700; }
.cat-why-sidebar ul { list-style: none; padding: 0; margin: 0; }
.cat-why-sidebar li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--green-deep); padding: 5px 0;
    border-bottom: 1px solid var(--cream);
}
.cat-why-sidebar li:last-child { border: none; }
.cat-why-sidebar li i { color: var(--green-fresh); }
.cat-contact-card {
    background: var(--cream); border-radius: 16px;
    padding: 20px; text-align: center;
}
.cat-contact-icon { font-size: 32px; color: var(--green-deep); margin-bottom: 10px; display: block; }
.cat-contact-card h4 { font-family: 'Fraunces', serif; color: var(--green-deep); font-size: 15px; margin-bottom: 8px; }
.cat-contact-card p { font-size: 12.5px; color: var(--brown-light); margin-bottom: 14px; }
.cat-or-sm { font-size: 12px; color: var(--brown-light); margin: 10px 0; font-weight: 700; }
.cat-consult-btn-sm {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px; border: 2px solid var(--green-deep);
    color: var(--green-deep); border-radius: 8px; font-weight: 600;
    font-size: 13px; text-decoration: none;
}

/* ---- BOTTOM STRIP ---- */
.cat-bottom-strip {
    background: var(--green-deep); padding: 28px 0;
}
.cat-strip-inner {
    display: flex; justify-content: space-between;
    align-items: center; gap: 20px; flex-wrap: wrap;
}
.cat-strip-item {
    display: flex; align-items: center; gap: 12px; color: #fff;
    text-align: left;
}
.cat-strip-item i { font-size: 28px; color: #f0c36d; }
.cat-strip-item span { font-size: 14px; font-weight: 600; }
.cat-strip-item small { font-weight: 400; opacity: .8; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .cat-layout { grid-template-columns: 1fr; }
    .cat-summary-col { position: static; }
    .cat-hero-text h1 { font-size: 30px; }
}
@media (max-width: 640px) {
    .cat-form-grid { grid-template-columns: 1fr; }
    .cat-fn-grid { grid-template-columns: repeat(3, 1fr); }
    .cat-foodcat-row { flex-direction: column; }
    .cat-strip-inner { flex-direction: column; align-items: flex-start; }
    .cat-trust-row { gap: 12px; }
}

/* ================================================================
   HOMEPAGE — "More Ways To Eat With Us" (Catering + Subscription)
   ================================================================ */

.hp-services-section {
    padding: 52px 0 60px;
    background-color: var(--white);
}

.hp-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.hp-service-card {
    background-color: var(--cream-soft);
    border: 1px solid rgba(107,66,38,0.10);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px var(--shadow-soft);
}

.hp-service-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.hp-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hp-service-card:hover .hp-service-img img { transform: scale(1.04); }

.hp-service-body {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hp-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    background-color: var(--green-pale);
    color: var(--green-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.hp-service-body h3 {
    font-family: 'Fraunces', serif;
    font-size: 21px;
    color: var(--ink);
    margin-bottom: 10px;
}

.hp-service-body p {
    font-size: 13.5px;
    color: var(--brown-light);
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

.hp-service-body .btn { align-self: flex-start; }

@media (max-width: 900px) {
    .hp-services-grid { grid-template-columns: 1fr; gap: 20px; }
    .hp-services-section { padding: 40px 0 48px; }
}

@media (max-width: 600px) {
    .hp-service-body { padding: 18px 18px 22px; }
    .hp-service-body h3 { font-size: 18px; }
}
/* ================================================================
   CATERING RECEIPT — PRINT / SAVE-AS-PDF ISOLATION
   Triggered by adding .cat-print-mode to <body> (see catering.js).
   Hides everything except #catPrintArea so only the receipt prints.
   ================================================================ */
@media print {
    body.cat-print-mode * { visibility: hidden; }
    body.cat-print-mode #catPrintArea,
    body.cat-print-mode #catPrintArea * { visibility: visible; }
    body.cat-print-mode #catPrintArea {
        position: absolute; left: 0; top: 0; width: 100%;
        margin: 0; border: none; box-shadow: none;
    }
}

.ab-stats-food-img {
    height: 180px; border-radius: 14px; overflow: hidden;
    border: 2px solid var(--cream); margin-top: 30px;
}
.ab-stats-food-img img { width: 100%; height: 100%; object-fit: cover; }

/* ================================================================
   FOOTER MARQUEE — "We Are Available On" scrolling logo strip
   Managed via Admin → CMS → Footer Platforms
   ================================================================ */
.footer-marquee-section {
    position: relative;
    z-index: 2;
    margin: 8px 0 36px;
    padding: 22px 0 4px;
    border-top: 1px solid rgba(244,238,221,0.15);
    border-bottom: 1px solid rgba(244,238,221,0.15);
}
.footer-marquee-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(244,238,221,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}
.footer-marquee-label i { color: var(--gold); }

.footer-marquee-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.footer-marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: footer-marquee-scroll 38s linear infinite;
}

.footer-marquee-wrap:hover .footer-marquee-track {
    animation-play-state: paused;
}

.footer-marquee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    width: 92px;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-marquee-item:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-marquee-logo {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(244,238,221,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.footer-marquee-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}
.footer-marquee-logo i {
    font-size: 22px;
    color: rgba(244,238,221,0.75);
}

.footer-marquee-name {
    font-size: 11px;
    font-weight: 600;
    color: rgba(244,238,221,0.75);
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes footer-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (max-width: 600px) {
    .footer-marquee-section { margin: 4px 0 24px; padding: 18px 0 4px; }
    .footer-marquee-track { gap: 26px; animation-duration: 26s; }
    .footer-marquee-item { width: 74px; }
    .footer-marquee-logo { width: 48px; height: 48px; border-radius: 12px; }
    .footer-marquee-logo i { font-size: 18px; }
    .footer-marquee-name { font-size: 10px; max-width: 74px; }
}

@media (prefers-reduced-motion: reduce) {
    .footer-marquee-track { animation: none; }
    .footer-marquee-wrap { overflow-x: auto; }
}

/* Show only on Desktop, hide on Tablet & Mobile */
.cat-desktop-only {
    display: block; /* ya flex, jo bhi .cat-bottom-strip ka default display ho */
}

@media (max-width: 1024px) {
    .cat-desktop-only {
        display: none !important;
    }
}