/* ── 5+A Variation Selector ── */
.vsel-root { font-family: 'Inter', sans-serif; }
.vsel-root * { box-sizing: border-box; margin: 0; padding: 0; }

.vsel-wrap {
    max-width: 480px;
    background: #fff;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 8px 40px rgba(0,0,0,.10);
}

.vsel-bar {
    background: #50A5D6;
    color: #fff;
    text-align: center;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    border-radius: 20px 20px 0 0;
}

.vsel-head { padding: 18px 22px 6px; }
.vsel-title {
    font-size: 19px !important;
    font-weight: 800 !important;
    color: #1a1a2e !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.vsel-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 14px 22px;
}

.vsel-card {
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 10px 14px;
    text-align: center;
    cursor: pointer;
    transition: border-color .18s, box-shadow .18s, transform .12s;
    position: relative;
    background: #fff;
    user-select: none;
}
.vsel-card:hover { border-color: #50A5D6; transform: translateY(-2px); }
.vsel-card.active {
    border-color: #50A5D6;
    box-shadow: 0 0 0 3px rgba(80,165,214,.15);
    background: #f0f9ff;
}

.vsel-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #50A5D6;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 11px;
    border-radius: 100px;
    white-space: nowrap;
}

.vsel-img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 10px;
    display: block;
}
.vsel-img-ph {
    width: 100%;
    height: 100px;
    background: linear-gradient(145deg, #e8f5fb, #c8e8f8);
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.vsel-name { font-size: 14px; font-weight: 700; color: #1a1a2e; margin-bottom: 3px; }
.vsel-desc { font-size: 11px; color: #94a3b8; margin-bottom: 10px; }

.vsel-prices { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.vsel-sale { font-size: 18px; font-weight: 900; color: #1a1a2e; line-height: 1; }
.vsel-card.active .vsel-sale { color: #50A5D6; }
.vsel-old { font-size: 11px; color: #94a3b8; text-decoration: line-through; }

.vsel-sep { height: 1px; background: #e2e8f0; margin: 0 22px 12px; }

.vsel-stock { text-align: center; font-size: 12px; color: #64748b; padding: 0 22px 10px; }
.vsel-stock-dot { color: #06D6A0; font-weight: 700; }

.vsel-btn-wrap { padding: 0 22px 16px; }
.vsel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 20px;
    background: #1a1a2e;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none !important;
    transition: background .18s, transform .12s;
    box-shadow: 0 4px 18px rgba(26,26,46,.18);
}
.vsel-btn:hover { background: #50A5D6; transform: translateY(-2px); }

.vsel-guarantee { text-align: center; font-size: 11px; color: #94a3b8; padding: 0 22px 18px; }

@media (max-width: 480px) {
    .vsel-wrap { border-radius: 16px; }
    .vsel-cards { gap: 8px; padding: 12px 14px; }
    .vsel-card { padding: 14px 8px 12px; }
    .vsel-btn-wrap, .vsel-head, .vsel-stock, .vsel-guarantee { padding-left: 14px; padding-right: 14px; }
    .vsel-sep { margin: 0 14px 10px; }
}
