/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF9ECE;
    --primary-dark: #FF7AB8;
    --secondary-color: #FFD4E5;
    --accent-color: #B5E5FF;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --background: #FFFBF7;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-large: rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;

    /* WooCommerce theme aliases */
    --pink-mid: #FF9ECE;
    --pink-deep: #FF7AB8;
    --pink-light: #FFD4E5;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
    --brown-dark: #2C2C2C;
    --warm-white: #FFFBF7;
    --cream: #FFF5EE;
    --text-soft: #6B6B6B;
    --text: #2C2C2C;
    --radius: 12px;
    --radius-sm: 8px;
    --trans: all 0.3s ease;
    --shadow-md: rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 5px 15px var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        text-align: center;
        padding: 0.5rem 0;
    }

    .nav-menu a {
        display: block;
        width: 100%;
    }
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFE5F1 0%, #FFD4E5 50%, #FFC5E3 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(181, 229, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

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

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 158, 206, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 158, 206, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* ===========================
   SECTIONS
   =========================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   FEATURED SECTION
   =========================== */
.featured-section {
    background: var(--white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.featured-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    padding: 1.5rem;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.featured-image {
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.placeholder-image {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.featured-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.featured-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.featured-card .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===========================
   WHY CHOOSE US
   =========================== */
.why-choose {
    background: linear-gradient(135deg, #FFF5E1 0%, #FFE5F1 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #FFE5F1 0%, #FFF5E1 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow);
}

.stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.powered-by a {
    color: var(--primary-color);
    font-weight: 500;
}

.powered-by a:hover {
    text-decoration: underline;
}

/* ===========================
   MENU PAGE
   =========================== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.menu-card-image {
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.menu-card-content {
    padding: 1.5rem;
}

.menu-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.menu-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.menu-card .price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-section {
    margin-bottom: 4rem;
}

.category-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--secondary-color);
}

/* ===========================
   FORMS
   =========================== */
.form-section {
    background: var(--white);
}

.order-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #E5E5E5;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 158, 206, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.success-message,
.error-message {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    display: none;
}

.success-message {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.error-message {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.success-message.show,
.error-message.show {
    display: block;
}

/* ===========================
   GALLERY
   =========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.gallery-item-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* ===========================
   RESPONSIVE UTILITIES
   =========================== */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

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

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

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

/* ===========================
   MENU REBUILD ADDITIONS — 2026-05-24
   =========================== */

/* Category jump nav */
.category-nav {
    padding: 1.5rem 0;
    background: var(--cream);
    border-bottom: 1px solid var(--secondary-color);
    position: sticky;
    top: 68px;
    z-index: 20;
}
.category-nav .container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.cat-link {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 999px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}
.cat-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Category blurb */
.category-blurb {
    text-align: center;
    color: var(--text-light);
    margin: -1rem auto 2rem;
    max-width: 640px;
    font-size: 0.95rem;
}

/* Make whole product card a clickable button */
.menu-card-button {
    background: var(--white);
    border: 0;
    padding: 0;
    text-align: left;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    color: inherit;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.menu-card-button:hover,
.menu-card-button:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px var(--shadow-medium);
    outline: none;
}
.menu-card-button:focus-visible {
    box-shadow: 0 0 0 3px var(--primary-color), 0 10px 24px var(--shadow-medium);
}
.card-cta {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

/* ===========================
   PRODUCT MODAL
   =========================== */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.product-modal[hidden] { display: none; }

.product-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}

.product-modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 880px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 24px 64px var(--shadow-large);
    animation: modalSlideIn 0.25s ease;
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.product-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255,255,255,0.92);
    border: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 8px var(--shadow);
    transition: var(--transition);
}
.product-modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
}

.product-modal-image {
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}
.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
    max-height: 500px;
}

.product-modal-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.product-modal-body h2 {
    font-size: 1.85rem;
    line-height: 1.2;
    margin: 0;
}
.modal-description {
    color: var(--text-light);
    margin: 0;
}

.modal-pricing h4,
.modal-delivery h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.pricing-tiers {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid var(--secondary-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.pricing-tiers li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--secondary-color);
    background: var(--white);
}
.pricing-tiers li:last-child {
    border-bottom: 0;
}
.pricing-tiers li:nth-child(odd) {
    background: var(--cream);
}
.tier-qty {
    font-weight: 500;
}
.tier-price {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.modal-delivery ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.modal-delivery li {
    padding: 0.4rem 0 0.4rem 1.4rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.modal-delivery li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-dark);
    font-weight: 700;
}

.modal-actions {
    margin-top: 0.5rem;
}
.modal-actions .btn {
    width: 100%;
    text-align: center;
}
.modal-lead-note {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

@media (max-width: 720px) {
    .product-modal-content {
        grid-template-columns: 1fr;
        max-height: 95vh;
    }
    .product-modal-image img {
        max-height: 240px;
    }
    .product-modal-body {
        padding: 1.5rem;
    }
}

/* Callout box for custom-cake confirmation notice */
.callout-box {
    background: var(--secondary-color);
    border-left: 4px solid var(--primary-dark);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.55;
}
.callout-box strong {
    color: var(--primary-dark);
}

/* ===========================
   CART + CHECKOUT — 2026-05-24
   =========================== */

/* Floating cart button (FAB) */
.ebt-cart-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1500;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: 0;
    box-shadow: 0 6px 20px rgba(255, 122, 184, 0.45);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: var(--transition);
}
.ebt-cart-fab:hover {
    transform: scale(1.08);
    background: var(--primary-dark);
}
.ebt-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--text-dark);
    color: var(--white);
    border: 2px solid var(--white);
    min-width: 24px;
    height: 24px;
    border-radius: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0 6px;
}

/* Toast */
.ebt-toast {
    position: fixed;
    bottom: 6rem;
    right: 1.5rem;
    z-index: 1600;
    background: var(--text-dark);
    color: var(--white);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 16px var(--shadow-large);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    pointer-events: none;
    max-width: 280px;
    font-size: 0.9rem;
}
.ebt-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Cart drawer */
.ebt-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 2200;
    visibility: hidden;
    pointer-events: none;
}
.ebt-cart-drawer.open {
    visibility: visible;
    pointer-events: auto;
}
.ebt-cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.ebt-cart-drawer.open .ebt-cart-backdrop { opacity: 1; }

