:root {
    --rose-100: #fff3f6;
    --rose-200: #f9e6eb;
    --rose-300: #f1d4de;
    --rose-400: #e8a7b8;
    --rose-500: #d991ad;
    --rose-600: #c97991;
    --text: #3f3439;
    --text-soft: #76666d;
    --border: rgba(63, 52, 57, 0.1);
    --shadow-soft: 0 20px 50px rgba(63, 52, 57, 0.08);
    --shadow-strong: 0 25px 60px rgba(63, 52, 57, 0.14);
    --radius-lg: 32px;
    --radius-md: 24px;
    --radius-sm: 18px;
}

.carts-page {
    position: relative;
    background: linear-gradient(180deg, #fffaf7 0%, #fff6f8 100%);
}

.page-balloons {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.balloon {
    position: absolute;
    width: 90px;
    height: 120px;
    border-radius: 50% 50% 48% 48%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(232, 167, 184, 0.42));
    box-shadow: inset -8px -12px 18px rgba(255, 255, 255, 0.5), 0 10px 25px rgba(201, 121, 145, 0.12);
    opacity: 0.5;
}

.balloon::before,
.balloon::after {
    content: "";
    position: absolute;
}

.balloon::before {
    width: 2px;
    height: 70px;
    background: rgba(63, 52, 57, 0.18);
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}

.balloon::after {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    background: rgba(63, 52, 57, 0.08);
}

.balloon-one {
    top: 120px;
    left: 8%;
    transform: rotate(-10deg);
}

.balloon-two {
    top: 260px;
    right: 10%;
    transform: rotate(10deg);
}

.balloon-three {
    bottom: 120px;
    left: 12%;
    transform: rotate(-18deg);
}

.menu-hero,
.intro-section,
.menu-section,
.featured-section,
.how-it-works,
.cta-section,
.contact-section {
    position: relative;
    z-index: 1;
}

.menu-hero {
    padding-top: 80px;
    padding-bottom: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
}

.hero-layout {
    display: flex;
    justify-content: center;
    text-align: center;
    min-height: 350px;
    align-items: center;
}

.hero-content {
    max-width: 760px;
}

.hero-content h1 {
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.95;
    margin-bottom: 18px;
}

.hero-content p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-soft);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.narrow-copy {
    max-width: 760px;
    text-align: center;
    color: var(--text-soft);
    font-size: 17px;
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading.center {
    text-align: center;
}

.split-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.split-heading p {
    max-width: 510px;
    margin: 0;
    color: var(--text-soft);
    font-size: 15px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: 38px;
}

.menu-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(232, 167, 184, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.menu-image-wrap {
    background: linear-gradient(180deg, #fffaf7 0%, #fdf1f4 100%);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-bottom: 1px solid rgba(63, 52, 57, 0.05);
}

.menu-image-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.menu-card-body {
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.menu-card-body h3 {
    font-size: 22px;
    font-family: "Playfair Display", serif;
    margin-bottom: 12px;
    line-height: 1.2;
}

.menu-card-body p {
    color: var(--text-soft);
    font-size: 14px;
    margin-bottom: 18px;
    flex: 1;
}

.menu-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding-top: 10px;
    border-top: 1px solid rgba(63, 52, 57, 0.06);
    font-size: 13px;
    color: var(--text-soft);
}

.menu-meta strong {
    color: var(--text);
    font-size: 20px;
    font-family: "Playfair Display", serif;
}

.add-to-cart {
    width: 100%;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(232, 167, 184, 0.16);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 30px 24px;
    text-align: center;
}

.feature-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--rose-200);
    margin: 0 auto 18px;
    color: var(--rose-600);
    font-size: 22px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-family: "Playfair Display", serif;
}

.feature-card p {
    color: var(--text-soft);
    font-size: 14px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
}

.step-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    border: 1px solid rgba(232, 167, 184, 0.18);
    box-shadow: var(--shadow-soft);
    padding: 26px 20px;
    text-align: center;
}

.step-number {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--rose-600);
    font-weight: 700;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-family: "Playfair Display", serif;
}

.step-card p {
    color: var(--text-soft);
    font-size: 14px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(255, 250, 247, 0.95), rgba(249, 230, 235, 0.8));
    border: 1px solid rgba(232, 167, 184, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 42px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-copy h2 {
    font-size: clamp(30px, 3vw, 46px);
    font-family: "Playfair Display", serif;
    line-height: 1.1;
    margin-bottom: 10px;
}

.cta-copy p {
    color: var(--text-soft);
    font-size: 18px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(232, 167, 184, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 40px 30px;
}

.contact-list {
    margin-top: 28px;
    display: grid;
    gap: 16px;
}

.contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 16px;
    width: fit-content;
}

.contact-list a i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--rose-200);
    color: var(--rose-600);
    display: grid;
    place-items: center;
}

