/* assets/css/style.css */

:root {
    --primary-color: #FF6B35;
    --secondary-color: #2C3E50;
    --light-bg: #f9f9f9;
    --border-color: #ddd;
    --text-dark: #333;
    --text-light: #666;
    --success: #32CD32;
    --warning: #FFA500;
    --danger: #DC143C;
}

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

html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

body {
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #E55A24 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo h1 {
    font-size: 28px;
    margin: 0;
}

.logo .tagline {
    font-size: 12px;
    opacity: 0.9;
    margin: 5px 0 0 0;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.btn-cart {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    position: relative;
}

.btn-cart:hover {
    background: rgba(255,255,255,0.3);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--danger);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255,107,53,0.9) 0%, rgba(37,62,86,0.9) 100%),
                url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 400"%3E%3Ccircle cx="100" cy="50" r="40" fill="rgba(255,255,255,0.1)"/%3E%3Ccircle cx="900" cy="300" r="60" fill="rgba(255,255,255,0.1)"/%3E%3C/svg%3E');
    background-size: cover;
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.delivery-options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.option-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.option-btn:hover,
.option-btn.active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Main Content */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin: 40px 0;
}

.menu-section h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 15px;
}

/* Category Filter */
.category-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    background: var(--light-bg);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 48px;
    background: var(--light-bg);
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--warning);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.product-description {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
    height: 32px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
}

.btn-add-quick {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
    min-width: 132px;
}

.btn-add-quick:hover {
    background: #E55A24;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    min-width: 132px;
}

.btn-add-basic {
    background: #fff1ea;
    color: var(--primary-color);
    border: 1px solid rgba(230, 96, 42, 0.22);
    box-shadow: none;
}

.btn-add-basic:hover {
    background: #ffe6db;
}