.ebt-cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background: var(--white);
    box-shadow: -8px 0 32px var(--shadow-large);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.ebt-cart-drawer.open .ebt-cart-panel { transform: translateX(0); }

.ebt-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--secondary-color);
}
.ebt-cart-header h3 { margin: 0; font-size: 1.4rem; }
.ebt-cart-close {
    background: transparent;
    border: 0;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    color: var(--text-light);
    transition: var(--transition);
}
.ebt-cart-close:hover { color: var(--primary-dark); }

.ebt-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}
.ebt-cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}
.ebt-cart-empty p { margin-bottom: 1.5rem; }

.ebt-cart-line {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--cream);
}
.ebt-cart-line-name {
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.15rem;
}
.ebt-cart-line-price {
    font-size: 0.8rem;
    color: var(--text-light);
}
.ebt-cart-line-controls {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid var(--secondary-color);
    border-radius: var(--radius-sm);
    padding: 2px;
}
.ebt-qty-btn {
    width: 28px;
    height: 28px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    color: var(--text-dark);
}
.ebt-qty-btn:hover { color: var(--primary-dark); }
.ebt-qty-input {
    width: 38px;
    border: 0;
    text-align: center;
    font-size: 0.9rem;
    padding: 2px 0;
    -moz-appearance: textfield;
}
.ebt-qty-input::-webkit-outer-spin-button,
.ebt-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.ebt-cart-line-total {
    font-weight: 600;
    font-family: var(--font-serif);
    min-width: 60px;
    text-align: right;
}
.ebt-cart-line-remove {
    background: transparent;
    border: 0;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 4px 6px;
    transition: var(--transition);
}
.ebt-cart-line-remove:hover { color: #c00; }

.ebt-cart-footer {
    border-top: 1px solid var(--secondary-color);
    padding: 1.25rem 1.5rem;
    background: var(--cream);
}
.ebt-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.ebt-cart-subtotal strong {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary-dark);
}
.ebt-cart-note {
    font-size: 0.78rem;
    color: var(--text-light);
    margin: 0.25rem 0 1rem;
    line-height: 1.4;
}
.ebt-checkout-btn {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
}
.ebt-clear-btn {
    width: 100%;
    background: transparent;
    border: 0;
    color: var(--text-light);
    text-decoration: underline;
    cursor: pointer;
    padding: 0.4rem;
    font-size: 0.85rem;
}
.ebt-clear-btn:hover { color: #c00; }

/* Modal tier "Add" buttons */
.tier-add-btn {
    background: var(--primary-color);
    color: var(--white);
    border: 0;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 0.75rem;
    transition: var(--transition);
}
.tier-add-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.04);
}
.pricing-tiers li {
    flex-wrap: wrap;
}

