:root {
    --bea-bg: #fff8f4;
    --bea-surface: #ffffff;
    --bea-text: #2d2522;
    --bea-muted: #8b7a72;
    --bea-line: rgba(177, 134, 107, 0.18);
    --bea-gold: #d7b46a;
    --bea-gold-deep: #a9792b;
    --bea-rose: #c99191;
    --bea-rose-soft: #f5d9dc;
    --bea-cream: #fff0dc;
    --bea-shadow: 0 24px 70px rgba(71, 43, 31, 0.12);
    --bea-radius-xl: 32px;
    --bea-radius-lg: 24px;
    --bea-radius-pill: 999px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--bea-bg);
    color: var(--bea-text);
    font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    min-height: 100%;
    margin: 0;
    background:
        radial-gradient(circle at 8% 4%, rgba(245, 217, 220, 0.9), transparent 360px),
        radial-gradient(circle at 90% 0%, rgba(215, 180, 106, 0.22), transparent 420px),
        linear-gradient(180deg, #fff8f4 0%, #fffaf7 100%);
}

button,
input {
    font: inherit;
}

.bea-shell {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 22px 18px 72px;
}

.bea-header {
    position: sticky;
    top: 14px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 720px);
    margin: 0 auto 44px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: var(--bea-radius-pill);
    background: rgba(255,255,255,0.72);
    box-shadow: 0 16px 44px rgba(79, 51, 39, 0.08);
    backdrop-filter: blur(20px);
}

.bea-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.bea-logo__mark {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--bea-gold), var(--bea-rose));
    color: #fff;
    box-shadow: 0 14px 30px rgba(201, 145, 145, 0.28);
}

.bea-header__pill {
    border: 1px solid var(--bea-line);
    border-radius: var(--bea-radius-pill);
    padding: 10px 14px;
    background: rgba(255,255,255,0.76);
    color: var(--bea-muted);
    font-size: 13px;
    font-weight: 700;
}

.bea-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
    align-items: center;
    gap: 46px;
    max-width: 980px;
    margin: 0 auto 54px;
}

.bea-eyebrow {
    margin: 0 0 14px;
    color: var(--bea-gold-deep);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.bea-hero h1 {
    max-width: 640px;
    margin: 0;
    font-size: clamp(46px, 7vw, 82px);
    line-height: 0.93;
    letter-spacing: -0.075em;
    font-weight: 900;
}

.bea-lead {
    max-width: 560px;
    margin: 22px 0 0;
    color: var(--bea-muted);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500;
}

.bea-search {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 560px;
    margin-top: 28px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.82);
    border-radius: var(--bea-radius-pill);
    background: rgba(255,255,255,0.82);
    box-shadow: var(--bea-shadow);
}

.bea-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 15px 16px;
    background: transparent;
    color: var(--bea-text);
    font-weight: 650;
}

.bea-search input::placeholder {
    color: rgba(139, 122, 114, 0.72);
}

.bea-search button,
.bea-cart-button {
    border: 0;
    border-radius: var(--bea-radius-pill);
    background: linear-gradient(135deg, var(--bea-gold), var(--bea-rose));
    color: #fff;
    cursor: pointer;
    font-weight: 850;
    box-shadow: 0 16px 34px rgba(201, 145, 145, 0.28);
}

.bea-search button {
    padding: 15px 20px;
}

.bea-hero__preview {
    display: flex;
    justify-content: center;
}

