/* =====================================================
   DesiLicious Zaiyka — Main Stylesheet
   ===================================================== */

/* ── CSS Variables ── */
:root {
    --saffron:    #F4A200;
    --crimson:    #C0392B;
    --forest:     #2D6A4F;
    --cream:      #FDF6E3;
    --dark:       #0D1F1F;
    --gold:       #D4AF37;
    --teal:       #0D9488;
    --teal-light: #14B8A6;
    --teal-dark:  #0A6E65;
    --teal-glow:  rgba(13, 148, 136, .35);
    --card-bg:    #FFFBF0;
    --border:     #E8D5A3;
    --shadow:     0 8px 40px rgba(13, 31, 31, 0.13);
}

/* ── Reset ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Base ── */
body {
    background: var(--cream);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(244,162,0,.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(192,57,43,.07) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* =====================================================
   HEADER
   ===================================================== */
header {
    position: relative;
    z-index: 10;
    background: linear-gradient(160deg, #041414 0%, #0a2a2a 40%, #0D3B38 70%, #0a2020 100%);
    padding: 0;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -60px; left: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(13,148,136,.3) 0%, transparent 70%);
    pointer-events: none;
}

header::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(244,162,0,.18) 0%, transparent 70%);
    pointer-events: none;
}

.header-top-band {
    background: linear-gradient(90deg, var(--teal-dark), var(--teal), var(--teal-light), var(--teal), var(--teal-dark));
    height: 5px;
    width: 100%;
    overflow: hidden;
}

.header-top-band::after {
    content: '';
    display: block;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.4) 50%, transparent 100%);
    animation: shimmer 2.8s infinite;
}

@keyframes shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 38px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.h-rule {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 500px;
}

.h-rule-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-light), transparent);
    opacity: .6;
}

.h-rule-diamond {
    width: 8px; height: 8px;
    background: var(--teal-light);
    transform: rotate(45deg);
    box-shadow: 0 0 8px var(--teal-glow);
    flex-shrink: 0;
}

.ornament {
    color: var(--teal-light);
    font-size: .75rem;
    letter-spacing: 6px;
    opacity: .8;
    text-transform: uppercase;
    font-weight: 500;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 6px 0 4px;
}

.logo-medallion {
    position: relative;
    width: 78px; height: 78px;
    flex-shrink: 0;
}

.logo-medallion svg {
    width: 100%; height: 100%;
    filter: drop-shadow(0 0 12px var(--teal-glow));
}

.logo-medallion::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px dashed rgba(13,148,136,.5);
    animation: spin 18s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

h1.brand {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.1rem, 5.5vw, 3.6rem);
    font-weight: 900;
    color: var(--cream);
    text-align: center;
    line-height: 1.05;
    letter-spacing: 1px;
    text-shadow: 0 2px 20px rgba(13,148,136,.25);
}