/* Standalone cart.html page */
.cart-page {
    padding: 3rem 0 5rem;
    min-height: 60vh;
}
.cart-page-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}
.cart-page-items {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 4px 16px var(--shadow);
}
.cart-page-summary {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 4px 16px var(--shadow);
    position: sticky;
    top: 90px;
}
.cart-page-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}
@media (max-width: 820px) {
    .cart-page-grid { grid-template-columns: 1fr; }
    .cart-page-summary { position: static; }
    .ebt-cart-panel { max-width: 100%; }
}


/* ===== Delivery method picker in cart drawer (added 2026-05-25) ===== */
.ebt-delivery { margin: 14px 0 10px; padding: 12px; background: rgba(248,221,232,0.18); border-radius: 8px; }
.ebt-delivery-title { font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; color: #444; }
.ebt-delivery-opt {
  display: flex; align-items: center; gap: 8px; padding: 8px 4px;
  cursor: pointer; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.92rem;
}
.ebt-delivery-opt:last-of-type { border-bottom: none; }
.ebt-delivery-opt input[type=radio] { margin: 0; }
.ebt-delivery-opt-label { flex: 1; }
.ebt-delivery-opt-price { font-weight: 600; color: #b8447c; }
.ebt-delivery-opt.is-disabled { opacity: 0.45; cursor: not-allowed; }
.ebt-delivery-help { font-size: 0.82rem; color: #666; margin: 8px 0 4px; }
.ebt-delivery-address { margin-top: 10px; padding-top: 10px; border-top: 1px dashed rgba(0,0,0,0.1); }
.ebt-delivery-addr-label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 4px; }
.ebt-delivery-addr-input {
  width: 100%; padding: 8px 10px; border: 1px solid #d8c8d0; border-radius: 6px;
  font-family: inherit; font-size: 0.9rem; resize: vertical; min-height: 48px;
  box-sizing: border-box;
}
.ebt-delivery-check-btn {
  margin-top: 8px; padding: 8px 14px; background: #b8447c; color: white;
  border: none; border-radius: 6px; cursor: pointer; font-size: 0.85rem; font-weight: 600;
}
.ebt-delivery-check-btn:disabled { opacity: 0.6; cursor: wait; }
.ebt-delivery-check-btn:hover:not(:disabled) { background: #9b3866; }
.ebt-delivery-status { margin-top: 8px; font-size: 0.85rem; min-height: 1.2em; }
.ebt-delivery-ok { color: #2a8a3e; font-weight: 600; }
.ebt-delivery-warn { color: #c84545; font-weight: 600; }
.ebt-delivery-pending { color: #666; font-style: italic; }
.ebt-cart-total { display: flex; justify-content: space-between; margin: 12px 0; font-size: 1.05rem; }
.ebt-cart-total strong { color: #b8447c; }
.ebt-cart-total small { font-size: 0.75rem; color: #888; font-weight: 400; }
.ebt-checkout-btn:disabled { opacity: 0.55; cursor: not-allowed; }


/* ===== Cart moved from FAB to top nav (2026-05-25) ===== */
/* Hide any leftover FAB instances (defensive against cached JS / stale DOM). */
.ebt-cart-fab { display: none !important; }

/* Cart count badge inside the nav "Cart" link */
.ebt-nav-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  margin-left: 4px;
  border-radius: 11px;
  background: var(--primary-color, #b8447c);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
}

/* Cart link stays inline — badge sits inline via vertical-align: middle */

/* Cart count badge: align baseline with surrounding link text */
.nav-menu .ebt-nav-cart-badge {
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* ===========================
   IMAGE PLACEHOLDER — 2026-05-24
   For products without a photo yet
   =========================== */
.menu-card-image.image-placeholder,
.product-modal-image.image-placeholder {
    background: linear-gradient(135deg, var(--cream) 0%, var(--secondary-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: var(--primary-dark);
    text-align: center;
}
.menu-card-image.image-placeholder { min-height: 200px; }
.product-modal-image.image-placeholder { min-height: 280px; }

.placeholder-icon {
    font-size: 3rem;
    opacity: 0.55;
    line-height: 1;
}
.product-modal-image.image-placeholder .placeholder-icon {
    font-size: 4rem;
}
.placeholder-text {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    font-weight: 500;
}

/* ===========================
   IMAGE SLIDESHOW (multi-photo products, hover to swap) — 2026-05-24
   =========================== */
.menu-card-image.image-slideshow,
.product-modal-image.image-slideshow {
    position: relative;
    overflow: hidden;
    background: var(--cream);
}
.menu-card-image.image-slideshow { min-height: 200px; }
.product-modal-image.image-slideshow { min-height: 280px; }

.image-slideshow img.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}
.image-slideshow img.slide-0 { opacity: 1; z-index: 1; }
.image-slideshow img.slide-1 { opacity: 0; z-index: 2; }
.image-slideshow img.slide-2 { opacity: 0; z-index: 3; }

/* Hover swaps in the next image (cards on the menu page) */
.menu-card-button:hover .image-slideshow img.slide-1,
.menu-card-button:focus-visible .image-slideshow img.slide-1 {
    opacity: 1;
}
/* In the modal, hover the image area itself */
.product-modal-image.image-slideshow:hover img.slide-1 {
    opacity: 1;
}

/* Small "📷 2" badge so users know there's a second photo */
.slideshow-hint {
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
    z-index: 4;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-dark);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    box-shadow: 0 1px 4px var(--shadow);
    pointer-events: none;
}

/* On touch devices (no hover), auto-cycle every 3s instead */
@media (hover: none) {
    .image-slideshow img.slide-1 {
        animation: slideshow-cycle 6s infinite;
    }
    @keyframes slideshow-cycle {
        0%, 45%   { opacity: 0; }
        50%, 95%  { opacity: 1; }
        100%      { opacity: 0; }
    }
}

/* ===========================
   MOBILE TAP FIX — 2026-05-25
   The hover-slideshow images sit position:absolute on top of the card,
   which can capture touch events on mobile (an opacity:0 element still
   receives pointer events by default). Force taps to bubble up to the
   parent button so the modal opens reliably on touch devices.
   =========================== */
.menu-card-button {
    -webkit-tap-highlight-color: rgba(255, 122, 184, 0.18);
    touch-action: manipulation;
}
.menu-card-button img,
.menu-card-button .menu-card-image,
.menu-card-button .menu-card-image-placeholder,
.menu-card-button .menu-card-content,
.menu-card-button .image-slideshow,
.menu-card-button .image-slideshow img.slide,
.menu-card-button .slideshow-hint,
.menu-card-button .placeholder-icon,
.menu-card-button .placeholder-text {
    pointer-events: none;
}

/* ===========================
   MOBILE TAP AUDIT — 2026-05-25
   Hamburger toggle + every interactive surface site-wide gets
   - 44x44px minimum tap target (Apple HIG)
   - touch-action: manipulation (kills 300ms iOS tap delay)
   - inner non-text elements set pointer-events:none so taps reach the parent
   =========================== */

/* HAMBURGER TOGGLE — was broken JS + small target */
.mobile-menu-toggle {
    padding: 0.6rem !important;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(255, 122, 184, 0.25);
    touch-action: manipulation;
}
.mobile-menu-toggle span {
    pointer-events: none;
}

/* All buttons site-wide — kill iOS 300ms tap delay, soft pink highlight */
button,
.btn,
a.btn,
a.btn-primary,
a.btn-secondary,
a.btn-large,
a.btn-link,
input[type="submit"],
input[type="button"],
.nav-shop-btn,
.cat-link,
.featured-card a,
.testimonial-card,
.feature {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 122, 184, 0.15);
}

/* Modal close X — already a button, just make sure tap target is decent */
.product-modal-close {
    min-width: 44px;
    min-height: 44px;
}

/* Cart drawer +/- qty buttons — were 28x28, bump for touch comfort */
.ebt-qty-btn {
    min-width: 36px;
    min-height: 36px;
    padding: 0;
}
.ebt-qty-input {
    min-height: 36px;
}
.ebt-cart-line-remove {
    min-width: 36px;
    min-height: 36px;
    padding: 6px 8px;
}
.ebt-cart-close {
    min-width: 44px;
    min-height: 44px;
}

/* Form submit buttons — ensure decent tap target */
form button[type="submit"] {
    min-height: 48px;
}

/* Modal "Add to cart" tier buttons — pickup-truck them up for fingers */
.tier-add-btn {
    min-height: 40px;
    padding: 0.55rem 1rem;
}

/* Nav links on mobile — bigger tap area when the menu is open */
@media (max-width: 768px) {
    .nav-menu a {
        display: block;
        padding: 0.85rem 1.5rem;
        min-height: 44px;
        line-height: 1.5;
    }
}

/* ===========================
   NAV CART BUTTON (right side) — 2026-05-25
   Pulls Cart out of nav-menu and makes it a standalone right-side button
   =========================== */

/* Layout: logo on left, [nav-menu + cart + hamburger] on right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Cart button — visible on every viewport, anchored to the right of nav */
.nav-cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0.4rem 0.75rem;
    background: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 999px;
    text-decoration: none;
    transition: var(--transition);
    -webkit-tap-highlight-color: rgba(255, 122, 184, 0.25);
    touch-action: manipulation;
}
.nav-cart-btn:hover,
.nav-cart-btn:focus-visible {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.04);
    outline: none;
}
.nav-cart-icon {
    font-size: 1.25rem;
    line-height: 1;
}

/* Cart count badge — positioned over the top-right of the cart button */
.ebt-nav-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary-dark);
    color: var(--white);
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0 6px;
    border: 2px solid var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    line-height: 1;
}

/* Mobile: nav-menu becomes the dropdown. Cart + hamburger stay inline. */
@media (max-width: 768px) {
    .nav-menu {
        order: 99; /* push to bottom on flex order — doesn't really matter since absolute-positioned */
    }
    .nav-cart-btn {
        padding: 0.4rem 0.65rem;
    }
}

/* On desktop, the nav-menu list is inline-flex per the existing styles.
   Make sure it sits inside .nav-right without extra wrapping. */
.nav-right .nav-menu {
    margin: 0;
}

/* ===========================
   NO MORE HAMBURGER — 2026-05-25
   Dan's iPhone refused to tap the hamburger reliably. Killing the hamburger
   entirely and making the nav menu always visible. On mobile, items wrap
   below the logo + cart icon row.
   =========================== */

/* Hide hamburger if any old cached HTML still has it */
.mobile-menu-toggle { display: none !important; }

/* Override the previous mobile media query that hid .nav-menu and turned it
   into an absolutely-positioned dropdown. Now it's always inline. */
@media (max-width: 768px) {
    .nav-menu {
        position: static;
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        background: transparent;
        padding: 0;
        gap: 0.1rem;
        box-shadow: none;
        justify-content: center;
        width: 100%;
        order: 99; /* push below logo + cart row */
    }
    .nav-menu li {
        list-style: none;
    }
    .nav-menu a {
        display: inline-block;
        padding: 0.45rem 0.75rem;
        font-size: 0.92rem;
        min-height: 36px;
        line-height: 1.2;
        white-space: nowrap;
        color: var(--text-dark);
    }
    .nav-menu a.active {
        color: var(--primary-dark);
        font-weight: 600;
    }
    /* Stack: logo + cart on row 1, nav menu on row 2 */
    .nav-container {
        flex-wrap: wrap;
        padding: 0.6rem 16px 0.4rem;
    }
    .nav-right {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 0.5rem;
        flex: 1 1 auto;
    }
    .nav-cart-btn {
        order: 1;
    }
    .nav-right .nav-menu {
        order: 2;
        flex-basis: 100%;
        margin-top: 0.3rem;
    }
    .logo-text {
        font-size: 1.4rem;
    }
}

/* Tighter on very small phones */
@media (max-width: 380px) {
    .nav-menu a {
        padding: 0.4rem 0.55rem;
        font-size: 0.85rem;
    }
    .logo-text {
        font-size: 1.2rem;
    }
}

/* ===========================
   MOBILE LOGO SIZE BUMP — 2026-05-25
   Logo was too small relative to the cart pill on iPhone.
   =========================== */
@media (max-width: 768px) {
    .logo-text { font-size: 1.7rem !important; }
}
@media (max-width: 380px) {
    .logo-text { font-size: 1.45rem !important; }
}

/* ===========================
   NAV HEIGHT MATCH — 2026-05-25
   Logo text and cart pill should be the same height on mobile, with the
   navbar staying compact (don't inflate the banner).
   Target: both ~36px tall, sharing a single visual baseline.
   =========================== */
@media (max-width: 768px) {
    /* Reset prior aggressive size bumps */
    .logo-text {
        font-size: 1.45rem !important;
        line-height: 36px !important;
        display: inline-block;
    }
    /* Slim down the cart pill so it matches the logo text height exactly */
    .nav-cart-btn {
        min-width: 0;
        min-height: 36px !important;
        height: 36px;
        padding: 0 0.85rem !important;
        line-height: 36px;
    }
    .nav-cart-icon {
        font-size: 1.05rem;
        line-height: 36px;
    }
    .ebt-nav-cart-badge {
        top: -3px;
        right: -3px;
        min-width: 20px;
        height: 20px;
        border-radius: 10px;
        font-size: 0.68rem;
        line-height: 1;
    }
    /* Tighten container so the navbar doesn't get taller than its tallest child */
    .nav-container {
        padding: 0.45rem 16px 0.35rem !important;
    }
}
@media (max-width: 380px) {
    .logo-text {
        font-size: 1.25rem !important;
        line-height: 32px !important;
    }
    .nav-cart-btn {
        min-height: 32px !important;
        height: 32px;
        padding: 0 0.7rem !important;
        line-height: 32px;
    }
    .nav-cart-icon {
        font-size: 1rem;
        line-height: 32px;
    }
}

/* ===========================
   NAV HEIGHT MATCH — ULTRA-SPECIFIC — 2026-05-25
   Earlier rules with !important were getting overridden in some contexts.
   This rule has selector specificity (0,4,2) which beats anything else
   on the site, plus !important. Cart pill = 36px on phone, same as logo.
   =========================== */
@media (max-width: 768px) {
    nav.navbar div.nav-right a.nav-cart-btn,
    nav#navbar a#navCartBtn {
        min-width: 0 !important;
        min-height: 36px !important;
        height: 36px !important;
        max-height: 36px !important;
        padding: 0 12px !important;
        line-height: 36px !important;
        box-sizing: border-box !important;
    }
    nav.navbar div.nav-right a.nav-cart-btn .nav-cart-icon,
    nav#navbar a#navCartBtn .nav-cart-icon {
        font-size: 18px !important;
        line-height: 36px !important;
    }
    nav.navbar a.logo span.logo-text {
        font-size: 1.45rem !important;
        line-height: 36px !important;
        display: inline-block !important;
    }
}
@media (max-width: 380px) {
    nav.navbar div.nav-right a.nav-cart-btn,
    nav#navbar a#navCartBtn {
        min-height: 32px !important;
        height: 32px !important;
        max-height: 32px !important;
        padding: 0 10px !important;
        line-height: 32px !important;
    }
    nav.navbar div.nav-right a.nav-cart-btn .nav-cart-icon,
    nav#navbar a#navCartBtn .nav-cart-icon {
        font-size: 16px !important;
        line-height: 32px !important;
    }
    nav.navbar a.logo span.logo-text {
        font-size: 1.25rem !important;
        line-height: 32px !important;
    }
}