.contact-list a span {
    font-weight: 700;
}

.cart-panel {
    position: fixed;
    right: 24px;
    top: 110px;
    width: min(360px, calc(100vw - 24px));
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(63, 52, 57, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cart-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 12px;
    border-bottom: 1px solid rgba(63, 52, 57, 0.08);
}

.cart-header h3 {
    font-size: 20px;
    font-family: "Playfair Display", serif;
}

.cart-close {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: var(--rose-200);
    color: var(--text);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.cart-items {
    padding: 18px;
    max-height: 360px;
    overflow-y: auto;
    display: grid;
    gap: 14px;
}

.empty-cart {
    color: var(--text-soft);
    font-size: 14px;
    background: var(--rose-100);
    border-radius: 16px;
    padding: 16px 14px;
    text-align: center;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    background: #fffafc;
    border: 1px solid rgba(63, 52, 57, 0.06);
    border-radius: 18px;
    padding: 12px;
    align-items: center;
}

.cart-item h4 {
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.3;
}

.cart-item-price {
    font-weight: 700;
    color: var(--rose-600);
    font-size: 14px;
}

.remove-item {
    border: none;
    background: transparent;
    color: var(--text-soft);
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cart-summary {
    padding: 18px;
    border-top: 1px solid rgba(63, 52, 57, 0.08);
}

.subtotal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-soft);
}

.subtotal-row strong {
    color: var(--text);
    font-size: 22px;
    font-family: "Playfair Display", serif;
}

.full-width {
    width: 100%;
}


/* =========================================================
   ORIGINAL RESPONSIVE STYLES
========================================================= */

@media (max-width: 1100px) {

    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {

    .split-heading,
    .cta-card {
        display: block;
    }

    .cta-actions {
        justify-content: flex-start;
        margin-top: 18px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .btn-primary,
    .btn-outline {
        width: 100%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .contact-list a {
        width: 100%;
        font-size: 14px;
    }

    .cart-panel {
        right: 12px;
        top: 96px;
        width: calc(100vw - 24px);
    }
}


/* =========================================================
   BALLOONAIRE — BALLOON MENU ALIGNMENT UPGRADE
   Keeps the existing design; improves card consistency,
   image alignment, CTA alignment, spacing and responsiveness.
========================================================= */

.cart-page {
    position: relative;
    isolation: isolate;
}

.cart-catalog {
    width: 100%;
}

.cart-grid {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.cart-card {
    height: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
}

.cart-image {
    width: 100%;
    height: 300px;
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.cart-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.cart-info {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.cart-info h2 {
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cart-info > p {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.6;
}

.cart-bottom {
    margin-top: auto;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    min-height: 54px;
    box-sizing: border-box;
}

.cart-button {
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

/* Prices are removed from the HTML.
   This also guarantees no old price element can appear. */

.cart-bottom .cart-price {
    display: none !important;
}

/* Keep the CTA section aligned with the catalog. */

.cart-cta {
    width: min(1180px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* Prevent long titles/descriptions from breaking alignment. */

.cart-category,
.cart-info h2,
.cart-info p {
    overflow-wrap: anywhere;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .cart-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .cart-image {
        height: 280px;
        flex-basis: 280px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 680px) {

    .cart-grid,
    .cart-cta {
        width: min(100% - 32px, 520px);
    }

    .cart-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .cart-image {
        height: 280px;
        flex-basis: 280px;
    }

    .cart-bottom {
        padding-top: 20px;
    }

    .cart-button {
        width: 100%;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    .cart-grid,
    .cart-cta {
        width: calc(100% - 24px);
    }

    .cart-image {
        height: 250px;
        flex-basis: 250px;
    }
}

/* Site-wide typography */
body,
body p,
body span,
body label,
body input,
body select,
body textarea,
body button,
body .btn,
body footer {
    font-family: "ABeeZee", sans-serif !important;
}

body [class]:not(i) {
    font-family: "ABeeZee", sans-serif !important;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-family: "ABeeZee", sans-serif !important;
}

.hero-content h1,
.cart-hero h1,
.cart-hero h1 em {
    font-family: "Parisienne", cursive !important;
    font-weight: 400;
}

nav,
nav a,
nav button,
nav span,
nav .nav-link {
    font-family: "Montserrat", sans-serif !important;
}

.cart-item-price,
.subtotal-row,
.cart-bottom .cart-price {
    display: none !important;
}