h1.brand .highlight {
    background: linear-gradient(135deg, var(--saffron), #FFD166, var(--saffron));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1.brand .teal-word {
    background: linear-gradient(135deg, var(--teal-light), #5EEAD4, var(--teal-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: .78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    font-weight: 400;
    margin-top: 2px;
}

.tagline em {
    color: var(--teal-light);
    font-style: normal;
    font-weight: 600;
}

.header-bottom-band {
    height: 4px;
    background: linear-gradient(90deg, var(--teal-dark) 0%, var(--teal-light) 25%, var(--gold) 50%, var(--teal-light) 75%, var(--teal-dark) 100%);
    box-shadow: 0 2px 20px rgba(13,148,136,.4);
}

/* =====================================================
   NAV BAR
   ===================================================== */
.nav-bar {
    position: relative;
    z-index: 10;
    background: linear-gradient(90deg, #062020, #0a2e2e, #062020);
    padding: 14px 24px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    border-bottom: 2px solid rgba(13,148,136,.3);
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.week-tab {
    background: rgba(13,148,136,.08);
    border: 1px solid rgba(13,148,136,.3);
    color: rgba(255,255,255,.75);
    font-family: 'Poppins', sans-serif;
    font-size: .78rem;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: all .25s;
    letter-spacing: .5px;
}

.week-tab:hover,
.week-tab.active {
    background: var(--teal);
    border-color: var(--teal-light);
    color: #fff;
    font-weight: 600;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--teal-glow);
}

/* =====================================================
   MAIN / LEGEND
   ===================================================== */
main {
    position: relative;
    z-index: 5;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.legend {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 500;
    color: #555;
}

.dot { width: 14px; height: 14px; border-radius: 3px; flex-shrink: 0; }
.dot.veg    { background: var(--forest); }
.dot.nonveg { background: var(--crimson); }

/* =====================================================
   WEEK SECTIONS — COLLAPSIBLE
   ===================================================== */
.week-section {
    margin-bottom: 16px;
    animation: fadeUp .5s ease both;
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: 0 4px 20px rgba(26,10,0,.07);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.week-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    background: var(--card-bg);
    user-select: none;
    transition: background .2s;
    border-bottom: 1.5px solid transparent;
}

.week-header:hover { background: #fff8e8; }

.week-section.open .week-header {
    background: linear-gradient(90deg, #fff8e7, #fffdf5);
    border-bottom-color: var(--border);
}

.week-label {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.week-label h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
}

.week-dates { font-size: .75rem; color: #999; font-weight: 400; white-space: nowrap; }

.label-line {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, var(--border), transparent);
}

.week-badge {
    background: linear-gradient(135deg, var(--saffron), #e07b00);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 20px;
    flex-shrink: 0;
}

.chevron {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(244,162,0,.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform .35s ease, background .2s;
    font-size: .75rem;
    color: var(--saffron);
}

.week-section.open .chevron {
    transform: rotate(180deg);
    background: var(--saffron);
    color: #fff;
}

.week-section:not(.open) .week-header h2 { color: #888; }
.week-section:not(.open) .week-header     { opacity: .85; }

.week-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .45s cubic-bezier(.4,0,.2,1), padding .35s ease;
    padding: 0 22px;
    background: var(--cream);
}

.week-section.open .week-body {
    max-height: 2000px;
    padding: 24px 22px 28px;
}

/* =====================================================
   FLYER CARDS
   ===================================================== */
.flyer-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.flyer-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .3s, box-shadow .3s;
    position: relative;
}

.flyer-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 60px rgba(26,10,0,.18);
}

.flyer-card .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px 10px;
}

.flyer-card.nonveg .card-header { border-bottom: 3px solid var(--crimson); }
.flyer-card.veg    .card-header { border-bottom: 3px solid var(--forest); }

.type-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 20px;
}

.type-badge.veg-badge {
    background: rgba(45,106,79,.12);
    color: var(--forest);
    border: 1.5px solid rgba(45,106,79,.3);
}

.type-badge.nonveg-badge {
    background: rgba(192,57,43,.1);
    color: var(--crimson);
    border: 1.5px solid rgba(192,57,43,.3);
}

.type-icon { font-size: 1rem; }

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.flyer-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: #f5ede0;
    overflow: hidden;
    cursor: pointer;
}

.flyer-image-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.flyer-image-wrap:hover img { transform: scale(1.04); }

.flyer-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px;
}

.flyer-card.nonveg .flyer-placeholder { background: linear-gradient(160deg, #fff5f4, #fde8e5); }
.flyer-card.veg    .flyer-placeholder { background: linear-gradient(160deg, #f2fbf6, #e0f5ea); }

.placeholder-icon { font-size: 3.5rem; }

.placeholder-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #aaa;
    text-align: center;
    line-height: 1.4;
}

.upload-btn {
    background: var(--saffron);
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .2s;
    font-family: 'Poppins', sans-serif;
}

.upload-btn:hover { background: #d48f00; transform: scale(1.05); }

.file-input { display: none; }

.view-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,10,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s, background .3s;
}

.flyer-image-wrap:hover .view-overlay {
    opacity: 1;
    background: rgba(26,10,0,.35);
}

.view-btn {
    background: rgba(255,255,255,.92);
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.remove-btn {
    position: absolute;
    top: 8px; right: 8px;
    background: rgba(192,57,43,.85);
    border: none;
    color: #fff;
    width: 28px; height: 28px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background .2s;
}

.remove-btn:hover { background: var(--crimson); }
.flyer-image-wrap.has-image .remove-btn { display: flex; }

/* =====================================================
   LIGHTBOX
   ===================================================== */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,4,0,.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#lightbox.open { display: flex; }

#lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(0,0,0,.6);
    animation: zoomIn .3s ease;
}

@keyframes zoomIn {
    from { transform: scale(.85); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

#lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color .2s;
}

#lightbox-close:hover { color: var(--saffron); }

/* =====================================================
   INFO SECTIONS — Pricing / Delivery / Payment / Contact
   ===================================================== */
.info-sections {
    position: relative;
    z-index: 5;
    background: linear-gradient(180deg, var(--cream) 0%, #f0f9f8 50%, var(--cream) 100%);
    padding: 0 0 60px;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    white-space: nowrap;
    color: var(--dark);
}

.section-heading h2 span { color: var(--teal); }

.sh-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-light), transparent);
    opacity: .4;
}

.sh-icon { font-size: 1.5rem; flex-shrink: 0; }

.section-divider {
    max-width: 1100px;
    margin: 48px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.sd-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13,148,136,.3), transparent);
}

.sd-gem {
    width: 8px; height: 8px;
    border-radius: 2px;
    transform: rotate(45deg);
    background: var(--teal-light);
    box-shadow: 0 0 8px var(--teal-glow);
    flex-shrink: 0;
}

/* ── Pricing ── */
.pricing-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.price-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(13,148,136,.14);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.price-card.featured::before {
    background: linear-gradient(90deg, var(--saffron), #FFD166, var(--saffron));
}

.price-card.featured {
    border-color: rgba(244,162,0,.4);
    background: linear-gradient(160deg, #fffdf5, #fff8e6);
}

.featured-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--saffron), #e07b00);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.price-emoji { font-size: 2.2rem; margin-bottom: 10px; display: block; }

.price-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.price-desc { font-size: .75rem; color: #888; margin-bottom: 14px; line-height: 1.5; }

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--teal);
    line-height: 1;
}

.price-card.featured .price-amount { color: var(--saffron); }

.price-unit { font-size: .75rem; color: #aaa; font-weight: 400; margin-top: 2px; }

.price-note { font-size: .7rem; color: var(--teal); margin-top: 10px; font-weight: 500; }

/* ── Delivery ── */
.delivery-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.delivery-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: var(--shadow);
    transition: transform .3s;
}

.delivery-card:hover { transform: translateY(-4px); }

.delivery-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(13,148,136,.15);
}

.delivery-card-title span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 10px;
    font-size: 1rem;
    flex-shrink: 0;
}