.btn-customize {
    background: linear-gradient(135deg, #ff7c43, #ff5d2b);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 350px;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 100;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid var(--border-color);
    background: var(--light-bg);
}

.cart-header h3 {
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    color: var(--text-light);
    padding: 40px 20px;
}

.cart-item {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.item-header h4 {
    margin: 0;
    font-size: 14px;
}

.remove-btn {
    background: var(--danger);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-weight: bold;
}

.item-price {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.quantity-control {
    display: flex;
    gap: 8px;
    margin: 10px 0;
}

.quantity-control button {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.quantity-control input {
    width: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.item-total {
    font-weight: bold;
    color: var(--primary-color);
    text-align: right;
}

.cart-summary {
    padding: 20px;
    border-top: 2px solid var(--border-color);
    background: var(--light-bg);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
    font-weight: bold;
    font-size: 18px;
    color: var(--primary-color);
    border: none;
}

.btn-checkout {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
}

.btn-checkout:hover {
    background: #E55A24;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-detail .product-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.product-detail .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h2 {
    margin-top: 0;
    color: var(--primary-color);
}

.product-options {
    margin: 20px 0;
}

.options-group {
    margin-bottom: 20px;
}

.options-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.options-group-title {
    color: var(--text-dark);
}

.option-choice-list {
    display: grid;
    gap: 10px;
}

.option-choice-row {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #fff8f4;
    cursor: pointer;
    margin-bottom: 0 !important;
}

.option-choice-row input {
    width: auto !important;
    margin: 0;
    accent-color: var(--primary-color);
}

.option-choice-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.option-choice-name {
    color: var(--text-dark);
    font-weight: 600;
}

.option-choice-price {
    color: var(--primary-color);
    font-weight: 700;
    white-space: nowrap;
}

.modal-options-help,
.modal-empty-options {
    color: var(--text-light);
    font-size: 14px;
    margin: 8px 0 0;
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0;
}

.quantity-selector {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 20px 0;
}

.quantity-selector button,
.quantity-selector input {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.quantity-selector button {
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    width: 40px;
}

.quantity-selector input {
    width: 60px;
    text-align: center;
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-add-cart:hover {
    background: #E55A24;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 80vw;
    }
    
    .delivery-options {
        flex-direction: column;
    }
    
    .category-filter {
        overflow-x: auto;
    }
}

/* Home navigation and public menu refresh */
.header-actions {
    margin-left: auto;
}

.header-actions .btn-cart {
    min-width: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-kicker {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.28);
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.hero-shortcut {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.28);
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease;
}

.hero-shortcut:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.24);
}

.section-heading {
    margin-bottom: 24px;
}

.section-heading h2 {
    margin-bottom: 8px;
    border-bottom: none;
    padding-bottom: 0;
}

.section-heading p {
    color: var(--text-light);
}

.section-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,107,53,0.12);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
}

.category-filter {
    gap: 14px;
}

.category-btn {
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
}

.product-topline {
    display: flex;
    margin-bottom: 10px;
}

.product-category {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(44,62,80,0.08);
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 700;
}

.popular-badge {
    background: var(--primary-color);
}

.no-products {
    padding: 18px;
    background: var(--light-bg);
    border-radius: 12px;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

/* ===== Accueil V8 : hero photo + blocs visuels ===== */
body {
    background: linear-gradient(180deg, #fff8f3 0%, #fff4ec 100%);
}

.header {
    background: rgba(24, 18, 14, 0.88);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(31, 21, 16, 0.18);
}

.logo h1 {
    font-size: 30px;
}

.logo .tagline {
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
}

.nav-menu a {
    position: relative;
    font-weight: 700;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.9);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
    transform: scaleX(1);
}

.btn-cart {
    border: 1px solid rgba(255,255,255,0.24);
    background: linear-gradient(135deg, rgba(255,255,255,0.17), rgba(255,255,255,0.08));
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.hero {
    position: relative;
    padding: 96px 0 88px;
    background:
        linear-gradient(90deg, rgba(18,14,12,0.82) 0%, rgba(18,14,12,0.68) 38%, rgba(18,14,12,0.46) 62%, rgba(18,14,12,0.34) 100%),
        url('../img/hero-pizza.jpg') center center / cover no-repeat;
    color: white;
    text-align: left;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,107,53,0.16) 0%, rgba(20,15,12,0.08) 38%, rgba(20,15,12,0.38) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.hero-panel {
    max-width: 620px;
    padding: 38px 36px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(35, 23, 18, 0.46), rgba(35, 23, 18, 0.28));
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 24px 60px rgba(0,0,0,0.28);
    backdrop-filter: blur(6px);
}

.hero-kicker {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.24);
}

.hero-content h2 {
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.08;
    margin-bottom: 18px;
    max-width: 11ch;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.75;
    max-width: 56ch;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.94);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    font-weight: 600;
    font-size: 14px;
}

.hero-shortcuts {
    justify-content: flex-start;
}

.hero-shortcut {
    min-height: 50px;
    padding: 13px 22px;
}

.hero-shortcut-primary {
    background: linear-gradient(135deg, #ff7c43, #ff5d2b);
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(255, 107, 53, 0.32);
}

.hero-shortcut-primary:hover {
    background: linear-gradient(135deg, #ff8550, #ff6334);
}

.home-categories {
    position: relative;
    margin-top: -42px;
    padding-bottom: 12px;
    z-index: 2;
}

.section-heading-centered {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 28px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.category-feature {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 26px 24px;
    border-radius: 28px;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(41, 26, 20, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(14,13,13,0.08) 36%, rgba(14,13,13,0.56) 100%);
}

.category-feature::after {
    content: '';
    position: absolute;
    inset: auto -20% -30% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    filter: blur(10px);
}

.category-feature > * {
    position: relative;
    z-index: 1;
}

.category-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(41, 26, 20, 0.22);
}

.card-pizza {
    background:
        linear-gradient(180deg, rgba(24,18,14,0.12), rgba(24,18,14,0.68)),
        url('../img/hero-pizza.jpg') center center / cover no-repeat;
}

.card-formules {
    background: linear-gradient(135deg, #7b3522 0%, #c65a2d 50%, #ff8a3d 100%);
}

.card-boissons {
    background: linear-gradient(135deg, #17334f 0%, #2b5e8f 52%, #49a9d8 100%);
}

.card-desserts {
    background: linear-gradient(135deg, #5b2346 0%, #8f3f72 55%, #d07ea0 100%);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: auto;
    border-radius: 18px;
    background: rgba(255,255,255,0.16);
    font-size: 24px;
}

.feature-label {
    display: inline-block;
    margin: 18px 0 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}

.category-feature h3 {
    font-size: 24px;
    line-height: 1.18;
    margin-bottom: 10px;
}

.category-feature p {
    color: rgba(255,255,255,0.88);
    margin-bottom: 16px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.feature-link::after {
    content: '→';
}

.content-wrapper {
    display: block;
    margin: 12px 0 60px;
}

.menu-section {
    background: #ffffff;
    border: 1px solid rgba(255, 107, 53, 0.12);
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 24px 54px rgba(52, 31, 22, 0.08);
}

.section-heading h2 {
    color: #1f1611;
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: 10px;
}

.section-heading p {
    max-width: 60ch;
}

.category-filter {
    gap: 12px;
    margin-bottom: 28px;
}

.category-btn {
    background: #fff6f1;
    border-color: rgba(255, 107, 53, 0.18);
    color: #7a3d27;
}

.products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
}

.product-card {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(41, 26, 20, 0.08);
}

.product-card:hover {
    border-color: rgba(255,107,53,0.34);
    box-shadow: 0 18px 40px rgba(41, 26, 20, 0.16);
}

.product-image {
    height: 220px;
}

.product-info {
    padding: 18px;
}

.product-info h3 {
    font-size: 18px;
}

.product-description {
    height: 40px;
}

.btn-add-quick,
.btn-add-cart,
.btn-checkout {
    background: linear-gradient(135deg, #ff7c43, #ff5d2b);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.18);
}

.btn-add-quick:hover,
.btn-add-cart:hover,
.btn-checkout:hover {
    background: linear-gradient(135deg, #ff8550, #ff6334);
}

.cart-sidebar {
    top: 84px;
    right: 18px;
    width: 360px;
    height: calc(100vh - 108px);
    border-radius: 28px;
    border: 1px solid rgba(255, 107, 53, 0.12);
    box-shadow: 0 24px 60px rgba(24, 18, 14, 0.16);
}

.cart-header,
.cart-summary {
    background: #fff8f3;
}

.modal-content {
    border-radius: 28px;
}

.footer {
    background: linear-gradient(135deg, #241914 0%, #3a241b 100%);
    color: white;
    margin-top: 10px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    padding: 48px 0 24px;
}

.footer-section h4 {
    margin-bottom: 12px;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.78);
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    padding: 18px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.72);
    text-align: center;
}


.logo .tagline:empty {
    display: none;
}

.btn-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.menu-hero {
    padding: 48px 20px 12px;
    background: linear-gradient(180deg, rgba(255,107,53,0.08) 0%, rgba(255,107,53,0) 100%);
}

.menu-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.section-heading-clean .section-badge {
    display: none;
}

/* ===== V10 Click & Collect ===== */
.checkout-shell,
.success-shell {
    padding: 42px 0 72px;
}

.checkout-headline {
    margin-bottom: 26px;
}

.checkout-headline h1,
.success-card h1 {
    margin-bottom: 10px;
}

.checkout-alert {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(220, 20, 60, 0.08);
    border: 1px solid rgba(220, 20, 60, 0.16);
    color: #b51e43;
    font-weight: 600;
}

.checkout-grid-pro {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: start;
}

.checkout-card,
.success-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(41, 26, 20, 0.08);
    border-radius: 28px;
    box-shadow: 0 22px 50px rgba(41, 26, 20, 0.08);
}

.checkout-card {
    padding: 28px;
}

.checkout-summary-card {
    position: sticky;
    top: 110px;
}

.checkout-block + .checkout-block {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(44, 62, 80, 0.08);
}

.checkout-block h3 {
    margin-bottom: 16px;
}

.checkout-fields {
    display: grid;
    gap: 16px;
}

.checkout-fields.two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-card .form-group {
    margin-bottom: 0;
}

.checkout-card input,
.checkout-card select,
.checkout-card textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(44, 62, 80, 0.12);
    background: #fff;
    font-size: 15px;
    box-sizing: border-box;
}

.checkout-card input:focus,
.checkout-card select:focus,
.checkout-card textarea:focus {
    outline: none;
    border-color: rgba(255, 107, 53, 0.56);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.12);
}

.checkout-note {
    margin-top: 12px;
    color: var(--text-light);
    font-size: 14px;
}

.checkout-note.centered {
    text-align: center;
    margin-bottom: 0;
}

.summary-items-pro {
    display: grid;
    gap: 12px;
    margin: 18px 0 22px;
}

.summary-item-card {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--light-bg);
}

.summary-item-meta,
.meta-label {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 4px;
}

.summary-box-pro {
    padding: 18px;
    border-radius: 20px;
    background: #fff8f3;
    border: 1px solid rgba(255, 107, 53, 0.12);
}

.click-collect-benefits {
    display: grid;
    gap: 10px;
    margin: 20px 0 22px;
    color: var(--secondary-color);
    font-weight: 600;
}

.btn-pay-pro {
    width: 100%;
    min-height: 54px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff7c43, #ff5d2b);
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(255, 107, 53, 0.24);
}

.btn-pay-pro:hover {
    transform: translateY(-1px);
}

.success-card {
    max-width: 920px;
    margin: 0 auto;
    padding: 34px;
    text-align: center;
}

.success-icon {
    font-size: 58px;
    margin-bottom: 10px;
}

.success-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.success-meta-box {
    padding: 18px 16px;
    border-radius: 18px;
    background: var(--light-bg);
    text-align: left;
}

.success-order-list {
    text-align: left;
    margin: 28px 0;
    padding: 22px;
    border-radius: 22px;
    background: #fff8f3;
}

.success-order-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
}

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

.success-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .checkout-grid-pro,
    .success-meta-grid {
        grid-template-columns: 1fr;
    }

    .checkout-summary-card {
        position: static;
    }
}

@media (max-width: 720px) {
    .checkout-fields.two-cols {
        grid-template-columns: 1fr;
    }

    .checkout-card,
    .success-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .success-order-row,
    .summary-item-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== V11 Flyer catalog & photo menu ===== */
.menu-hero-rich {
    padding: 42px 20px 18px;
    background: linear-gradient(180deg, rgba(255,107,53,0.10) 0%, rgba(255,107,53,0) 100%);
}

.menu-hero-content-rich {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 24px;
    align-items: stretch;
}

.menu-hero-copy {
    padding: 24px 6px 24px 0;
}

.menu-hero-copy h2 {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.05;
    color: #1f1611;
    margin-bottom: 14px;
}

.menu-hero-copy p {
    max-width: 58ch;
    color: #5c463d;
    margin-bottom: 22px;
}

.menu-hero-photo-card {
    position: relative;
    min-height: 320px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(38, 22, 16, 0.18);
}

.menu-hero-photo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.24) 100%);
}

