/* ============================================================
   Madkassen Viby — Håndmadder, Sandwiches & Indisk Mad
   Public-facing stylesheet  |  Redesign 2026
   ============================================================ */

:root {
    --primary:       #1B4332;
    --primary-light: #2D6A4F;
    --accent:        #C4803A;
    --accent-light:  #E8A85E;
    --dark:          #1A1A1A;
    --text:          #4A4A4A;
    --text-light:    #7A7A7A;
    --bg:            #FEFCF8;
    --bg-warm:       #F5EFE4;
    --white:         #FFFFFF;
    --border:        #E8DDD0;
    --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:     0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:     0 8px 40px rgba(0,0,0,0.14);
    --radius:        4px;
    --transition:    0.25s ease;
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }

p { margin-bottom: 1rem; color: var(--text); }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ─── Navigation ────────────────────────────────────────────── */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; height: 72px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--primary); letter-spacing: 0.25px; }
.logo-tagline { font-size: 0.68rem; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-top: 2px; }

.nav-menu { display: flex; align-items: center; gap: 0.15rem; }
.nav-menu a { color: var(--text); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.4px; padding: 0.5rem 0.85rem; border-radius: var(--radius); transition: all var(--transition); text-transform: uppercase; }
.nav-menu a:hover { color: var(--primary); background: var(--bg-warm); }

.cart-link { background: var(--primary) !important; color: var(--white) !important; padding: 0.6rem 1.25rem !important; border-radius: var(--radius) !important; font-weight: 700 !important; display: inline-flex !important; align-items: center !important; gap: 6px !important; }
.cart-link:hover { background: var(--accent) !important; color: var(--white) !important; }

main { min-height: 60vh; }

/* ─── Page Header Banner ────────────────────────────────────── */
.page-header {
    background: var(--bg-warm);
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
    text-align: center;
}
.page-header h1 { color: var(--primary); margin-bottom: 0.4rem; }
.page-header p { color: var(--text-light); font-size: 1rem; margin: 0; }
.page-header p a { color: var(--primary); font-weight: 600; }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    line-height: 1;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-light); border-color: var(--accent-light); color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-1px); }

