/* Night Vibe Bundle Selector – 3322ec76 */

.nvbs-3322ec76-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
    font-family: inherit;
}

/* ── Header with lines ── */
.nvbs-3322ec76-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 0 0 4px 0;
}

.nvbs-3322ec76-line {
    flex: 1;
    height: 2.5px;
    background-color: #1a1a1a;
    border-radius: 2px;
}

.nvbs-3322ec76-heading {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

/* ── Options list ── */
.nvbs-3322ec76-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

/* ── Option wrap (for badge positioning) ── */
.nvbs-3322ec76-option-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.nvbs-3322ec76-option-wrap.nvbs-3322ec76-has-badge {
    margin-top: 4px;
}

/* ── Card ── */
.nvbs-3322ec76-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 22px;
    background-color: #f0f0f0;
    border: 1.5px solid #cccccc;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
}

.nvbs-3322ec76-card.nvbs-3322ec76-active {
    background-color: #e8e8e8;
    border-color: #1a1a1a;
    border-width: 2.5px;
}

/* ── Card left ── */
.nvbs-3322ec76-card-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ── Radio ── */
.nvbs-3322ec76-radio {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    border: 2px solid #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

.nvbs-3322ec76-card.nvbs-3322ec76-active .nvbs-3322ec76-radio {
    border-color: #1a1a1a;
}

.nvbs-3322ec76-radio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.2s ease;
}

.nvbs-3322ec76-card.nvbs-3322ec76-active .nvbs-3322ec76-radio-dot {
    background-color: #1a1a1a;
}

/* ── Card text ── */
.nvbs-3322ec76-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nvbs-3322ec76-option-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
}

.nvbs-3322ec76-option-desc {
    font-size: 0.88rem;
    color: #555555;
    line-height: 1.4;
}

/* ── Card right (prices) ── */
.nvbs-3322ec76-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
    margin-left: 16px;
}

.nvbs-3322ec76-price {
    font-size: 1.45rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.nvbs-3322ec76-old-price {
    font-size: 0.88rem;
    color: #888888;
    text-decoration: line-through;
    font-style: italic;
    line-height: 1.3;
}

/* ── Badge ── */
.nvbs-3322ec76-badge {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    font-style: italic;
    padding: 5px 14px;
    border-radius: 4px;
    transform: rotate(-3deg);
    margin-top: -10px;
    margin-right: 12px;
    margin-bottom: -4px;
    z-index: 1;
    position: relative;
    line-height: 1.3;
}

/* ── Buttons container ── */
.nvbs-3322ec76-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}

/* ── Add to Cart Button ── */
.nvbs-3322ec76-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px 24px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    box-sizing: border-box;
}

.nvbs-3322ec76-btn:hover {
    opacity: 0.88;
}

/* ── Buy Now Button ── */
.nvbs-3322ec76-btn-buy-now {
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px 24px;
    background-color: #ffffff;
    color: #1a1a1a;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    border: 2.5px solid #1a1a1a;
    cursor: pointer;
    transition: opacity 0.2s ease;
    box-sizing: border-box;
}

.nvbs-3322ec76-btn-buy-now:hover {
    opacity: 0.88;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .nvbs-3322ec76-card {
        padding: 14px 16px;
    }

    .nvbs-3322ec76-option-name {
        font-size: 0.95rem;
    }

    .nvbs-3322ec76-price {
        font-size: 1.2rem;
    }

    .nvbs-3322ec76-heading {
        font-size: 1.05rem;
    }

    .nvbs-3322ec76-btn,
    .nvbs-3322ec76-btn-buy-now {
        padding: 16px 20px;
        font-size: 1rem;
    }
}