.delivery-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(13,148,136,.12);
    gap: 12px;
}

.delivery-row:last-child { border-bottom: none; }

.delivery-key { font-size: .8rem; color: #777; font-weight: 500; flex-shrink: 0; }

.delivery-val { font-size: .82rem; font-weight: 600; color: var(--dark); text-align: right; }
.delivery-val.teal    { color: var(--teal); }
.delivery-val.saffron { color: var(--saffron); }
.delivery-val.green   { color: var(--forest); }

.free-badge {
    display: inline-block;
    background: rgba(45,106,79,.12);
    color: var(--forest);
    border: 1px solid rgba(45,106,79,.3);
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}

/* ── Payment ── */
.payment-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.pay-method {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(13,31,31,.07);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    cursor: default;
}

.pay-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(13,148,136,.15);
    border-color: rgba(13,148,136,.4);
}

.pay-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.pay-name { font-size: .82rem; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.pay-sub  { font-size: .7rem; color: #999; }

.payment-note {
    background: linear-gradient(135deg, rgba(13,148,136,.07), rgba(13,148,136,.03));
    border: 1px solid rgba(13,148,136,.2);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .82rem;
    color: #555;
}

.payment-note-icon { font-size: 1.3rem; flex-shrink: 0; }
.payment-note strong { color: var(--teal); }

/* ── Contact ── */
.contact-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: var(--shadow);
}

.contact-card.highlight-card {
    background: linear-gradient(160deg, #041414, #0a2e2e);
    border-color: rgba(13,148,136,.3);
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px dashed rgba(13,148,136,.13);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon-wrap {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(13,148,136,.15), rgba(13,148,136,.05));
    border: 1px solid rgba(13,148,136,.2);
}

.contact-card.highlight-card .contact-icon-wrap {
    background: rgba(20,184,166,.15);
    border-color: rgba(20,184,166,.3);
}

.contact-label {
    font-size: .72rem;
    color: #aaa;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1px;
}

.contact-card.highlight-card .contact-label { color: rgba(255,255,255,.45); }

.contact-value { font-size: .9rem; font-weight: 600; color: var(--dark); }
.contact-card.highlight-card .contact-value { color: var(--teal-light); }

.contact-value a { color: inherit; text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }

.order-cta {
    margin-top: 18px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: #fff;
    border: none;
    padding: 13px 0;
    width: 100%;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .5px;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 4px 18px var(--teal-glow);
}

.order-cta:hover { opacity: .9; transform: translateY(-2px); }

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-btn {
    flex: 1;
    padding: 10px 8px;
    border-radius: 10px;
    border: 1.5px solid rgba(13,148,136,.25);
    background: rgba(13,148,136,.07);
    font-size: .75rem;
    font-weight: 600;
    color: var(--teal);
    cursor: pointer;
    text-align: center;
    transition: all .2s;
    font-family: 'Poppins', sans-serif;
}

.social-btn:hover {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
    transform: translateY(-2px);
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
    position: relative;
    z-index: 10;
    background: linear-gradient(160deg, #041414 0%, #0a2a2a 50%, #041414 100%);
    color: rgba(255,255,255,.45);
    text-align: center;
    padding: 0;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 200px;
    background: radial-gradient(ellipse, rgba(13,148,136,.15) 0%, transparent 70%);
    pointer-events: none;
}

.footer-top-band {
    height: 4px;
    background: linear-gradient(90deg, var(--teal-dark) 0%, var(--teal-light) 25%, var(--gold) 50%, var(--teal-light) 75%, var(--teal-dark) 100%);
    box-shadow: 0 -2px 20px rgba(13,148,136,.3);
}

.footer-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 24px 30px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: .5px;
}

.footer-logo .hl {
    background: linear-gradient(135deg, var(--saffron), #FFD166);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .tl {
    background: linear-gradient(135deg, var(--teal-light), #5EEAD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 380px;
    margin: 14px auto;
}

.footer-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
    opacity: .5;
}

.footer-divider-gem {
    width: 6px; height: 6px;
    background: var(--teal-light);
    transform: rotate(45deg);
    box-shadow: 0 0 6px var(--teal-glow);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: .75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-links span { color: rgba(255,255,255,.35); }

.footer-links em {
    font-style: normal;
    color: var(--teal-light);
    opacity: .75;
}

.footer-copy { font-size: .72rem; color: rgba(255,255,255,.25); letter-spacing: 1px; }
.footer-copy strong { color: var(--saffron); font-weight: 500; }

.footer-bottom-band {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--teal-dark), var(--teal), var(--teal-dark), transparent);
    opacity: .6;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 640px) {
    .flyer-row                    { grid-template-columns: 1fr; }
    .week-tab                     { font-size: .72rem; padding: 6px 12px; }
    .delivery-wrap, .contact-wrap { grid-template-columns: 1fr; }
    .pricing-grid                 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

.price-flyer-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .3s, box-shadow .3s;
}

    .price-flyer-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 48px rgba(13,148,136,.14);
    }

.price-flyer-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}
/* =====================================================
   ADMIN LOGIN PAGE
   ===================================================== */