.menu-hero-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-visual-strip {
    padding: 10px 0 8px;
}

.visual-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.visual-tile {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 220px;
    display: flex;
    text-decoration: none;
    color: white;
    box-shadow: 0 18px 42px rgba(41, 26, 20, 0.16);
}

.visual-tile img,
.visual-overlay {
    position: absolute;
    inset: 0;
}

.visual-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    background: linear-gradient(180deg, rgba(14,13,13,0.08) 0%, rgba(14,13,13,0.62) 100%);
}

.visual-content {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 18px;
    display: grid;
    gap: 8px;
}

.visual-content strong {
    font-size: 22px;
    line-height: 1.15;
}

.visual-content span {
    color: rgba(255,255,255,0.88);
}

.section-heading-menu p {
    max-width: 64ch;
}

.products-collection {
    display: grid;
    gap: 24px;
}

.products-group {
    display: grid;
    gap: 18px;
}

.products-group-head {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.7fr);
    gap: 18px;
    align-items: end;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.14);
}

.products-group-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff1ea;
    color: #a25029;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.products-group-head h3 {
    font-size: clamp(22px, 2.8vw, 30px);
    color: #1f1611;
}

.products-group-head p {
    color: #6f564c;
    justify-self: end;
    text-align: right;
}

.products-grid-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
}