.btn-remove {
    background: none; color: #c0392b; border: 1px solid #c0392b;
    padding: 0.4rem 0.9rem; border-radius: var(--radius); cursor: pointer;
    font-size: 0.82rem; font-weight: 700; transition: all var(--transition);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-remove:hover { background: #c0392b; color: var(--white); }

/* ─── Alerts ────────────────────────────────────────────────── */
.alert { padding: 1rem 1.25rem; margin-bottom: 1.5rem; border-radius: var(--radius); border-left: 4px solid; font-size: 0.95rem; font-weight: 500; }
.alert-success { background: #F0FDF4; color: #166534; border-color: #22C55E; }
.alert-error   { background: #FEF2F2; color: #991B1B; border-color: #EF4444; }

/* ─── HERO SECTION ──────────────────────────────────────────── */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0D2B1D 100%);
    color: var(--white);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image: 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='%23ffffff' fill-opacity='0.025'%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");
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(196,128,58,0.2); border: 1px solid rgba(196,128,58,0.4); color: var(--accent-light); font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem; }

.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1.25rem; }
.hero-title em { color: var(--accent-light); font-style: italic; }

.hero-description { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; line-height: 1.8; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stat strong { display: block; font-size: 1.75rem; font-family: 'Playfair Display', serif; color: var(--accent-light); line-height: 1; }
.hero-stat span { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; }

.hero-image-block { position: relative; display: flex; justify-content: center; }
.hero-img-wrap { position: relative; width: 100%; max-width: 480px; aspect-ratio: 4/3; overflow: hidden; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── Daily special: wow effects ─────────────────────────────── */
.hero-img-wrap.has-special { box-shadow: 0 0 0 3px var(--accent, #C4803A), 0 30px 80px rgba(0,0,0,0.45); animation: special-glow 3s ease-in-out infinite; }
@keyframes special-glow {
    0%, 100% { box-shadow: 0 0 0 3px rgba(196,128,58,0.9), 0 30px 80px rgba(0,0,0,0.45); }
    50%       { box-shadow: 0 0 0 6px rgba(196,128,58,0.4), 0 0 40px 8px rgba(196,128,58,0.25), 0 30px 80px rgba(0,0,0,0.45); }
}

/* Shimmer sweep over image */
.hero-img-wrap.has-special::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: shimmer 3.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.hero-special-badge {
    position: absolute; top: 14px; left: 14px; z-index: 3;
    background: var(--accent, #C4803A); color: #fff;
    padding: 5px 14px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.4px;
    box-shadow: 0 2px 12px rgba(196,128,58,0.55);
    animation: badge-pulse 2.5s ease-in-out infinite;
}
@keyframes badge-pulse {
    0%, 100% { transform: scale(1);    box-shadow: 0 2px 12px rgba(196,128,58,0.5); }
    50%       { transform: scale(1.06); box-shadow: 0 4px 20px rgba(196,128,58,0.75); }
}

.hero-special-info {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
    background: linear-gradient(transparent, rgba(0,0,0,0.78));
    padding: 2.5rem 1.25rem 1.1rem 8.5rem;
    display: flex; flex-direction: column; gap: 4px;
    animation: slide-up 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes slide-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-special-info strong { color: #fff; font-size: 1.15rem; font-family: 'Playfair Display', serif; line-height: 1.3; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.hero-special-info span   { color: rgba(255,255,255,0.85); font-size: 0.85rem; line-height: 1.4; }
.hero-special-info em     { color: var(--accent, #C4803A); font-size: 1.05rem; font-weight: 700; font-style: normal; margin-top: 3px; }

.hero-img-badge { position: absolute; bottom: 16px; left: 16px; z-index: 10; background: var(--accent); color: var(--white); padding: 0.75rem 1.1rem; border-radius: 8px; text-align: center; box-shadow: var(--shadow-md); }
.hero-img-badge strong { display: block; font-size: 1.05rem; font-family: 'Playfair Display', serif; line-height: 1; }
.hero-img-badge span { font-size: 0.65rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; }

/* ─── Features ──────────────────────────────────────────────── */
.features-section { padding: 0; background: var(--white); }
.features-section .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; padding-top: 0; padding-bottom: 0; }
.feature-box { padding: 3rem 2.5rem; background: var(--bg-warm); text-align: center; transition: background var(--transition); }
.feature-box:hover { background: var(--primary); }
.feature-box:hover h5, .feature-box:hover p { color: var(--white); }

.feature-icon { width: 68px; height: 68px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; box-shadow: var(--shadow-sm); transition: background var(--transition); }
.feature-icon svg { width: 34px; height: 34px; fill: var(--primary); transition: fill var(--transition); }
.feature-box:hover .feature-icon { background: rgba(255,255,255,0.15); }
.feature-box:hover .feature-icon svg { fill: var(--white); }
.feature-box h5 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--dark); margin-bottom: 0.75rem; font-weight: 700; transition: color var(--transition); text-transform: none; letter-spacing: 0; }
.feature-box p { font-size: 0.92rem; line-height: 1.75; transition: color var(--transition); margin: 0; }

/* ─── Section Labels ────────────────────────────────────────── */
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem; }
.section-label::before, .section-label::after { content: ''; display: block; width: 28px; height: 1px; background: var(--accent); }
.section-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--dark); margin-bottom: 1rem; }
.section-heading em { color: var(--primary); font-style: italic; }

/* ─── Menu Categories (Home) ────────────────────────────────── */
.menu-categories-section { padding: 5rem 0; background: var(--bg-warm); }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.category-item { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s ease; display: flex; flex-direction: column; }
.category-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.category-img-wrap { overflow: hidden; height: 220px; }
.category-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-item:hover img { transform: scale(1.05); }
.category-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.category-item h2 { font-size: 1.4rem; color: var(--dark); margin-bottom: 0.5rem; }
.category-item h2 a { color: var(--dark); }
.category-item h2 a:hover { color: var(--primary); }
.category-item p { font-size: 0.9rem; color: var(--text-light); flex: 1; margin-bottom: 1rem; }
.category-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border); }
.category-price { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--primary); font-weight: 700; }
.category-price a { color: var(--primary); }

/* ─── About Section (Home) ──────────────────────────────────── */
.about-section { padding: 5rem 0; background: var(--white); }
.about-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 8px; box-shadow: var(--shadow-lg); }
.about-image-badge { position: absolute; bottom: -20px; right: -20px; width: 100px; height: 100px; background: var(--accent); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); text-align: center; box-shadow: var(--shadow-md); }
.about-image-badge strong { font-family: 'Playfair Display', serif; font-size: 1.5rem; line-height: 1; }
.about-image-badge span { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 1px; line-height: 1.2; margin-top: 3px; }
.about-content h2 { color: var(--dark); margin-bottom: 1.25rem; }
.about-content p { line-height: 1.9; color: var(--text); margin-bottom: 1.25rem; }
.about-highlights { list-style: none; margin: 1.5rem 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.about-highlights li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.about-highlights li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ─── CTA Section ───────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, #0D2B1D 100%); padding: 5rem 2rem; text-align: center; }
.cta-section .section-label { color: var(--accent-light); justify-content: center; }
.cta-section .section-label::before, .cta-section .section-label::after { background: var(--accent-light); }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.72); max-width: 500px; margin: 0 auto 2rem; }