/* ===========================
   SIMPLE CART LINK — 2026-05-25 (v5)
   No pill, no transition, no min-height. Just an inline text link.
   Heights naturally match the rest of the nav because it IS the rest of the nav.
   =========================== */
.nav-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary-dark) !important;
    font-weight: 600;
    text-decoration: none;
    padding: 0.4rem 0.6rem;
    position: relative;
    transition: none !important;
}
.nav-cart-link:hover,
.nav-cart-link:focus-visible {
    color: var(--primary-color) !important;
    outline: none;
}
.nav-cart-emoji {
    font-size: 1.15rem;
    line-height: 1;
}
.nav-cart-text {
    font-size: 1rem;
}

/* Count badge — small dark dot floating top-right of the link */
.nav-cart-link .ebt-nav-cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary-dark);
    color: var(--white);
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0 5px;
    border: 1.5px solid var(--white);
    line-height: 1;
}

@media (max-width: 480px) {
    /* On small phones, hide the "Cart" word and just show the emoji + badge */
    .nav-cart-text { display: none; }
    .nav-cart-link { padding: 0.35rem 0.5rem; }
}

/* ALSO: kill the old pink-pill rules in case any cached CSS still applies them */
.nav-cart-btn {
    all: unset;
    cursor: pointer;
}