.product-format {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff6f1;
    color: #9a542f;
    font-size: 12px;
    font-weight: 700;
}

.product-description {
    min-height: 60px;
    height: auto;
}

.no-products {
    padding: 18px;
    border-radius: 16px;
    background: #fff8f3;
    color: #8d5641;
}


.visual-content-simple {
    align-items: flex-start;
}

.visual-content-simple strong {
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}

.visual-content-simple span {
    display: none;
}

.hero-shortcuts .hero-shortcut.hero-shortcut-primary {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

.hero-shortcuts .hero-shortcut.hero-shortcut-primary:hover {
    background: #e85a28;
    border-color: #e85a28;
    color: #fff;
}

/* v15 additions */
.floating-back-button {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 9999;
    border: none;
    border-radius: 999px;
    padding: 12px 16px;
    background: #2c3e50;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.floating-back-button:hover {
    transform: translateY(-1px);
}

.home-map-section {
    padding: 10px 0 34px;
}

.home-map-card {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(44, 28, 21, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.12);
}

.home-map-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.2fr;
}

.home-map-copy {
    padding: 34px;
}

.home-map-copy h3 {
    margin: 10px 0 12px;
    font-size: 1.9rem;
    color: #21130f;
}

.home-map-copy p {
    color: #6a544b;
    line-height: 1.7;
}

