/*
   THE CHUCK WAGON FOOD TRUCK CO.
   Premium Cowboy Theme — Mobile-First
   Est. 2026 • Provo, Utah
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Playfair+Display:wght@700;900&display=swap');

:root {
    --bg: #4A3628;
    --bg-section: #56412F;
    --card-bg: #6B533F;
    --parchment: #F5E6C8;
    --gold: #D4A853;
    --gold-glow: rgba(212, 168, 83, 0.18);
    --rust: #C0542B;
    --rust-dark: #A03D1A;
    --cream: #FAF0E0;
    --green: #5A9A3C;
    --text: #F5EDE0;
    --text-muted: #D4C4AD;
    --leather: #A47A56;
    --wood: #5E4636;
    --wood-light: #6E5543;
    --heading-font: 'Playfair Display', Georgia, serif;
    --body-font: 'Outfit', 'Segoe UI', sans-serif;
    --radius: 8px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 12px 36px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--heading-font);
    color: var(--gold);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ═══════════════════════════════════════
   PROMO BANNER
   ═══════════════════════════════════════ */
.promo-banner {
    background: linear-gradient(135deg, var(--rust) 0%, #8B2D12 50%, var(--rust) 100%);
    background-size: 200% 200%;
    animation: bannerShimmer 4s ease infinite;
    color: #fff;
    text-align: center;
    padding: 0.7rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    position: relative;
    z-index: 1001;
    text-decoration: none;
    cursor: pointer;
    transition: filter 0.2s;
}

.promo-banner:hover {
    filter: brightness(1.15);
}

.promo-banner i {
    font-size: 1.1rem;
    color: var(--gold);
}

.promo-banner .promo-highlight {
    color: var(--gold);
    font-weight: 800;
}

@keyframes bannerShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
header {
    background: var(--wood);
    border-bottom: 3px solid var(--leather);
    padding: 0.6rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05);
}

.brand-name {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--cream);
    padding: 0.3rem 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: all 0.25s;
}

nav a:hover,
nav a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    min-height: 80vh;
    background: linear-gradient(to bottom, rgba(17, 13, 7, 0.2) 0%, rgba(17, 13, 7, 0.7) 60%, rgba(17, 13, 7, 0.95) 100%),
        url('../images/hero-truck.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 1.5rem;
    position: relative;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    animation: heroFadeIn 1s ease-out;
}

.hero h1 {
    color: var(--cream);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    animation: heroFadeIn 1s ease-out 0.2s both;
}

.hero-tagline {
    font-family: var(--heading-font);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--gold);
    margin-bottom: 2rem;
    animation: heroFadeIn 1s ease-out 0.4s both;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: heroFadeIn 1s ease-out 0.6s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--rust);
    color: #FFF;
    padding: 0.9rem 2rem;
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background: var(--rust-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.cta-outline:hover {
    background: var(--gold);
    color: var(--wood);
}

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.section {
    padding: 4rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-dark {
    background: var(--bg-section);
    padding: 4rem 1.5rem;
}

.section-dark .section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-accent {
    background: linear-gradient(135deg, var(--wood) 0%, var(--bg-section) 100%);
    padding: 4rem 1.5rem;
    border-top: 1px solid var(--gold-glow);
    border-bottom: 1px solid var(--gold-glow);
}

.section-accent .section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--rust);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 1.05rem;
}

/* Story */
.story-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.story-content strong {
    color: var(--gold);
}

/* ═══════════════════════════════════════
   CARDS / GRID
   ═══════════════════════════════════════ */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 168, 83, 0.3);
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s;
}

.card:hover img {
    transform: scale(1.05);
}

.card-img-wrap {
    overflow: hidden;
}

.card-body {
    padding: 1.3rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
}

.card-header h3 {
    flex: 1;
    font-size: 1.15rem;
}

.price-tag {
    background: var(--green);
    color: #FFF;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 4px;
    white-space: nowrap;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   MENU CATEGORY
   ═══════════════════════════════════════ */
.menu-category {
    margin-bottom: 3.5rem;
}

.menu-category h2 {
    color: var(--rust);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--leather);
    display: inline-block;
}