/* ===========================
   CART PILL v6 — 2026-05-25
   Pink pill labeled "Cart" (no emoji). Height pinned to logo via JS.
   CRITICAL: no transition, so JS height-pin applies instantly.
   =========================== */
.nav-cart-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white) !important;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    padding: 0 1rem;
    position: relative;
    transition: none !important;
    -webkit-tap-highlight-color: rgba(255, 122, 184, 0.25);
    touch-action: manipulation;
    /* height/line-height pinned by JS to match logo */
}
.nav-cart-pill:hover,
.nav-cart-pill:focus-visible {
    background: var(--primary-dark);
    color: var(--white) !important;
    outline: none;
}
.nav-cart-label {
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}
.nav-cart-pill .ebt-nav-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--text-dark);
    color: var(--white);
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0 5px;
    border: 2px solid var(--white);
    line-height: 1;
}

/* ===========================
   NAV LAYOUT v7 — 2026-05-25
   Logo + Cart pill ALWAYS on same row, vertically centered.
   Nav menu wraps to row 2 on mobile, stays inline on desktop.
   =========================== */
.nav-container {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    padding: 0.6rem 16px !important;
    row-gap: 0.4rem !important;
    column-gap: 0.6rem !important;
}

/* Logo: takes available space on the left, doesn't shrink past content */
.nav-container > .logo {
    flex: 1 1 auto !important;
    margin-right: auto;
    order: 1;
}