.home-map-infos {
    display: grid;
    gap: 12px;
    margin: 18px 0 20px;
}

.home-map-info {
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff7f2;
    color: #51372d;
}

.home-map-embed {
    min-height: 320px;
}

.home-map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.payment-method-grid {
    display: grid;
    gap: 12px;
}

.payment-method-option {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    border: 1px solid #efd6c7;
    border-radius: 16px;
    background: #fff;
}

.payment-method-option input {
    margin-top: 3px;
}

.payment-method-option strong {
    display: block;
    color: #24130d;
    margin-bottom: 4px;
}

.payment-method-option small {
    color: #7a6258;
    line-height: 1.5;
}

.checkout-badge-inline {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff3ec;
    color: #d95d28;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .home-map-grid {
        grid-template-columns: 1fr;
    }

    .home-map-embed {
        min-height: 260px;
    }
}

@media (max-width: 640px) {
    .floating-back-button {
        left: 12px;
        bottom: 12px;
        padding: 11px 14px;
        font-size: 14px;
    }

    .home-map-copy {
        padding: 22px;
    }
}


/* ===== Mobile menu V16 ===== */
.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 14px;
    background: rgba(255,255,255,0.14);
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    display: block;
    transition: transform .2s ease, opacity .2s ease;
}

body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* Brand logo */
.brand-logo-link,
.footer-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.logo .brand-logo-link {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 22px;
    padding: 8px 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.site-logo-img {
    display: block;
    width: min(260px, 42vw);
    height: auto;
    max-height: 74px;
}

.hero-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 18px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 28px;
    padding: 12px 18px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.hero-logo-img {
    width: min(360px, 78vw);
    max-height: none;
}

.footer-brand {
    margin-bottom: 12px;
}

.footer-logo-img {
    width: 190px;
    max-height: none;
}


.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.social-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-link-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 107, 53, 0.18);
    border-color: rgba(255, 107, 53, 0.4);
    color: #ffffff;
}

.social-link-btn.is-muted {
    opacity: 0.72;
    cursor: default;
}

.page-shell {
    padding: 48px 0 72px;
}

.page-hero-card {
    background: linear-gradient(135deg, rgba(255,107,53,0.96), rgba(44,62,80,0.94));
    border-radius: 32px;
    padding: 48px;
    color: #fff;
    box-shadow: 0 24px 50px rgba(22, 26, 29, 0.18);
    margin-bottom: 32px;
}

.page-hero-card h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.06;
    margin-bottom: 12px;
    color: #fff;
}

.page-hero-card p {
    max-width: 760px;
    font-size: 1.04rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.92);
}

.page-grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.surface-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    padding: 28px;
}

.surface-card h2,
.surface-card h3 {
    color: #1f2937;
    margin-bottom: 14px;
}

.surface-card p,
.surface-card li {
    color: #4b5563;
    line-height: 1.75;
}

.muted-text {
    color: #6b7280;
}