/* ─── Products Grid ─────────────────────────────────────────── */
.category-intro { margin: 1.5rem 0 0.5rem; }
.category-tekst { font-size: 1.05rem; line-height: 1.7; color: var(--text); margin-bottom: 1rem; }
.category-bemaerkning {
    background: #FFF8E6;
    border-left: 4px solid var(--accent);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: #7A5200;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.product-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all var(--transition); display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card-img { height: 200px; overflow: hidden; background: var(--bg-warm); display: flex; align-items: center; justify-content: center; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 0.4rem; }
.product-card p { font-size: 0.9rem; color: var(--text-light); flex: 1; margin-bottom: 0.75rem; }
.product-price { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--primary); font-weight: 700; margin-bottom: 1rem; }
.sold-out-badge { display: inline-block; background: #FEE2E2; color: #991B1B; font-size: 0.78rem; font-weight: 700; padding: 0.3rem 0.9rem; border-radius: 50px; text-transform: uppercase; }
.quantity-input { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.quantity-input label { font-size: 0.82rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; }
.quantity-input input { width: 65px; padding: 0.5rem 0.6rem; border: 2px solid var(--border); border-radius: var(--radius); font-size: 1rem; text-align: center; transition: border-color var(--transition); }
.quantity-input input:focus { outline: none; border-color: var(--primary); }
.note-input { margin-bottom: 0.75rem; }
.note-input label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.35rem; }
.note-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-light, #888); font-size: 0.78rem; }
.note-input textarea {
    width: 100%; padding: 0.5rem 0.7rem; border: 2px solid var(--border);
    border-radius: var(--radius); font-size: 0.88rem; font-family: inherit;
    resize: vertical; transition: border-color var(--transition); color: var(--text);
    background: var(--bg-warm, #F5EFE4); box-sizing: border-box;
}
.note-input textarea:focus { outline: none; border-color: var(--primary); background: #fff; }
/* Cart page inline note */
.cart-note-wrap { margin-top: 0.4rem; }
.cart-note-input {
    width: 100%; padding: 0.4rem 0.6rem; border: 1.5px solid var(--border);
    border-radius: 6px; font-size: 0.83rem; font-family: inherit; resize: vertical;
    color: var(--text); background: var(--bg-warm, #F5EFE4); transition: border-color var(--transition);
    box-sizing: border-box; min-height: 52px;
}
.cart-note-input:focus { outline: none; border-color: var(--primary); background: #fff; }

/* ─── Menu Categories Page ──────────────────────────────────── */
.menu-categories { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.category-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 2.5rem 2rem; text-align: center; transition: all var(--transition); box-shadow: var(--shadow-sm); }
.category-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); transform: translateY(-3px); }
.category-card h2 { font-size: 1.4rem; margin-bottom: 1.25rem; color: var(--dark); }

/* ─── Cart ──────────────────────────────────────────────────── */
.cart-table { width: 100%; border-collapse: collapse; margin: 2rem 0; background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.cart-table th { background: var(--primary); color: var(--white); padding: 1rem 1.25rem; text-align: left; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.cart-table td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.cart-table tbody tr:last-child td { border-bottom: none; }
.cart-table tbody tr:hover { background: var(--bg-warm); }
.cart-table tfoot td { padding: 1rem 1.25rem; border-top: 2px solid var(--border); font-size: 1.05rem; background: var(--bg-warm); }
.cart-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; gap: 1rem; flex-wrap: wrap; }

/* ─── Checkout ──────────────────────────────────────────────── */
.checkout-wrapper { display: grid; grid-template-columns: 3fr 2fr; gap: 2.5rem; margin: 2rem 0; align-items: start; }
.checkout-form, .checkout-summary { background: var(--white); padding: 2.5rem; border-radius: 8px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.checkout-form h2, .checkout-summary h2 { font-size: 1.35rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--bg-warm); color: var(--dark); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.85rem 1rem; border: 2px solid var(--border); border-radius: var(--radius); font-size: 1rem; font-family: 'Lato', sans-serif; color: var(--dark); background: var(--white); transition: border-color var(--transition); box-sizing: border-box; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); }
/* Normalize date/time pickers on iOS (WebKit) */
.form-group input[type="date"],
.form-group input[type="time"] {
    -webkit-appearance: none;
    appearance: none;
    min-height: 48px;
    line-height: 1.4;
}
.order-item { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.order-item-main { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.checkout-item-note { font-size: 0.82rem; color: #6B7280; font-style: italic; margin-top: 3px; padding-left: 2px; }
.order-item:last-of-type { border-bottom: none; }
.order-total { display: flex; justify-content: space-between; padding: 1rem 0 0; margin-top: 0.5rem; border-top: 2px solid var(--dark); font-size: 1.2rem; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--dark); }
.payment-note { margin-top: 1rem; padding: 0.85rem 1rem; background: var(--bg-warm); border-radius: var(--radius); font-size: 0.85rem; color: var(--text-light); text-align: center; border: 1px solid var(--border); }

/* ─── Order Confirmation ────────────────────────────────────── */
.confirmation-box { max-width: 640px; margin: 4rem auto; background: var(--white); border-radius: 8px; padding: 3rem; text-align: center; box-shadow: var(--shadow-lg); border-top: 5px solid var(--primary); }
.confirmation-icon { font-size: 3.5rem; margin-bottom: 0.75rem; }
.confirmation-box h1 { color: var(--primary); margin-bottom: 0.75rem; font-size: 2rem; }
.confirmation-box > p { color: var(--text-light); margin-bottom: 2rem; font-size: 1.05rem; }
.order-details, .order-items { text-align: left; background: var(--bg-warm); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; border: 1px solid var(--border); }
.order-details h2, .order-items h3 { font-size: 1rem; margin-bottom: 1rem; color: var(--primary); padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.order-details p { font-size: 0.92rem; padding: 0.4rem 0; border-bottom: 1px solid var(--border); margin: 0; }
.order-details p:last-child { border-bottom: none; }
.order-items ul { list-style: none; }
.order-items li { padding: 0.4rem 0; font-size: 0.92rem; border-bottom: 1px solid var(--border); }
.order-items li:last-child { border-bottom: none; }
.order-item-note { font-size: 0.82rem; color: #6B7280; font-style: italic; margin-top: 3px; }
.note { font-size: 0.88rem; color: var(--text-light); padding: 0.75rem 1rem; background: var(--bg-warm); border-left: 3px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 0.75rem; text-align: left; }

/* ─── About Page ────────────────────────────────────────────── */
.about-hero-img { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-hero-img img { width: 100%; height: 460px; object-fit: cover; }
.about-features-list { list-style: none; margin: 1.5rem 0; }
.about-features-list li { display: flex; align-items: center; gap: 10px; padding: 0.6rem 0; font-size: 0.95rem; color: var(--text); border-bottom: 1px solid var(--border); }
.about-features-list li:last-child { border-bottom: none; }
.about-features-list li::before { content: '✓'; width: 22px; height: 22px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; flex-shrink: 0; }

/* ─── Info Cards ────────────────────────────────────────────── */
.info-card { background: var(--white); border-radius: 8px; padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-bottom: 1.25rem; }
.info-card h2 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--primary); padding-bottom: 0.75rem; border-bottom: 2px solid var(--bg-warm); }
.info-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--dark); }

/* ─── Opening Hours Page ────────────────────────────────────── */
.opening-hours-section { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin: 0 0 3rem; }
.hours-card { background: var(--white); border-radius: 8px; padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.hours-card h2 { font-size: 1.4rem; color: var(--dark); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--bg-warm); }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 0.9rem 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; color: var(--dark); }
.hours-row .time { color: var(--primary); font-weight: 700; }
.hours-row.closed .time { color: #C0392B; }
.location-info { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.location-info h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--dark); }
.location-info p { font-size: 0.92rem; margin-bottom: 0.5rem; }
.location-info a { color: var(--primary); font-weight: 600; }
.opening-hours-image { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); }
.opening-hours-image img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.cta-box { margin-top: 2rem; padding: 1.5rem; background: var(--bg-warm); border-radius: 8px; text-align: center; border: 1px solid var(--border); }
.cta-box h3 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--dark); }