/* Size options in menu cards */
.size-options {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.size-badge {
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.2);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
}

/* Bundle card */
.card-bundle {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(212, 168, 83, 0.05) 100%);
    position: relative;
}

.card-bundle::before {
    content: 'BEST VALUE';
    position: absolute;
    top: 12px;
    right: -8px;
    background: var(--gold);
    color: var(--wood);
    font-weight: 800;
    font-size: 0.7rem;
    padding: 3px 12px;
    letter-spacing: 1px;
    z-index: 5;
}

/* Lemonade flavor badges */
.flavor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0.6rem;
}

.flavor-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(90, 154, 60, 0.15);
    color: var(--green);
    border: 1px solid rgba(90, 154, 60, 0.3);
}

/* ═══════════════════════════════════════
   PROMO SECTION (Loyalty)
   ═══════════════════════════════════════ */
.loyalty-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.loyalty-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

.loyalty-img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 3px solid var(--gold);
    box-shadow: var(--shadow);
}

.loyalty-text h2 {
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.loyalty-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.loyalty-steps {
    list-style: none;
    counter-reset: steps;
}

.loyalty-steps li {
    counter-increment: steps;
    padding: 0.5rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text);
    font-size: 1rem;
}

.loyalty-steps li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 28px;
    height: 28px;
    background: var(--rust);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════
   TRACKER / LOCATION
   ═══════════════════════════════════════ */
.tracker-box {
    background: var(--card-bg);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(90, 154, 60, 0.15);
    border: 1px solid var(--green);
    color: var(--green);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.map-frame {
    border: 2px solid var(--leather);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 1.5rem;
}

.map-frame iframe,
.map-frame img {
    width: 100%;
    display: block;
}

/* Schedule Table */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.schedule-table th {
    background: var(--wood-light);
    color: var(--gold);
    padding: 0.9rem 1rem;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.schedule-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.schedule-table tr:hover td {
    background: rgba(212, 168, 83, 0.05);
}

/* ═══════════════════════════════════════
   ORDER FORM
   ═══════════════════════════════════════ */
.order-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg);
    border: 1px solid var(--leather);
    border-radius: 6px;
    color: var(--text);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.order-items-list {
    background: var(--bg);
    border: 1px solid var(--leather);
    border-radius: 6px;
    padding: 0.5rem 1rem;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.order-item-info {
    flex: 1;
}

.order-item-info .item-name {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
}

.order-item-info .item-price {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.order-item-row input[type="number"] {
    width: 60px;
    padding: 0.4rem;
    background: var(--card-bg);
    border: 1px solid var(--leather);
    border-radius: 4px;
    color: var(--text);
    font-family: var(--body-font);
    text-align: center;
    font-size: 1rem;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-top: 0.5rem;
    border-top: 2px solid var(--leather);
    font-size: 1.2rem;
    font-weight: 700;
}

.order-total .total-label {
    color: var(--text);
}

.order-total .total-amount {
    color: var(--gold);
    font-size: 1.4rem;
}

/* Order item thumbnails */
.order-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid var(--leather);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   DIGITAL PUNCH CARD
   ═══════════════════════════════════════ */
.punch-card-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.punch-card {
    background: var(--card-bg);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow), 0 0 40px rgba(212, 168, 83, 0.08);
}

.punch-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 168, 83, 0.2);
}

.punch-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.punch-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 1.5rem;
}

.punch-slot {
    aspect-ratio: 1;
    background: var(--bg);
    border: 2px dashed rgba(212, 168, 83, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
}

.punch-slot .slot-number {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1.2rem;
    opacity: 0.4;
}

.punch-slot.stamped {
    background: linear-gradient(135deg, var(--rust) 0%, #8B2D12 100%);
    border: 2px solid var(--gold);
    box-shadow: 0 2px 10px rgba(192, 84, 43, 0.3);
}

.punch-slot.stamped i {
    color: var(--gold);
    font-size: 1.5rem;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.punch-progress {
    margin-bottom: 1.5rem;
}

.punch-progress-bar {
    height: 8px;
    background: var(--bg);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.4rem;
}

.punch-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--rust), var(--gold));
    border-radius: 4px;
    transition: width 0.4s ease;
    width: 0%;
}