.bea-phone-card {
    width: min(100%, 330px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 38px;
    background: rgba(255,255,255,0.72);
    box-shadow: var(--bea-shadow);
    transform: rotate(2deg);
}

.bea-phone-card__media {
    display: grid;
    min-height: 420px;
    place-items: center;
    background:
        radial-gradient(circle at 50% 35%, rgba(255,255,255,0.9), transparent 120px),
        linear-gradient(145deg, var(--bea-rose-soft), var(--bea-cream));
}

.bea-phone-card__media span {
    display: grid;
    width: 150px;
    height: 150px;
    place-items: center;
    border-radius: 44px;
    background: linear-gradient(135deg, var(--bea-gold), var(--bea-rose));
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.07em;
    box-shadow: 0 30px 70px rgba(126, 74, 61, 0.25);
}

.bea-phone-card__body {
    display: grid;
    gap: 5px;
    padding: 20px;
}

.bea-phone-card__body small {
    color: var(--bea-rose);
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bea-phone-card__body strong {
    font-size: 24px;
    letter-spacing: -0.045em;
}

.bea-phone-card__body em {
    color: var(--bea-muted);
    font-style: normal;
    font-weight: 700;
}

.bea-section-head {
    width: min(100%, 720px);
    margin: 0 auto 18px;
}

.bea-section-head p {
    margin: 0 0 6px;
    color: var(--bea-gold-deep);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bea-section-head h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.06em;
}

.bea-feed {
    display: grid;
    gap: 22px;
    width: min(100%, 720px);
    margin: 0 auto;
}

.bea-product {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.82);
    border-radius: var(--bea-radius-xl);
    background: rgba(255,255,255,0.78);
    box-shadow: var(--bea-shadow);
}

.bea-product__media {
    position: relative;
    display: grid;
    min-height: 390px;
    place-items: center;
}

.bea-product__media--one {
    background:
        radial-gradient(circle at 50% 40%, rgba(255,255,255,0.85), transparent 110px),
        linear-gradient(140deg, #f7dadd, #fff0dc);
}

.bea-product__media--two {
    background:
        radial-gradient(circle at 50% 40%, rgba(255,255,255,0.85), transparent 110px),
        linear-gradient(140deg, #e9ddff, #fff0dc);
}

.bea-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    border: 1px solid rgba(255,255,255,0.85);
    border-radius: var(--bea-radius-pill);
    padding: 10px 14px;
    background: rgba(255,255,255,0.68);
    color: var(--bea-gold-deep);
    font-size: 13px;
    font-weight: 900;
    backdrop-filter: blur(16px);
}

.bea-product__mark {
    display: grid;
    width: 156px;
    height: 156px;
    place-items: center;
    border-radius: 48px;
    background: rgba(255,255,255,0.46);
    color: rgba(45,37,34,0.25);
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -0.08em;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
}

.bea-product__body {
    padding: 24px;
}

.bea-product__top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--bea-muted);
    font-size: 13px;
    font-weight: 800;
}

.bea-product__top span {
    color: var(--bea-rose);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bea-product__top strong {
    color: var(--bea-gold-deep);
}

.bea-product h3 {
    margin: 0;
    font-size: clamp(30px, 6vw, 42px);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.bea-product p {
    margin: 14px 0 0;
    color: var(--bea-muted);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
}

.bea-product__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.bea-product__meta span {
    border: 1px solid var(--bea-line);
    border-radius: var(--bea-radius-pill);
    padding: 9px 12px;
    background: rgba(255,255,255,0.72);
    color: var(--bea-muted);
    font-size: 13px;
    font-weight: 750;
}

.bea-cart-button {
    width: 100%;
    padding: 16px 18px;
}

@media (max-width: 820px) {
    .bea-shell {
        width: min(100%, 760px);
    }

    .bea-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 720px;
    }

    .bea-hero__preview {
        display: none;
    }
}

@media (max-width: 520px) {
    .bea-shell {
        padding: 14px 12px 54px;
    }

    .bea-header {
        top: 10px;
        margin-bottom: 34px;
    }

    .bea-header__pill {
        display: none;
    }

    .bea-hero {
        margin-bottom: 42px;
    }

    .bea-hero h1 {
        font-size: clamp(46px, 14vw, 64px);
    }

    .bea-lead {
        font-size: 16px;
    }

    .bea-search {
        align-items: stretch;
        flex-direction: column;
        border-radius: 26px;
    }

    .bea-search button {
        width: 100%;
    }

    .bea-product__media {
        min-height: 360px;
    }

    .bea-product__body {
        padding: 21px;
    }
}

.bea-cart-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--bea-line);
    border-radius: var(--bea-radius-pill);
    padding: 8px 9px 8px 14px;
    background: rgba(255,255,255,0.78);
    color: var(--bea-text);
    cursor: pointer;
    font-weight: 800;
}

.bea-cart-trigger strong {
    display: grid;
    min-width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--bea-gold), var(--bea-rose));
    color: #fff;
    font-size: 13px;
}

.bea-cart-is-open {
    overflow: hidden;
}

.bea-cart-overlay[hidden] {
    display: none;
}

.bea-cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
}

.bea-cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(45, 37, 34, 0.28);
    backdrop-filter: blur(10px);
}

.bea-cart-panel {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: min(430px, calc(100% - 28px));
    max-height: min(720px, calc(100dvh - 28px));
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.82);
    border-radius: 34px;
    background: rgba(255, 250, 247, 0.94);
    box-shadow: 0 32px 100px rgba(45, 37, 34, 0.22);
}

.bea-cart-panel__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 22px 16px;
}

.bea-cart-panel__head p {
    margin: 0 0 5px;
    color: var(--bea-gold-deep);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bea-cart-panel__head h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.06em;
}

.bea-cart-close {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--bea-line);
    border-radius: 999px;
    background: #fff;
    color: var(--bea-text);
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

.bea-cart-items {
    display: grid;
    align-content: start;
    gap: 12px;
    overflow: auto;
    padding: 0 18px 18px;
}