/* ─── Footer ────────────────────────────────────────────────── */
footer { background: #0D1F14; color: rgba(255,255,255,0.65); padding: 4.5rem 0 1.5rem; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
.footer-brand .logo-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--white); font-weight: 700; }
.footer-brand .logo-tagline { color: var(--accent); font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 280px; margin-top: 1rem; }
.footer-section h3 { color: var(--white); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.25rem; font-family: 'Lato', sans-serif; }
.footer-section p, .footer-section a { font-size: 0.88rem; color: rgba(255,255,255,0.55); display: block; margin-bottom: 0.5rem; line-height: 1.6; transition: color var(--transition); }
.footer-section a:hover { color: var(--accent-light); }
.footer-bottom { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ─── Hamburger Menu ────────────────────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius);
    transition: background var(--transition);
    flex-shrink: 0;
}
.nav-toggle:hover { background: var(--bg-warm); }
.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Responsive ────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-image-block { display: none; }
    .hero-description { margin: 0 auto 2rem; max-width: 560px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .about-section .container { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image-badge { display: none; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .features-section .container { grid-template-columns: 1fr 1fr; }
}

/* Mobile landscape / large phone */
@media (max-width: 768px) {
    /* Navigation — hamburger */
    .nav-toggle { display: flex; }

    .navbar .container { height: auto; padding: 0.9rem 20px; flex-wrap: nowrap; }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        border-bottom: 2px solid var(--primary);
        padding: 0.5rem 0 1rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.10);
        z-index: 999;
        gap: 0;
    }
    .nav-menu.is-open { display: flex; }
    .nav-menu li { width: 100%; }
    .nav-menu a {
        display: block;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        border-radius: 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-menu li:last-child a { border-bottom: none; }
    .cart-link {
        margin: 0.5rem 1rem 0;
        border-radius: var(--radius) !important;
        text-align: center;
        padding: 0.85rem 1rem !important;
    }

    .navbar { position: sticky; top: 0; z-index: 1000; }

    /* Hero */
    .hero-section { padding: 3.5rem 0 3rem; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }

    /* Features */
    .features-section .container { grid-template-columns: 1fr; gap: 2px; }

    /* Sections */
    .checkout-wrapper { grid-template-columns: 1fr; }
    .opening-hours-section { grid-template-columns: 1fr; }
    .about-highlights { grid-template-columns: 1fr; }
    .page-header { padding: 2.5rem 0 2rem; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    footer { padding: 3rem 0 1.5rem; }

    /* Cart table — hide unit price column on small screens, but NOT tfoot */
    .cart-table thead th:nth-child(2),
    .cart-table tbody td:nth-child(2) { display: none; }

    /* Confirmation */
    .confirmation-box { margin: 2rem auto; padding: 2rem 1.25rem; }

    /* About page inline grid */
    [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}

/* Small phones */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    /* Hero */
    .hero-section { padding: 2.5rem 0 2.5rem; }
    .hero-badge { font-size: 0.65rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { text-align: center; }
    .hero-stats { gap: 1.25rem; }
    .hero-stat strong { font-size: 1.4rem; }

    /* Section labels & headings */
    .section-label { font-size: 0.65rem; }

    /* Categories & products */
    .categories-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .menu-categories { grid-template-columns: 1fr; }

    /* Cart */
    .cart-actions { flex-direction: column; align-items: stretch; text-align: center; }
    .cart-table { font-size: 0.85rem; }
    .cart-table th, .cart-table td { padding: 0.75rem 0.75rem; }
}

/* Cart table → card layout on phones */
@media (max-width: 600px) {
    .cart-table,
    .cart-table thead,
    .cart-table tbody,
    .cart-table tfoot,
    .cart-table tr,
    .cart-table th,
    .cart-table td { display: block; width: 100%; box-sizing: border-box; }

    .cart-table { border: none; box-shadow: none; background: transparent; margin: 1rem 0; }
    .cart-table thead { display: none; }

    /* Each row = a card */
    .cart-table tbody tr {
        border: 1px solid var(--border, #E8DDD0);
        border-radius: 10px;
        margin-bottom: 0.85rem;
        padding: 0.6rem 0.85rem;
        background: #fff;
        box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    }

    /* Each cell = label + value row */
    .cart-table tbody td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.45rem 0;
        border-bottom: 1px solid var(--bg-warm, #F5EFE4);
        font-size: 0.9rem;
    }
    .cart-table tbody td:last-child { border-bottom: none; }

    /* Column labels via ::before */
    .cart-table tbody td::before {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--text-muted, #888);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        flex-shrink: 0;
        margin-right: 0.5rem;
    }
    .cart-table tbody td:nth-child(1)::before { content: "Produkt"; }
    .cart-table tbody td:nth-child(2) { display: none; } /* unit price */
    .cart-table tbody td:nth-child(3)::before { content: "Antal"; }
    .cart-table tbody td:nth-child(4)::before { content: "Pris"; }
    .cart-table tbody td:nth-child(5) { justify-content: flex-end; border-bottom: none; padding-top: 0.6rem; }

    /* tfoot total row */
    .cart-table tfoot tr {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 2px solid var(--border, #E8DDD0);
        padding: 0.85rem 0.5rem;
        background: var(--bg-warm, #F5EFE4);
        border-radius: 0 0 8px 8px;
    }
    .cart-table tfoot td { padding: 0; border: none; background: transparent; font-size: 1rem; }
    .cart-table tfoot td:first-child { flex: 1; }
    .cart-table tfoot td:last-child { text-align: right; }

    /* Checkout */
    .checkout-form, .checkout-summary { padding: 1.5rem; }

    /* Footer */
    .footer-brand p { max-width: 100%; }

    /* Page header */
    .page-header { padding: 2rem 0 1.5rem; }

    /* Buttons — full-width in tight spots */
    .product-card-body .btn { width: 100%; text-align: center; }
}

/* Touch target baseline — ensures tappable elements are always ≥44px */
@media (hover: none) and (pointer: coarse) {
    .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .nav-menu a { min-height: 48px; display: flex; align-items: center; }
    .quantity-input input { min-height: 44px; }
    .form-group input,
    .form-group textarea,
    .form-group select { min-height: 48px; font-size: 16px; /* prevent iOS zoom */ }
}

/* ═══════════════════════════════════════════════════════════
   CART SIDEBAR  (desktop ≥1024px only)
═══════════════════════════════════════════════════════════ */
.cart-sidebar {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    width: 300px;
    background: #fff;
    box-shadow: -4px 0 28px rgba(0,0,0,0.13);
    z-index: 900;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    font-family: 'Lato', sans-serif;
}
.cart-sidebar.is-open { transform: translateX(0); }

.cart-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem 0.9rem;
    border-bottom: 2px solid var(--bg-warm, #F5EFE4);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}
.cart-sidebar-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-muted, #888);
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1;
    transition: color 0.15s;
}
.cart-sidebar-close:hover { color: var(--primary); }

.cart-sidebar-items {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 1.25rem;
}
.cart-sidebar-empty {
    color: var(--text-muted, #888);
    font-size: 0.88rem;
    text-align: center;
    padding: 2rem 0;
}
.cart-sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--bg-warm, #F5EFE4);
}
.cart-sidebar-item:last-child { border-bottom: none; }
.cart-sidebar-item-info { flex: 1; min-width: 0; }
.cart-sidebar-item-name {
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--text, #1A1A1A);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-sidebar-item-meta { font-size: 0.78rem; color: var(--text-muted, #888); margin-top: 1px; }
.cart-sidebar-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted, #bbb);
    font-size: 0.8rem;
    padding: 3px 5px;
    border-radius: 4px;
    transition: all 0.15s;
    flex-shrink: 0;
    line-height: 1;
}
.cart-sidebar-item-remove:hover { background: #FEE2E2; color: #DC2626; }

.cart-sidebar-foot {
    padding: 0.9rem 1.25rem 1.5rem;
    border-top: 2px solid var(--bg-warm, #F5EFE4);
    flex-shrink: 0;
}
.cart-sidebar-total {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text, #1A1A1A);
}
.cart-sidebar-total strong { color: var(--primary); font-size: 1rem; }

/* ── Toggle tab ─────────────────────────────────────────── */
.cart-sidebar-toggle {
    position: fixed;
    right: 0;
    top: calc(50% + 36px);
    transform: translateY(-50%);
    background: var(--primary, #1B4332);
    color: #fff;
    border: none;
    padding: 0.9rem 0.6rem;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    z-index: 901;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    box-shadow: -2px 0 12px rgba(0,0,0,0.15);
    transition: background 0.2s, right 0.3s ease;
}
.cart-sidebar-toggle:hover { background: var(--accent, #C4803A); }
body.cart-sidebar-visible .cart-sidebar-toggle { right: 300px; }

/* ── Mobile sidebar: full-width + keep toggle visible ────── */
@media (max-width: 1023px) {
    .cart-sidebar {
        width: 85%;
        max-width: 360px;
    }
    /* Sidebar open: toggle stays at left edge of sidebar (always tappable) */
    body.cart-sidebar-visible .cart-sidebar-toggle {
        right: 85%;
        right: min(360px, 85vw);
    }
    /* Dark overlay behind sidebar on mobile */
    .cart-sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.45);
        z-index: 899;
    }
    body.cart-sidebar-visible .cart-sidebar-overlay { display: block; }
}
    background: var(--accent, #C4803A);
    color: #fff;
    border-radius: 50%;
    width: 19px;
    height: 19px;
    font-size: 0.68rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
}

/* ── Cart nav badge ─────────────────────────────────────── */
.cart-badge {
    background: var(--accent, #C4803A);
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.68rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    font-family: 'Lato', sans-serif;
    vertical-align: middle;
    line-height: 1;
    flex-shrink: 0;
}

/* ── Toast notification ─────────────────────────────────── */
#toastContainer {
    position: fixed;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
}
.toast {
    background: var(--primary, #1B4332);
    color: #fff;
    padding: 0.7rem 1.35rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.22);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    pointer-events: auto;
    max-width: 90vw;
}
.toast.toast-show { opacity: 1; transform: translateY(0); }
.toast.toast-error { background: #B91C1C; }

/* ── Hide sidebar on cart + checkout pages ───────────────── */
body.no-cart-sidebar .cart-sidebar,
body.no-cart-sidebar .cart-sidebar-toggle { display: none !important; }
body.no-cart-sidebar.cart-sidebar-visible .cart-sidebar-toggle { right: 0; }

/* ── Cart page qty controls ─────────────────────────────── */
.cart-qty-wrap {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border, #E8DDD0);
    border-radius: 6px;
    overflow: hidden;
}
.cart-qty-btn {
    background: var(--bg-warm, #F5EFE4);
    border: none;
    width: 32px;
    height: 36px;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    color: var(--primary, #1B4332);
    transition: background 0.15s;
    flex-shrink: 0;
}
.cart-qty-btn:hover { background: var(--border, #E8DDD0); }
.cart-qty-input {
    width: 44px;
    height: 36px;
    border: none;
    border-left: 1px solid var(--border, #E8DDD0);
    border-right: 1px solid var(--border, #E8DDD0);
    text-align: center;
    font-size: 0.95rem;
    font-family: 'Lato', sans-serif;
    -moz-appearance: textfield;
}
.cart-qty-input::-webkit-inner-spin-button,
.cart-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.cart-qty-input:focus { outline: none; background: #fffaf5; }

/* ── Sidebar qty controls ───────────────────────────────── */
.sidebar-qty-row {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border, #E8DDD0);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2px;
}
.sidebar-qty-btn {
    background: #F8F8F6;
    border: none;
    width: 24px;
    height: 24px;
    font-size: 0.95rem;
    line-height: 1;
    cursor: pointer;
    color: var(--primary, #1B4332);
    transition: background 0.15s;
    flex-shrink: 0;
}
.sidebar-qty-btn:hover { background: var(--bg-warm, #F5EFE4); }
.sidebar-qty-val {
    min-width: 26px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0 4px;
    border-left: 1px solid var(--border, #E8DDD0);
    border-right: 1px solid var(--border, #E8DDD0);
    line-height: 24px;
}
.sidebar-line-total {
    font-size: 0.78rem;
    color: var(--primary, #1B4332);
    font-weight: 600;
}
.cart-sidebar-item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    flex-wrap: wrap;
}

/* ── Campaign Banner ─────────────────────────────────────────────── */
.campaign-banner-section {
    padding: 0 0 1rem;
}
.campaign-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFBEB 100%);
    border: 2px solid #F59E0B;
    border-radius: 14px;
    padding: 16px 22px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(245,158,11,0.12);
    animation: campaignPulse 3s ease-in-out infinite;
}
@keyframes campaignPulse {
    0%, 100% { box-shadow: 0 2px 12px rgba(245,158,11,0.12); }
    50%       { box-shadow: 0 4px 24px rgba(245,158,11,0.28); }
}
.campaign-banner-icon { font-size: 2rem; flex-shrink: 0; }
.campaign-banner-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.campaign-banner-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #92400E;
}
.campaign-banner-desc {
    font-size: 0.88rem;
    color: #78350F;
}
.campaign-banner-meta {
    font-size: 0.78rem;
    color: #B45309;
    font-style: italic;
}
.campaign-banner-pct {
    font-size: 2rem;
    font-weight: 800;
    color: #D97706;
    text-align: center;
    line-height: 1;
    flex-shrink: 0;
}
.campaign-banner-pct small {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

/* ── Delivery Partners ───────────────────────────────────────────── */
.partners-section {
    padding: 1rem 0 0.5rem;
    background: transparent;
}
.partners-label {
    text-align: center;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light, #888);
    margin-bottom: 0.75rem;
}
.partners-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
    min-width: 100px;
    min-height: 52px;
}
a.partner-card:hover {
    border-color: var(--accent, #C4803A);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.partner-card img {
    height: 32px;
    object-fit: contain;
    max-width: 120px;
}
.partner-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary, #1B4332);
}

/* ── Feature-box partner variant ────────────────────────────────── */
a.feature-box--partner {
    text-decoration: none;
    color: inherit;
    display: block;
}
.feature-icon--partner {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    width: auto;
    height: 48px;
    padding: 0;
    margin: 0 auto 1.25rem;
}
.feature-icon--partner img {
    height: 42px;
    max-width: 130px;
    object-fit: contain;
    filter: none !important;
    transition: none;
}
.feature-box--partner:hover .feature-icon--partner img {
    filter: none !important;
}
.feature-partner-cta {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--accent);
    transition: color var(--transition);
}
.feature-box--partner:hover .feature-partner-cta {
    color: rgba(255,255,255,0.85);
}

/* ── Shop closed banner ─────────────────────────────────────────── */
.shop-closed-banner {
    background: #7F1D1D;
    color: #fff;
    padding: 0.85rem 0;
}
.shop-closed-banner .container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0;
    padding-bottom: 0;
}
.shop-closed-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}
.shop-closed-banner strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}
.shop-closed-banner span {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* ── Cart sidebar closed notice ─────────────────────────────────── */
.cart-sidebar-closed-notice {
    margin-top: 0.75rem;
    padding: 0.65rem 0.85rem;
    background: #FEE2E2;
    color: #991B1B;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}