.punch-count {
    text-align: center;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.punch-reward {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, rgba(192, 84, 43, 0.1) 100%);
    border: 1px solid var(--gold);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.reward-badge {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--wood);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 0.8rem;
    animation: rewardPulse 2s infinite;
}

@keyframes rewardPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(212, 168, 83, 0);
    }
}

.punch-reward h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.punch-reward p {
    color: var(--text);
}

.reward-code {
    margin-top: 0.8rem;
    background: var(--bg);
    border: 2px dashed var(--gold);
    color: var(--gold);
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    display: inline-block;
    letter-spacing: 2px;
}

.punch-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.punch-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--green);
}

.punch-reset {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
    font-family: var(--body-font);
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.punch-reset:hover {
    border-color: var(--rust);
    color: var(--rust);
}

.punch-info {
    margin-top: 2rem;
}

.punch-info-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.punch-info-img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 2px solid rgba(212, 168, 83, 0.2);
}

/* ═══════════════════════════════════════
   COUPON CARDS
   ═══════════════════════════════════════ */
.coupon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.2rem;
}

.coupon-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.coupon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

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

.coupon-badge {
    display: inline-block;
    background: var(--rust);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.coupon-amount {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.coupon-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.coupon-code-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    border: 2px dashed rgba(212, 168, 83, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.8rem;
}

.coupon-code {
    font-family: monospace;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.coupon-code-box i {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.coupon-expiry {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.coupon-expiry i {
    margin-right: 4px;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
    background: var(--wood);
    border-top: 3px solid var(--leather);
    color: var(--text-muted);
    text-align: center;
    padding: 2.5rem 1.5rem;
    margin-top: 0;
    font-size: 0.9rem;
}

footer .social-links {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

footer .social-links a {
    color: var(--gold);
    margin: 0 12px;
    transition: all 0.25s;
}

footer .social-links a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

footer p {
    margin-bottom: 0.3rem;
}

/* ═══════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--wood);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    nav.open {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: none;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 998;
    }

    .nav-overlay.show {
        display: block;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 65vh;
        padding: 2rem 1rem;
    }

    .hero-logo {
        width: 140px;
    }

    .section,
    .section-dark,
    .section-accent {
        padding: 2.5rem 1rem;
    }

    .order-card {
        padding: 1.5rem;
    }

    .tracker-box {
        padding: 1.5rem;
    }

    .loyalty-section {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .loyalty-images {
        flex-direction: row;
        justify-content: center;
    }

    .loyalty-img {
        width: 150px;
        height: 130px;
    }

    .loyalty-steps li {
        text-align: left;
    }

    .promo-banner {
        font-size: 0.82rem;
        padding: 0.6rem 1rem;
        flex-wrap: wrap;
    }

    /* Punch card mobile */
    .punch-card {
        padding: 1.2rem;
    }

    .punch-grid {
        gap: 6px;
    }

    .punch-slot .slot-number {
        font-size: 0.9rem;
    }

    .punch-slot.stamped i {
        font-size: 1.1rem;
    }

    .punch-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .punch-info-row {
        flex-direction: column;
        align-items: center;
    }

    .punch-info-img {
        width: 180px;
        height: 130px;
    }

    .punch-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .punch-actions .cta-button {
        justify-content: center;
    }

    /* Coupon cards mobile */
    .coupon-grid {
        grid-template-columns: 1fr;
    }

    .coupon-amount {
        font-size: 1.6rem;
    }

    /* Order thumbnails mobile */
    .order-thumb {
        width: 42px;
        height: 42px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .loyalty-img {
        width: 200px;
        height: 200px;
    }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}