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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff9ed;
    color: #2b1a08;
}

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

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

.store-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 249, 237, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #f3d89c;
    padding: 16px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    background: #d97706;
    color: #fff;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.brand h1 {
    font-size: 1.15rem;
    color: #78350f;
}

.brand p {
    font-size: 0.82rem;
    color: #92400e;
}

.store-nav {
    display: flex;
    gap: 24px;
    font-size: 0.92rem;
    font-weight: 800;
    color: #78350f;
}

.store-nav a:hover {
    color: #d97706;
}

.hero-section {
    padding: 56px 7% 36px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

.hero-left {
    background: linear-gradient(135deg, #78350f, #b45309);
    color: #fff7df;
    border-radius: 34px;
    padding: 46px;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-label {
    width: fit-content;
    background: #facc15;
    color: #78350f;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
}

.hero-left h2 {
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.hero-left p {
    max-width: 620px;
    color: #ffedc2;
    line-height: 1.7;
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.primary-btn,
.secondary-btn {
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.92rem;
}

.primary-btn {
    background: #facc15;
    color: #78350f;
}

.secondary-btn {
    border: 1px solid #ffe8a3;
    color: #fff7df;
}

.hero-right {
    display: flex;
    align-items: stretch;
}

.family-meal-card {
    background: #fff;
    border-radius: 34px;
    padding: 16px;
    box-shadow: 0 18px 45px rgba(120, 53, 15, 0.16);
    border: 1px solid #f5d58a;
    width: 100%;
}

.family-meal-card img {
    height: 330px;
    object-fit: cover;
    border-radius: 24px;
}

.meal-note {
    margin-top: 14px;
    background: #fff7dc;
    border-radius: 22px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meal-note strong {
    color: #78350f;
}

.meal-note span {
    color: #9a5b12;
    font-size: 0.9rem;
}

.experience-strip {
    margin: 0 7%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.experience-strip div {
    background: #fff;
    border: 1px solid #f3d89c;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 10px 26px rgba(120, 53, 15, 0.08);
}

.experience-strip strong {
    display: block;
    color: #b45309;
    margin-bottom: 5px;
}

.experience-strip span {
    color: #80521d;
    font-size: 0.9rem;
}

.menu-section {
    padding: 70px 7% 50px;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 34px;
}

.section-heading span {
    color: #d97706;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-heading h2 {
    margin-top: 8px;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #78350f;
}

.section-heading p {
    margin-top: 10px;
    color: #80521d;
    line-height: 1.6;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    background: #fff;
    border: 1px solid #f1d28a;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 12px 28px rgba(120, 53, 15, 0.08);
}

.product-card img {
    height: 175px;
    object-fit: cover;
}

.product-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-content h3 {
    font-size: 1rem;
    color: #78350f;
    margin-bottom: 8px;
}

.product-content p {
    color: #80521d;
    font-size: 0.88rem;
    line-height: 1.45;
    flex: 1;
}

.product-price {
    margin-top: 14px;
    color: #d97706;
    font-weight: 900;
    font-size: 1.08rem;
}

.product-actions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #f1d28a;
    border-radius: 999px;
    overflow: hidden;
    background: #fffaf0;
}

.qty-control button {
    width: 32px;
    height: 34px;
    border: none;
    background: transparent;
    color: #78350f;
    font-weight: 900;
    cursor: pointer;
}

.qty-control span {
    min-width: 30px;
    text-align: center;
    font-weight: 900;
    color: #78350f;
}

.add-cart-btn {
    flex: 1;
    border: none;
    background: #d97706;
    color: #fff;
    border-radius: 999px;
    padding: 10px 12px;
    font-weight: 900;
    cursor: pointer;
}

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

.cart-section {
    padding: 20px 7% 70px;
}

.cart-panel {
    background: #2b1a08;
    color: #fff7df;
    border-radius: 32px;
    padding: 34px;
}

.cart-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: start;
    margin-bottom: 22px;
}

.cart-heading span {
    color: #facc15;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-heading h2 {
    margin-top: 5px;
    font-size: 1.8rem;
}

#cartTotalItems {
    color: #facc15;
}

.cart-items {
    display: grid;
    gap: 12px;
}

.empty-cart {
    color: #ffe8a3;
}

.cart-row {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(250, 204, 21, 0.16);
    border-radius: 18px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    align-items: center;
}

.cart-row-name {
    font-weight: 800;
}

.cart-row-details {
    color: #ffe8a3;
    font-size: 0.9rem;
}

.remove-btn {
    border: none;
    background: #facc15;
    color: #2b1a08;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 900;
    cursor: pointer;
}

.cart-summary {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    margin-top: 22px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
}

.checkout-btn {
    margin-top: 22px;
    width: 100%;
    border: none;
    background: #facc15;
    color: #2b1a08;
    border-radius: 999px;
    padding: 15px;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
}

.store-footer {
    background: #78350f;
    color: #fff7df;
    text-align: center;
    padding: 26px 7%;
    font-size: 0.92rem;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 820px) {
    .store-header {
        flex-direction: column;
        gap: 14px;
    }

    .store-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero-section,
    .menu-section,
    .cart-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero-left {
        padding: 32px;
        min-height: auto;
    }

    .family-meal-card img {
        height: 250px;
    }

    .experience-strip {
        margin-left: 5%;
        margin-right: 5%;
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 520px) {
    .brand {
        align-items: flex-start;
    }

    .brand h1 {
        font-size: 1rem;
    }

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

    .product-card img {
        height: 170px;
    }

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

    .primary-btn,
    .secondary-btn {
        text-align: center;
    }

    .cart-panel {
        padding: 24px;
    }
}

.buildframe-footer {
    width: 100%;
    padding: 14px 5%;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: #cdefff;
    background: #061525;
}

.buildframe-chat {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
}

.buildframe-chat-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid #66d9ff;
    background: #071a2f;
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 0 22px rgba(79, 195, 255, 0.55);
}

.buildframe-chat-panel {
    display: block;
    position: absolute;
    right: 0;
    bottom: 72px;
    width: 260px;
    padding: 18px;
    border-radius: 18px;
    background: #071a2f;
    border: 1px solid #66d9ff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    color: #eaf8ff;
}

.buildframe-chat-panel.active {
    display: block;
}

.buildframe-chat-panel strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
}

.buildframe-chat-panel p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #bfefff;
    margin-bottom: 12px;
}

.buildframe-chat-panel a {
    display: block;
    color: #66d9ff;
    font-weight: 800;
    margin-top: 8px;
    text-decoration: none;
}

.buildframe-logo-bubble {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(79, 195, 255, .6);
    transition: .3s;
}

.buildframe-logo-bubble:hover {
    transform: scale(1.08);
}

.buildframe-logo-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.buildframe-footer a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    cursor: pointer;
}

.buildframe-footer a:hover {
    color: #4fc3ff !important;
    text-decoration: underline !important;
}