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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff7fb;
    color: #32143f;
}

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

.bubble-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 247, 251, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(162, 103, 172, 0.16);
}

.bubble-nav {
    width: min(1180px, 92%);
    margin: auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.bubble-logo {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f7d6e0, #a267ac);
    font-size: 1.4rem;
}

.bubble-brand strong,
.bubble-brand span {
    display: block;
}

.bubble-brand strong {
    font-size: 0.95rem;
}

.bubble-brand span {
    font-size: 0.72rem;
    font-weight: 900;
    color: #a267ac;
    text-transform: uppercase;
}

.bubble-links {
    display: flex;
    gap: 26px;
    font-weight: 900;
}

.bubble-hero {
    min-height: 650px;
    padding: 90px 0;
    background:
        radial-gradient(circle at 14% 20%, rgba(247, 214, 224, 0.95), transparent 24%),
        radial-gradient(circle at 84% 18%, rgba(255, 232, 163, 0.75), transparent 22%),
        linear-gradient(135deg, #3b1d4a, #a267ac);
    overflow: hidden;
}

.bubble-hero-inner {
    width: min(1180px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 54px;
    align-items: center;
}

.bubble-badge {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    font-weight: 900;
    font-size: 0.82rem;
    margin-bottom: 20px;
}

.bubble-copy h1 {
    font-size: clamp(3.2rem, 7vw, 6.3rem);
    line-height: 0.92;
    letter-spacing: -0.08em;
    color: white;
    max-width: 680px;
}

.bubble-copy p {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 560px;
}

.bubble-actions {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.bubble-btn {
    display: inline-flex;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 950;
}

.bubble-btn.primary {
    background: #ffe8a3;
    color: #32143f;
}

.bubble-btn.secondary {
    border: 2px solid rgba(255, 255, 255, 0.72);
    color: white;
}

.bubble-visual {
    position: relative;
}

.bubble-drink-card {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 40px;
    padding: 22px;
    box-shadow: 0 35px 80px rgba(36, 10, 49, 0.35);
    transform: rotate(2deg);
}

.bubble-drink-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}

.bubble-floating-card {
    position: absolute;
    left: -28px;
    bottom: 34px;
    background: #fff7fb;
    padding: 20px 24px;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(36, 10, 49, 0.22);
}

.bubble-floating-card span {
    font-size: 0.72rem;
    font-weight: 950;
    color: #a267ac;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.bubble-floating-card h2 {
    margin-top: 6px;
    font-size: 1.5rem;
}

.bubble-section {
    padding: 82px 0;
}

.bubble-container {
    width: min(1180px, 92%);
    margin: auto;
}

.section-kicker {
    color: #a267ac;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    font-weight: 950;
}

.section-title {
    margin-top: 10px;
    font-size: clamp(2.4rem, 5vw, 4.3rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.section-text {
    margin-top: 12px;
    color: #6b5874;
    max-width: 640px;
    line-height: 1.7;
}

.bubble-grid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.product-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(59, 29, 74, 0.12);
    border: 1px solid rgba(162, 103, 172, 0.12);
}

.product-photo {
    height: 180px;
    background: #f7d6e0;
    overflow: hidden;
}

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

.product-body {
    padding: 22px;
}

.product-body h3 {
    font-size: 1.15rem;
    min-height: 46px;
}

.product-body p {
    margin-top: 10px;
    color: #6b5874;
    line-height: 1.5;
    min-height: 46px;
}

.product-price {
    margin-top: 18px;
}

.product-price strong {
    font-size: 1.2rem;
    color: #a267ac;
}

.product-price span {
    margin-left: 8px;
    color: #9ca3af;
    text-decoration: line-through;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
}

.qty-btn {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #3b1d4a;
    color: white;
    font-weight: 950;
    cursor: pointer;
}

.qty-value {
    font-weight: 950;
    min-width: 20px;
    text-align: center;
}

.add-cart-btn {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #f7d6e0, #ffe8a3);
    color: #32143f;
    padding: 13px 18px;
    font-weight: 950;
    cursor: pointer;
}

.cart-box {
    margin-top: 34px;
    background: white;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 55px rgba(59, 29, 74, 0.12);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(59, 29, 74, 0.08);
}

.cart-item span {
    display: block;
    margin-top: 6px;
    color: #6b5874;
}

.cart-summary {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 2px solid rgba(59, 29, 74, 0.1);
    display: flex;
    justify-content: space-between;
}

.loading-text {
    color: #6b5874;
}

.bubble-footer {
    background: #3b1d4a;
    color: white;
    text-align: center;
    padding: 34px 20px;
    font-weight: 900;
}

@media (max-width: 980px) {
    .bubble-hero-inner {
        grid-template-columns: 1fr;
    }

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

    .bubble-drink-card img {
        height: 340px;
    }
}

@media (max-width: 640px) {
    .bubble-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 0;
    }

    .bubble-links {
        gap: 16px;
        font-size: 0.9rem;
    }

    .bubble-hero {
        padding: 60px 0;
    }

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

    .bubble-floating-card {
        position: static;
        margin-top: 16px;
    }

    .bubble-drink-card {
        transform: none;
    }

    .cart-summary {
        flex-direction: column;
        gap: 10px;
    }
}

.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;
}