/* ──────────────────────────────────────────
   IMPORTS & RESET
────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Oswald:wght@600;700&display=swap');

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

:root {
    --red:       #c72a57;
    --red-light: #ff4a78;
    --red-glow:  rgba(199, 42, 87, 0.30);
    --bg-deep:   #07000b;
    --bg-card:   #12000a;
    --bg-mid:    #1b000e;
    --text:      #f0dde4;
    --text-muted:#b8929e;
    --gold:      #f5c242;
    --green:     #2ecc71;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: var(--bg-deep);
    color: var(--text);
    margin: 0;
    padding: 0;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

/* ──────────────────────────────────────────
   HEADLINE BANNER
────────────────────────────────────────── */
.headline {
    background: linear-gradient(135deg, #140008 0%, #2a0012 50%, #140008 100%);
    border-bottom: 3px solid var(--red);
    box-shadow: 0 4px 32px var(--red-glow);
    color: #ffeef3;
    padding: 36px 24px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(20px, 4vw, 30px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.headline span {
    color: var(--gold);
    text-shadow: 0 0 18px rgba(245, 194, 66, 0.45);
}

/* ──────────────────────────────────────────
   VIDEO SECTION
────────────────────────────────────────── */
.video-section {
    margin: 48px auto 24px;
    max-width: 820px;
    width: 92%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0,0,0,0.7), 0 0 0 1px rgba(199,42,87,0.2);
}

/* ──────────────────────────────────────────
   ORDER SECTION WRAPPER
────────────────────────────────────────── */
#discountSection {
    width: 100% !important;
    justify-content: center;
    padding: 0 !important;
}

.bb-section {
    width: 100%;
    background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
    padding: 48px 20px 72px;
}

/* ──────────────────────────────────────────
   STEP INDICATORS
────────────────────────────────────────── */
.bb-steps {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.bb-step {
    border-radius: 999px;
    border: 1.5px solid rgba(199, 42, 87, 0.4);
    padding: 7px 22px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: rgba(199, 42, 87, 0.07);
    transition: all 0.2s;
}

.bb-step--active {
    background: linear-gradient(135deg, var(--red), #ff7aa5);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px var(--red-glow);
}

/* ──────────────────────────────────────────
   SECTION HEADER
────────────────────────────────────────── */
.bb-section-header {
    margin-bottom: 40px;
}

.bb-section-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

.bb-divider {
    width: 64px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--red), #ff4a78, var(--red));
}

/* ──────────────────────────────────────────
   PACKAGE CARDS GRID
────────────────────────────────────────── */
.bb-packages {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 380px));
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto 48px;
    justify-content: center;
}

@media (max-width: 980px) {
    .bb-packages {
        grid-template-columns: minmax(0, 480px);
        gap: 28px;
    }
}

/* ──────────────────────────────────────────
   CARD BASE
────────────────────────────────────────── */
.bb-card {
    background: linear-gradient(160deg, #1c000d, #0f0007);
    border-radius: 20px;
    border: 1.5px solid rgba(199, 42, 87, 0.25);
    box-shadow: 0 16px 40px rgba(0,0,0,0.55);
    padding: 28px 20px 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.7), 0 0 24px var(--red-glow);
}

.bb-card--best {
    border: 2px solid var(--red);
    box-shadow: 0 16px 48px rgba(0,0,0,0.65), 0 0 28px var(--red-glow);
    transform: translateY(-6px);
    background: linear-gradient(160deg, #260010, #12000a);
}

.bb-card--best:hover {
    transform: translateY(-10px);
}

/* ──────────────────────────────────────────
   CARD TAG (BADGE)
────────────────────────────────────────── */
.bb-card-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: linear-gradient(135deg, var(--red), #ff7aa5);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 5px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 14px var(--red-glow);
    text-transform: uppercase;
}

/* ──────────────────────────────────────────
   CARD BODY (two columns)
────────────────────────────────────────── */
.bb-card-body {
    display: flex;
    gap: 16px;
    align-items: center;
}

.bb-card-left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 110px;
}

.bb-card-left h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    text-align: center;
}

.bb-supply {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
}

.bb-product-img {
    width: 100px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(199,42,87,0.30));
}

/* ──────────────────────────────────────────
   CARD RIGHT (pricing info)
────────────────────────────────────────── */
.bb-card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    text-align: left;
}

.bb-price-per-bottle {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bb-price {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--red-light);
    line-height: 1;
    letter-spacing: -0.01em;
}

.bb-price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.bb-save {
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.04em;
    background: rgba(46, 204, 113, 0.1);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(46, 204, 113, 0.25);
}

.bb-save--highlight {
    font-size: 13px;
    background: rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.4);
}

.bb-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.bb-label--accent {
    color: var(--gold);
}

.bb-cards-img {
    height: 20px;
    width: auto;
    opacity: 0.75;
}

.bb-total {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 2px;
}

.bb-total-old {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-left: 4px;
    font-size: 13px;
}

.bb-total-new {
    color: var(--red-light);
    font-weight: 800;
    font-size: 16px;
    margin-left: 4px;
}

.bb-shipping {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bb-shipping--free {
    color: var(--green);
}

/* ──────────────────────────────────────────
   BUTTONS
────────────────────────────────────────── */
.bb-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 999px;
    border: 2px solid var(--red);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, rgba(199,42,87,0.12), rgba(199,42,87,0.04));
    color: var(--red-light);
    box-shadow: 0 6px 20px rgba(199, 42, 87, 0.18);
    transition: all 0.2s ease;
    cursor: pointer;
}

.bb-btn--primary {
    background: linear-gradient(135deg, var(--red) 0%, #e8356a 50%, #ff7aa5 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 28px rgba(199, 42, 87, 0.45);
    font-size: 15px;
    padding: 16px 20px;
}

.bb-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.12);
    box-shadow: 0 14px 36px rgba(255, 70, 120, 0.5);
}

.bb-btn--primary:hover {
    box-shadow: 0 16px 44px rgba(255, 70, 120, 0.6);
}

/* ──────────────────────────────────────────
   GUARANTEE SECTION
────────────────────────────────────────── */
.bb-guarantee {
    max-width: 860px;
    margin: 40px auto 0;
    padding: 28px 32px;
    border-radius: 20px;
    border: 1.5px solid rgba(199, 42, 87, 0.5);
    background: linear-gradient(145deg, #1c000d, #0f0007);
    box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 24px var(--red-glow);
    display: flex;
    align-items: center;
    gap: 28px;
    text-align: left;
}

.bb-guarantee-img {
    width: 100px;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px var(--red-glow));
}

.bb-guarantee-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.bb-guarantee-text p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .bb-guarantee {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
}

/* ──────────────────────────────────────────
   REVIEWS / COMMENTS SECTION
────────────────────────────────────────── */
.comments-section {
    background: linear-gradient(160deg, #1b000e, #0f0007);
    border: 1.5px solid rgba(199, 42, 87, 0.25);
    border-top: 3px solid var(--red);
    max-width: 780px;
    margin: 56px auto 48px;
    padding: 32px 28px;
    text-align: left;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.55);
}

.comments-section > h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(199, 42, 87, 0.25);
}

/* Individual comment */
.fb-comment {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(199, 42, 87, 0.12);
}

.fb-comment:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fb-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--red);
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--red-glow);
}

.fb-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.fb-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
}

.fb-actions {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.fb-actions span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.15s;
    letter-spacing: 0.03em;
}

.fb-actions span:hover {
    color: var(--red-light);
}

/* stars helper (reusable) */
.stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