.section-stack {
    display: grid;
    gap: 24px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.stat-card {
    background: linear-gradient(180deg, #fff8f4 0%, #ffffff 100%);
    border: 1px solid rgba(255,107,53,0.12);
    border-radius: 20px;
    padding: 18px;
}

.stat-card strong {
    display: block;
    font-size: 1.8rem;
    color: #111827;
    margin-bottom: 4px;
}

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

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff4ed;
    color: #9a3412;
    font-weight: 700;
    border: 1px solid rgba(255,107,53,0.18);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.review-platform,
.review-card {
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    padding: 22px;
}

.review-platform h3,
.review-card h3 {
    margin-bottom: 8px;
}

.review-score {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
}

.review-meta {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.review-stars {
    letter-spacing: 2px;
    color: #f59e0b;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.btn-secondary,
.btn-outline,
.btn-primary,
.btn-link-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn-secondary {
    background: #fff4ed;
    color: #9a3412;
    border-color: rgba(255,107,53,0.18);
}

.btn-outline {
    background: #fff;
    color: #111827;
    border-color: rgba(15,23,42,0.12);
}

.btn-link-chip {
    background: rgba(255,255,255,0.14);
    color: #fff;
    border-color: rgba(255,255,255,0.24);
}

.btn-secondary:hover,
.btn-outline:hover,
.btn-link-chip:hover,
.btn-primary:hover {
    transform: translateY(-1px);
}

.notice,
.alert-card {
    border-radius: 18px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.notice.success,
.alert-card.success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.notice.error,
.alert-card.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-card {
    background: #fff;
    border-radius: 26px;
    box-shadow: 0 18px 40px rgba(15,23,42,.08);
    padding: 32px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    color: #1f2937;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,.12);
    padding: 14px 16px;
    font-size: 1rem;
    background: #fff;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(255,107,53,.62);
    box-shadow: 0 0 0 4px rgba(255,107,53,.12);
    outline: none;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #4b5563;
    line-height: 1.6;
}

.checkbox-row input {
    margin-top: 5px;
}

.auth-shell {
    max-width: 1080px;
    margin: 0 auto;
    padding: 48px 20px 72px;
}

.auth-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.auth-side {
    border-radius: 30px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255,107,53,.98), rgba(44,62,80,.96));
    color: #fff;
    box-shadow: 0 24px 50px rgba(22,26,29,0.18);
}

.auth-side h1 {
    color: #fff;
    margin-bottom: 14px;
}

.auth-side p,
.auth-side li {
    color: rgba(255,255,255,.92);
    line-height: 1.75;
}

.account-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.account-badge {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #ffedd5, #fff);
    color: #9a3412;
    border: 1px solid rgba(255,107,53,.18);
}

.account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.table-clean {
    width: 100%;
    border-collapse: collapse;
}

.table-clean th,
.table-clean td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(15,23,42,.08);
    text-align: left;
}

.table-clean th {
    color: #6b7280;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.header-actions .btn-cart + .btn-secondary,
.header-actions .btn-cart + .btn-outline,
.header-actions .btn-secondary + .btn-outline {
    margin-left: 10px;
}

.hidden-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}


/* ===== V26 header/menu cleanup ===== */
.header-content {
    flex-wrap: wrap;
    gap: 18px;
}

.nav-menu {
    flex: 1 1 420px;
    min-width: 0;
}

.nav-menu ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
}

.nav-menu a {
    white-space: nowrap;
    font-size: 1rem;
}

.header-actions {
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header-actions a,
.header-actions button {
    white-space: nowrap;
}

.header .brand-logo-link {
    padding: 10px 14px;
    border-radius: 20px;
}

.header .site-logo-img {
    width: 150px;
    max-height: 60px;
}

.btn-nav-link,
.header-actions .btn-cart,
.header-actions .btn-secondary,
.header-actions .btn-outline {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
}

@media (max-width: 1180px) {
    .header-content {
        justify-content: center;
    }

    .header-actions {
        justify-content: center;
    }
}


/* ===== V27 header sans logo ===== */
.header {
    padding: 16px 0;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.header-content > .nav-menu {
    flex: 1 1 680px;
    min-width: 0;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px 18px;
    flex-wrap: wrap;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    background: rgba(255,255,255,0.12);
    opacity: 1;
}

.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.header-actions .btn-cart,
.header-actions .btn-secondary,
.header-actions .btn-outline,
.header-actions .btn-nav-link {
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 18px;
}

@media (max-width: 920px) {
    .header-content > .nav-menu {
        flex-basis: 100%;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }
}


.cart-item-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 6px 0 2px;
}

.cart-item-option {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.12);
    color: #7c2d12;
    font-size: 12px;
    line-height: 1.3;
}