.bea-cart-empty {
    display: grid;
    gap: 8px;
    padding: 24px;
    border: 1px dashed var(--bea-line);
    border-radius: 24px;
    background: rgba(255,255,255,0.62);
    color: var(--bea-muted);
}

.bea-cart-empty strong {
    color: var(--bea-text);
    font-size: 18px;
}

.bea-cart-item {
    display: grid;
    grid-template-columns: 58px 1fr 34px;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--bea-line);
    border-radius: 24px;
    background: rgba(255,255,255,0.76);
}

.bea-cart-item__thumb {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--bea-rose-soft), var(--bea-cream));
    color: var(--bea-gold-deep);
    font-weight: 900;
}

.bea-cart-item__body {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.bea-cart-item__body strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bea-cart-item__body span,
.bea-cart-item__body small {
    color: var(--bea-muted);
    font-size: 13px;
    font-weight: 650;
}

.bea-cart-item button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(201,145,145,0.14);
    color: var(--bea-rose);
    cursor: pointer;
    font-size: 22px;
}

.bea-cart-summary {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-top: 1px solid var(--bea-line);
    background: rgba(255,255,255,0.72);
}

.bea-cart-summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bea-cart-summary span {
    color: var(--bea-muted);
    font-weight: 700;
}

.bea-cart-summary strong {
    font-size: 22px;
    letter-spacing: -0.04em;
}

.bea-checkout-button {
    width: 100%;
    border: 0;
    border-radius: var(--bea-radius-pill);
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--bea-gold), var(--bea-rose));
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(201, 145, 145, 0.28);
}

@media (max-width: 520px) {
    .bea-cart-trigger span {
        display: none;
    }

    .bea-cart-panel {
        right: 8px;
        bottom: 8px;
        width: calc(100% - 16px);
        max-height: calc(100dvh - 16px);
        border-radius: 30px;
    }
}

.bea-cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.bea-continue-button {
    width: 100%;
    border: 1px solid var(--bea-line);
    border-radius: var(--bea-radius-pill);
    padding: 16px 18px;
    background: rgba(255,255,255,0.84);
    color: var(--bea-text);
    cursor: pointer;
    font-weight: 900;
}

.bea-toast-root {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 200;
    display: grid;
    width: min(360px, calc(100% - 36px));
    gap: 10px;
    pointer-events: none;
}

.bea-toast {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.82);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 70px rgba(45, 37, 34, 0.16);
    backdrop-filter: blur(18px);
    animation: beaToastIn 220ms ease-out both;
}

.bea-toast strong {
    color: var(--bea-text);
    font-size: 14px;
}

.bea-toast span {
    color: var(--bea-muted);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.45;
}

.bea-toast--success {
    border-color: rgba(215, 180, 106, 0.36);
}

.bea-toast--error {
    border-color: rgba(201, 80, 80, 0.32);
}

.bea-toast.is-leaving {
    animation: beaToastOut 220ms ease-in both;
}

@keyframes beaToastIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes beaToastOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
}

@media (max-width: 520px) {
    .bea-cart-actions {
        grid-template-columns: 1fr;
    }

    .bea-toast-root {
        right: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
    }
}

.bea-product__title-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 16px;
}

.bea-product__price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    border: 1px solid rgba(215, 180, 106, 0.34);
    border-radius: 999px;
    padding: 10px 13px;
    background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(255,240,220,0.86));
    color: var(--bea-gold-deep);
    font-size: 16px;
    font-weight: 950;
    letter-spacing: -0.03em;
    box-shadow: 0 12px 28px rgba(84, 48, 35, 0.08);
}

@media (max-width: 520px) {
    .bea-product__title-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bea-product__price {
        width: fit-content;
    }
}

.bea-cart-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(215, 180, 106, 0.34);
    border-radius: var(--bea-radius-pill);
    padding: 7px 12px 7px 7px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,240,220,0.78));
    color: var(--bea-text);
    cursor: pointer;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(84, 48, 35, 0.10);
}

.bea-cart-trigger__icon {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--bea-gold), var(--bea-rose));
    color: #fff;
    box-shadow: 0 12px 26px rgba(201, 145, 145, 0.28);
}

.bea-cart-trigger__icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bea-cart-trigger__icon strong {
    position: absolute;
    top: -7px;
    right: -7px;
    display: grid;
    min-width: 22px;
    height: 22px;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--bea-text);
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
}

.bea-cart-trigger__text {
    font-size: 14px;
    letter-spacing: -0.02em;
}

@media (max-width: 520px) {
    .bea-cart-trigger {
        padding: 6px;
    }

    .bea-cart-trigger__text {
        display: none;
    }

    .bea-cart-trigger__icon {
        width: 44px;
        height: 44px;
    }
}