.admin-login-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    background: linear-gradient(180deg, var(--cream) 0%, #f0f9f8 50%, var(--cream) 100%);
}

.admin-login-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(13,31,31,0.13);
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.admin-login-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 24px;
    position: relative;
}

    .admin-login-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--teal), var(--teal-light));
        margin: 10px auto 0;
        border-radius: 2px;
    }

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

    .form-group label {
        display: block;
        font-size: .85rem;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 6px;
    }

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid rgba(13,148,136,.3);
    border-radius: 10px;
    font-size: .9rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color .2s, box-shadow .2s;
}

    .form-control:focus {
        outline: none;
        border-color: var(--teal);
        box-shadow: 0 0 8px var(--teal-glow);
    }

.login-btn {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: #fff;
    border: none;
    padding: 10px 0;
    width: 100%;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .5px;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 4px 18px var(--teal-glow);
}

    .login-btn:hover {
        opacity: .9;
        transform: translateY(-2px);
    }

/* =====================================================
   ADMIN MENU UPLOAD PAGE
   ===================================================== */
.admin-upload-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.admin-upload-card,
.admin-overview-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(13,31,31,0.13);
    padding: 30px 26px;
    margin-bottom: 30px;
}

.admin-upload-title,
.overview-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
}

    .admin-upload-title::after,
    .overview-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--teal), var(--teal-light));
        margin: 10px 0;
        border-radius: 2px;
    }

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

    .form-group label {
        display: block;
        font-size: .85rem;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 6px;
    }

