/* ══════════════════════════════════════════
   SA Video Offer Card — Frontend Styles
   ══════════════════════════════════════════ */

/* ── Outer wrap ── */
.sa-voc-wrap {
    display: flex;
    flex-direction: column;
    background: #1a1d2e;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
}

/* ── Thumbnail ── */
.sa-voc-thumb {
    position: relative;
    width: 100%;
    height: 380px;
    background-color: #0d0f1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Overlay */
.sa-voc-thumb-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 0;
}

/* ── Play button ── */
.sa-voc-play {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
    flex-shrink: 0;
}

.sa-voc-play:hover {
    transform: scale(1.08);
    background: #ffffff;
}

.sa-voc-play svg {
    width: 22px;
    height: 22px;
    fill: #1a1d2e;
    margin-left: 3px;
}

/* ── Info panel ── */
.sa-voc-panel {
    position: relative;
    background: #1e2235;
    padding: 24px 28px;
    flex-shrink: 0;
}

/* Glassmorphism panel */
.sa-voc-panel--glass {
    background: rgba(30, 34, 53, 0.55);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sa-voc-panel--glass::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 60%);
    border-radius: inherit;
}

/* ── Panel inner layout ── */
.sa-voc-panel-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

/* ── Left ── */
.sa-voc-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 1 200px;
    min-width: 0;
}

.sa-voc-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 4px;
}

.sa-voc-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.sa-voc-price {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.sa-voc-price-suffix {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    font-weight: 400;
}

.sa-voc-subtitle {
    color: rgba(255, 255, 255, 0.50);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    max-width: 380px;
}

/* ── Right ── */
.sa-voc-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
}

/* ── Buttons row ── */
.sa-voc-btns {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* ── Shared button base ── */
.sa-voc-btn1,
.sa-voc-btn2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.15s ease, background 0.2s ease,
                box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    border: none;
    flex-shrink: 0;
}

/* Primary */
.sa-voc-btn1 {
    background: linear-gradient(135deg, #5b6ef5 0%, #7c4dff 100%);
    color: #ffffff;
}

.sa-voc-btn1:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* Secondary */
.sa-voc-btn2 {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sa-voc-btn2:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

/* Button icons */
.sa-voc-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.sa-voc-btn1 .sa-voc-btn-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

.sa-voc-btn2 .sa-voc-btn-icon svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

/* ── Trust text ── */
.sa-voc-trust {
    color: rgba(255, 255, 255, 0.40);
    font-size: 12px;
    font-weight: 400;
    text-align: right;
    line-height: 1.5;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 1024px) {
    .sa-voc-thumb  { height: 300px; }
    .sa-voc-price  { font-size: 30px; }
}

@media (max-width: 767px) {
    .sa-voc-thumb  { height: 220px; }

    .sa-voc-panel  { padding: 20px; }

    .sa-voc-panel-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .sa-voc-left   { flex: unset; }

    .sa-voc-right  { align-items: stretch; }

    .sa-voc-btns {
        flex-direction: column;
        justify-content: stretch;
    }

    .sa-voc-btn1,
    .sa-voc-btn2 {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .sa-voc-trust  { text-align: center; }
    .sa-voc-price  { font-size: 28px; }
}

@media (max-width: 480px) {
    .sa-voc-thumb  { height: 180px; }
    .sa-voc-panel  { padding: 16px; }
    .sa-voc-price  { font-size: 26px; }
    .sa-voc-title  { font-size: 15px; }
    .sa-voc-play   { width: 46px; height: 46px; }
    .sa-voc-play svg { width: 18px; height: 18px; }
}