/* Header Cart Final Override */
.bea-cart-trigger {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 46px !important;
    border: 1px solid rgba(215, 180, 106, 0.42) !important;
    border-radius: 999px !important;
    padding: 7px 10px 7px 9px !important;
    background: linear-gradient(135deg, #ffffff, #fff0dc) !important;
    color: var(--bea-text) !important;
    box-shadow: 0 16px 38px rgba(84, 48, 35, 0.14) !important;
}

.bea-cart-trigger__icon {
    display: grid !important;
    width: 34px !important;
    height: 34px !important;
    place-items: center !important;
    border-radius: 13px !important;
    background: linear-gradient(135deg, var(--bea-gold), var(--bea-rose)) !important;
    color: #fff !important;
    font-size: 17px !important;
    line-height: 1 !important;
}

.bea-cart-trigger__label {
    color: var(--bea-text) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.bea-cart-trigger__count {
    display: grid !important;
    min-width: 24px !important;
    height: 24px !important;
    place-items: center !important;
    border-radius: 999px !important;
    background: var(--bea-text) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 950 !important;
}

@media (max-width: 520px) {
    .bea-cart-trigger__label {
        display: none !important;
    }

    .bea-cart-trigger {
        padding: 7px !important;
    }
}

.bea-product-actions {
    display: grid;
    grid-template-columns: 1fr 52px;
    gap: 10px;
}

.bea-info-button {
    display: grid;
    width: 52px;
    min-height: 52px;
    place-items: center;
    border: 1px solid rgba(215, 180, 106, 0.38);
    border-radius: 18px;
    background: rgba(255,255,255,0.86);
    color: var(--bea-gold-deep);
    cursor: pointer;
    font-size: 18px;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(84, 48, 35, 0.08);
}

.bea-info-is-open {
    overflow: hidden;
}

.bea-product-info-overlay[hidden] {
    display: none;
}

.bea-product-info-overlay {
    position: fixed;
    inset: 0;
    z-index: 140;
}

.bea-product-info-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(45, 37, 34, 0.30);
    backdrop-filter: blur(12px);
}

.bea-product-info-panel {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-rows: auto auto 1fr;
    max-height: calc(100dvh - 20px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.82);
    border-radius: 32px;
    background: rgba(255, 250, 247, 0.96);
    box-shadow: 0 32px 100px rgba(45, 37, 34, 0.24);
}

.bea-product-info-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 20px 14px;
}

.bea-product-info-head p {
    margin: 0 0 5px;
    color: var(--bea-gold-deep);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bea-product-info-head h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.06em;
}

.bea-product-info-close {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--bea-line);
    border-radius: 999px;
    background: #fff;
    color: var(--bea-text);
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

.bea-product-info-media {
    display: grid;
    min-height: 210px;
    margin: 0 16px;
    place-items: center;
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 38%, rgba(255,255,255,0.88), transparent 95px),
        linear-gradient(140deg, #f7dadd, #fff0dc);
}

.bea-product-info-media span {
    display: grid;
    width: 112px;
    height: 112px;
    place-items: center;
    border-radius: 34px;
    background: rgba(255,255,255,0.50);
    color: rgba(45,37,34,0.28);
    font-size: 42px;
    font-weight: 950;
    letter-spacing: -0.08em;
}

.bea-product-info-body {
    overflow: auto;
    padding: 18px 20px 20px;
}

.bea-product-info-price {
    width: fit-content;
    margin-bottom: 12px;
    border: 1px solid rgba(215, 180, 106, 0.34);
    border-radius: 999px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,240,220,0.88));
    color: var(--bea-gold-deep);
    font-size: 18px;
    font-weight: 950;
}

.bea-product-info-body > p {
    margin: 0 0 18px;
    color: var(--bea-muted);
    font-size: 15px;
    font-weight: 550;
    line-height: 1.65;
}

.bea-product-info-block {
    margin: 0 0 18px;
}

.bea-product-info-block h3 {
    margin: 0 0 9px;
    font-size: 15px;
    letter-spacing: -0.025em;
}

.bea-product-info-block ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bea-product-info-block li {
    position: relative;
    padding-left: 20px;
    color: var(--bea-muted);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.4;
}

.bea-product-info-block li::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "✓";
    color: var(--bea-gold-deep);
    font-weight: 950;
}

@media (min-width: 760px) {
    .bea-product-info-panel {
        right: 24px;
        bottom: 24px;
        left: auto;
        width: 520px;
        max-height: calc(100dvh - 48px);
    }

    .bea-product-info-media {
        min-height: 260px;
    }
}