.form-control,
.form-control-file {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid rgba(13,148,136,.3);
    border-radius: 10px;
    font-size: .9rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color .2s, box-shadow .2s;
}

    .form-control:focus,
    .form-control-file:focus {
        outline: none;
        border-color: var(--teal);
        box-shadow: 0 0 8px var(--teal-glow);
    }

.upload-btn {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: #fff;
    border: none;
    padding: 10px 0;
    width: 100%;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .5px;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 4px 18px var(--teal-glow);
}

    .upload-btn:hover {
        opacity: .9;
        transform: translateY(-2px);
    }

/* ── Overview Table ── */
.overview-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

    .overview-table th,
    .overview-table td {
        padding: 10px 12px;
        border-bottom: 1px solid rgba(13,148,136,.15);
        font-size: .85rem;
    }

    .overview-table th {
        background: rgba(13,148,136,.08);
        color: var(--dark);
        font-weight: 700;
    }

.view-link {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
}

    .view-link:hover {
        text-decoration: underline;
    }

.delete-link {
    color: var(--crimson);
    font-weight: 600;
    text-decoration: none;
}

    .delete-link:hover {
        text-decoration: underline;
    }

.not-uploaded {
    color: #999;
    font-style: italic;
}


/* Pricing flyer uses same responsive rules as menu flyers */
.flyer-card.pricing {
    width: 100%;
}

    .flyer-card.pricing .flyer-image-wrap {
        width: 100%;
        aspect-ratio: 4/5; /* same as menu flyers */
        background: #f5ede0;
    }

    .flyer-card.pricing img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* important for full flyer visibility */
    }
.pricing-flyer-wrap {
    width: 100%;
    display: flex;
    justify-content: center; /* centers horizontally */
    align-items: center;
    margin: 0 auto;
    padding: 20px 0;
}

.pricing-flyer-img {
    max-width: 600px;      /* same width as menu flyers */
    width: 100%;           /* scales on mobile */
    height: auto;
    display: block;
    margin: 0 auto;        /* centers the image */
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(13,31,31,0.13);
}

.flyer-card.pricing {
    margin: 0 auto; /* centers the card */
    max-width: 600px; /* same width as menu flyers */
}


.admin-logout-btn {
    background: linear-gradient(135deg, var(--crimson), #e74c3c);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(192,57,43,.25);
    transition: all .2s ease;
}

    .admin-logout-btn:hover {
        background: #c0392b;
        transform: translateY(-2px);
    }
.admin-header-bar {
    display: flex;
    justify-content: space-between; /* left and right alignment */
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 0;
}

.admin-add-btn {
    background: linear-gradient(135deg, #0D9488, #14B8A6);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(13,148,136,.25);
    transition: all .2s ease;
}

    .admin-add-btn:hover {
        background: #0A6E65;
        transform: translateY(-2px);
    }

.admin-logout-btn {
    background: linear-gradient(135deg, #C0392B, #E74C3C);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(192,57,43,.25);
    transition: all .2s ease;
}

    .admin-logout-btn:hover {
        background: #A93226;
        transform: translateY(-2px);
    }
@media (max-width: 640px) {
    .admin-header-bar {
        flex-direction: column;
        gap: 10px;
    }
}