/* Cart pill: stays inline at the right of row 1, never wraps */
.nav-container > .nav-cart-pill {
    flex: 0 0 auto !important;
    order: 2;
}

/* Nav menu items: inline on desktop, full-width row 2 on mobile */
.nav-container > .nav-menu {
    flex: 0 1 auto;
    order: 3;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-container > .nav-menu li { list-style: none; }
.nav-container > .nav-menu a {
    display: inline-block;
    padding: 0.4rem 0.7rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
}
.nav-container > .nav-menu a.active {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Desktop: nav menu sits between logo and cart pill */
@media (min-width: 769px) {
    .nav-container > .nav-menu {
        order: 2;
    }
    .nav-container > .nav-cart-pill {
        order: 3;
    }
    .nav-container > .logo {
        flex: 0 0 auto !important;
        margin-right: auto;
    }
}

/* Mobile: nav menu takes full row 2 */
@media (max-width: 768px) {
    .nav-container > .nav-menu {
        flex-basis: 100% !important;
        justify-content: center;
        flex-wrap: wrap;
    }
    .nav-container > .nav-menu a {
        padding: 0.35rem 0.55rem;
        font-size: 0.88rem;
    }
}

/* Kill any inherited box styling that might break layout */
.nav-right { display: contents; }

/* ===========================
   NAV LAYOUT v8 — 2026-05-25
   New structure: <nav-top-row> wraps logo + cart pill, ALWAYS one line.
   <nav-menu> is a sibling that wraps below on mobile or inline on desktop.
   =========================== */
.nav-container {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    padding: 0.6rem 16px !important;
    column-gap: 1rem !important;
    row-gap: 0.5rem !important;
}

/* The top-row container — logo + cart ALWAYS share this row, vertically centered */
.nav-top-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    flex: 1 1 100%;
    gap: 1rem;
    min-width: 0;
}

.nav-top-row .logo {
    flex: 0 1 auto;
    min-width: 0;
    overflow: hidden;
}
.nav-top-row .nav-cart-pill {
    flex: 0 0 auto;
}

/* Nav menu — full row 2 on mobile, inline on desktop */
.nav-container > .nav-menu {
    flex: 1 1 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}
.nav-container > .nav-menu li { list-style: none; }
.nav-container > .nav-menu a {
    display: inline-block;
    padding: 0.4rem 0.7rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
}
.nav-container > .nav-menu a.active {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Desktop: nav-top-row shrinks to content, nav-menu sits inline beside it */
@media (min-width: 769px) {
    .nav-top-row {
        flex: 0 0 auto;
    }
    .nav-container > .nav-menu {
        flex: 1 1 auto;
        justify-content: flex-end;
        margin-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container > .nav-menu a {
        padding: 0.35rem 0.55rem;
        font-size: 0.88rem;
    }
}

/* ===========================
   SHRINK OH360 CHAT BUBBLE — 2026-05-25
   The widget renders inside Shadow DOM (#nexus-chat-widget host), so we
   can't restyle its inner bubble directly. Scale the host element instead.
   =========================== */
#nexus-chat-widget {
    transform: scale(0.7);
    transform-origin: bottom right;
}

/* ===========================
   NEW PRODUCT BANNER — 2026-05-25
   Pastel yellow ribbon in top-left of product image/placeholder.
   Used to flag newly added items (e.g., S'mores, PB Cup).
   =========================== */
.menu-card-image,
.menu-card-image.image-placeholder,
.menu-card-image.image-slideshow,
.product-modal-image,
.product-modal-image.image-placeholder,
.product-modal-image.image-slideshow {
    position: relative; /* enable absolute-positioned banner */
}

.new-product-banner {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 5;
    background: #FFF3B0;            /* pastel yellow */
    color: #6B5A14;                 /* warm dark amber for contrast */
    padding: 0.28rem 0.6rem;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    pointer-events: none;
    white-space: nowrap;
}

/* Slightly larger banner in the modal (bigger image area) */
.product-modal-image .new-product-banner {
    top: 12px;
    left: 12px;
    font-size: 0.78rem;
    padding: 0.32rem 0.7rem;
}

/* ===========================
   FEATURED 4-CARD GRID — 2026-05-25
   Replaces the 2-card featured section with 4 product cards.
   =========================== */
.featured-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1100px) {
    .featured-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .featured-grid-4 { grid-template-columns: 1fr; }
}

/* Card as anchor — same look as before but clickable */
.featured-grid-4 .featured-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    padding: 0;
}
.featured-grid-4 .featured-card:hover,
.featured-grid-4 .featured-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px var(--shadow-medium);
    outline: none;
    text-decoration: none;
}
.featured-grid-4 .featured-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--cream);
}
.featured-grid-4 .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.featured-grid-4 .featured-card > h3 {
    margin: 1rem 1.25rem 0.4rem;
    font-size: 1.15rem;
    line-height: 1.3;
}
.featured-grid-4 .featured-card > p {
    margin: 0 1.25rem 0.75rem;
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.5;
    flex: 1 1 auto;
}
.featured-grid-4 .featured-card > .price {
    display: block;
    margin: 0 1.25rem 0.4rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}
.featured-grid-4 .featured-card > .btn-link {
    display: block;
    margin: 0 1.25rem 1.25rem;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

/* ===========================
   ABOUT STORY GRID — 2026-05-26
   Childhood photo of Ella (left) + Our Story text (right) on desktop.
   Stacked photo-then-text on mobile.
   =========================== */
.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3rem;
}
.about-story-photo img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    display: block;
}

/* Mobile: photo above text, both full-width */
@media (max-width: 768px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-story-photo {
        max-width: 320px;
        margin: 0 auto;
    }
}
