/* ============================================================
   Product Video Block
   ============================================================ */

.pvid-section {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: clamp(3rem, 6vw, 6rem);
    padding-bottom: clamp(3rem, 6vw, 6rem);
    overflow: hidden;
}

/* Red accent glow at the top */
.pvid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 51, 0, 0.5) 30%,
        rgba(255, 51, 0, 0.5) 70%,
        transparent 100%
    );
}

/* Subtle warm tint overlay */
.pvid-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 60% at 50% 100%,
        rgba(255, 51, 0, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.pvid-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1.25rem, 4vw, 3rem);
    padding-right: clamp(1.25rem, 4vw, 3rem);
    box-sizing: border-box;
}

/* ── Two-column layout ────────────────────────────────────── */

.pvid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

/* ── Video embed ──────────────────────────────────────────── */

.pvid-embed {
    width: 100%;
}

.pvid-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.5);
}

.pvid-embed__wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

/* ── Text content ─────────────────────────────────────────── */

.pvid-content {
    padding-left: clamp(1rem, 2vw, 2rem);
}

.pvid-heading {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem 0;
}

/* Accent on first word or line */
.pvid-heading strong,
.pvid-heading em {
    color: #FF3300;
    font-style: normal;
}

.pvid-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 800px) {
    .pvid-inner {
        grid-template-columns: 1fr;
    }

    .pvid-content {
        padding-left: 0;
    }
}
