/* ═══════════════════════════════════════════════════════════
   PRO PAGE — The Quirky Editorial Shop
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────── */
.pro-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60vh;
    padding: 15vh var(--spacing-lg) 8vh;
}

.pro-hero-content {
    max-width: 700px;
}

.pro-hero-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.77rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-secondary, #888);
    margin-bottom: 2rem;
}

.pro-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.pro-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary, #888);
    max-width: 500px;
    margin: 0 auto;
}

/* ── Product Block ────────────────────────────────────────── */
.pro-product {
    padding: 0 var(--spacing-lg);
    margin-bottom: 2px;
}

.pro-product-inner {
    position: relative;
    /* Transform block into clickable area */
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 60vh;
    /* Fix the height specifically */
    max-height: 520px;
    /* Reduced height for Beyond the vows */
    overflow: hidden;
}

.pro-product--large .pro-product-inner {
    height: 95vh;
    max-height: 810px;
}

/* Image */
.pro-product-image {
    margin: 0;
    overflow: hidden;
    padding: 3rem 4rem;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-product-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.pro-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pro-product--contained .pro-product-image img {
    width: auto;
    height: auto;
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
}

.pro-product:hover .pro-product-image img {
    transform: scale(1.03);
}



.pro-product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 6rem;
    /* Modified from 5rem 6rem to reduce overall height block */
    background: #000;
    color: #f0efe9;
}

.pro-product-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.9rem;
    /* Reduced from 1.5rem */
}

.pro-product-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.3rem, 3.8vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 0.9rem;
    /* Reduced from 1.5rem */
}

.pro-product-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.8rem;
    /* Reduced from 2.5rem */
    max-width: 380px;
}

/* CTA Button */
.pro-product-cta {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition: background 0.4s ease, transform 0.3s ease;
    align-self: flex-start;
}

.pro-product-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.pro-hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.pro-hero-cta .pro-purchase-price {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #f0efe9;
    margin: 0;
}

/* Reverse layout (image right, text left) */
.pro-product--reverse .pro-product-inner {
    direction: rtl;
}

.pro-product--reverse .pro-product-inner>* {
    direction: ltr;
}

.pro-product--reverse .pro-product-info {
    text-align: right;
    align-items: flex-end;
}

.pro-product--reverse .pro-product-cta {
    align-self: flex-end;
}

.pro-product--reverse .pro-product-badge {
    align-self: flex-end;
}

/* Teasing badge */
.pro-product-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.8rem 2rem;
    align-self: flex-start;
    opacity: 0.6;
}

/* ── Detail Page — Product Hero ───────────────────────────── */
.pro-detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 85vh;
    padding-top: 6rem;
    overflow: hidden;
}

.pro-detail-hero-image {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pro-detail-hero-image.pro-detail-hero-image--contained img {
    width: 90%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
}

.pro-detail-hero-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 6rem;
}

.pro-detail-hero-info .pro-product-title {
    font-size: clamp(2.3rem, 3.8vw, 3.5rem);
    margin-bottom: 1rem;
}

.pro-detail-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.pro-detail-hero-info .pro-product-description {
    max-width: 420px;
    margin-bottom: 3rem;
}

.pro-detail-accent {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-primary, #f0efe9);
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* ── Detail Page — Features Grid ──────────────────────────── */
.pro-features {
    padding: 8rem var(--spacing-lg);
}

.pro-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-align: center;
    color: var(--text-secondary, #888);
    margin-bottom: 4rem;
}

.pro-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pro-feature-item {
    text-align: center;
}

.pro-feature-icon {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    opacity: 0.5;
}

.pro-feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.pro-feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary, #888);
}

/* ── Purchase Card ────────────────────────────────────────── */
.pro-purchase-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.pro-purchase-price {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.3rem, 3.8vw, 3.15rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 1.5rem 0 2rem;
    color: #f0efe9;
}

.pro-purchase-card .pro-product-cta {
    margin-top: auto;
}

/* ── Detail Page — Side by Side Stacked Carousel ─────────── */
.pro-sidebyside {
    padding: 0 0 4rem;
}

.pro-sidebyside-stack {
    position: relative;
    max-width: 770px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.pro-sidebyside-viewport {
    position: relative;
    overflow: hidden;
}

/* First item always in flow to lock container height */
.pro-sidebyside-item {
    margin: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pro-sidebyside-item:first-child {
    position: relative;
}

.pro-sidebyside-item:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.pro-sidebyside-item.is-active {
    opacity: 1;
}

.pro-sidebyside-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: contain;
    display: block;
    border-radius: 2px;
}

/* Navigation arrows */
.pro-sidebyside-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.pro-sidebyside-arrow {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, color 0.3s ease;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
}

.pro-sidebyside-arrow:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.pro-sidebyside-counter {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.45);
}

/* ── Detail Page — Gallery Preview ────────────────────────── */
.pro-gallery {
    padding: 0 var(--spacing-lg) 8rem;
}

.pro-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.pro-gallery-grid img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

/* ── Back link ────────────────────────────────────────────── */
.pro-back {
    position: fixed;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    z-index: 100;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    transition: color 0.4s ease, border-color 0.4s ease;
    white-space: nowrap;
}

.pro-back:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
    .pro-back {
        position: fixed;
        left: auto;
        right: 1rem;
        top: auto;
        bottom: 1.5rem;
        transform: none;
        font-size: 0.6rem;
        padding: 0.55rem 1rem;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 20px;
    }
}

/* ── Detail Page — Chapters ───────────────────────────────── */
.pro-chapters {
    padding: 6rem var(--spacing-lg) 8rem;
    background: #0a0a0a;
}

.pro-chapters .pro-section-title {
    color: rgba(255, 255, 255, 0.45);
}

.pro-chapters-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
}

.pro-chapter-item {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pro-chapter-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pro-chapter-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.25);
    min-width: 2rem;
}

.pro-chapter-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f0efe9;
    margin-bottom: 0.4rem;
}

.pro-chapter-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Detail Page — Quote ──────────────────────────────────── */
.pro-quote {
    padding: 8rem var(--spacing-lg);
    text-align: center;
}

.pro-quote-block {
    max-width: 1200px;
    margin: 0 auto;
}

.pro-quote-block p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary, #f0efe9);
    margin-bottom: 2rem;
    max-width: none;
    text-wrap: balance;
}

.pro-quote-block cite {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-style: normal;
    color: var(--text-secondary, #888);
}

/* ── Detail Page — Editions ───────────────────────────────── */
.pro-editions {
    padding: 6rem var(--spacing-lg) 8rem;
    background: #0a0a0a;
}

.pro-editions .pro-section-title {
    color: rgba(255, 255, 255, 0.45);
}

.pro-editions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.pro-edition-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0a0a0a;
    background: #f0efe9;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

/* ── Detail Page — Gallery ────────────────────────────────── */
.pro-gallery {
    padding: 6rem var(--spacing-lg) 8rem;
}

.pro-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pro-gallery-item {
    width: 100%;
    aspect-ratio: 4/5;
    background: #111;
    overflow: hidden;
}

.pro-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.pro-gallery-item:hover img {
    opacity: 1;
}

/* ── Upsell Section ────────────────────────────────────────── */
.pro-upsell {
    padding: 6rem var(--spacing-lg);
    text-align: center;
}

.pro-upsell-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pro-upsell .pro-section-title {
    margin-bottom: 1.5rem;
}

.pro-upsell .pro-product-cta {
    margin-top: 0;
}

/* ── Before/After Slider ─────────────────────────────────── */
.pro-before-after {
    padding: 6rem var(--spacing-lg) 8rem;
    background: #0a0a0a;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.ba-slider {
    position: relative;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
}

.ba-slider img {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.ba-slider .ba-after {
    position: relative;
    z-index: 1;
}

.ba-slider .ba-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%);
    pointer-events: none;
}

.ba-handle-line {
    flex: 1;
    width: 1px;
    background: rgba(255, 255, 255, 0.7);
}

.ba-handle-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ba-label {
    position: absolute;
    bottom: 1rem;
    z-index: 4;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.3rem 0.6rem;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
}

.ba-label--before {
    left: 0.8rem;
}

.ba-label--after {
    right: 0.8rem;
}

/* Single purchase card centered */
.pro-editions-grid--single {
    grid-template-columns: 1fr;
    max-width: 450px;
}

/* ── Detail Page — Compatibility Row ─────────────────────── */
.pro-compat {
    padding: 4rem var(--spacing-lg);
    text-align: center;
}

.pro-compat-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pro-compat-item {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary, #f0efe9);
}

.pro-compat-divider {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.2);
}

/* ── Detail Page — Video Showcase (LUTs) ─────────────────── */
.pro-video-showcase {
    padding: 6rem var(--spacing-lg) 2rem;
}

.pro-lut-section {
    margin-bottom: 5rem;
}

.pro-lut-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-align: center;
    color: var(--text-secondary, #888);
    margin-bottom: 2rem;
}

.pro-lut-videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pro-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #111;
}

.pro-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* 7-item features grid (LUT pack) */
.pro-features-grid--lut {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
}

/* ── Detail Page — Behind The Scenes Photo ───────────────── */
.pro-bts {
    padding: 0 var(--spacing-lg);
}

.pro-bts-image {
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

.pro-bts-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

/* ── Quote + BTS side by side (mirrors hero layout) ────────── */
.pro-quote-bts {
    display: grid;
    grid-template-columns: 3fr 2fr;
    min-height: 70vh;
    overflow: hidden;
}

.pro-quote-bts-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8rem 5rem 6rem;
    margin: 0;
    border: none;
}

.pro-quote-bts-text p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary, #f0efe9);
    margin-bottom: 2rem;
    text-wrap: balance;
}

.pro-quote-bts-text cite {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-style: normal;
    color: var(--text-secondary, #888);
}

.pro-quote-bts-image {
    margin: 0;
}

.pro-quote-bts-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Detail Page — LUT Showcase Grid ─────────────────────── */
.pro-lut-showcase {
    padding: 6rem var(--spacing-lg) 2rem;
}

.pro-lut-showcase-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary, #888);
    text-align: center;
    max-width: 500px;
    margin: -2rem auto 4rem;
}

.pro-lut-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pro-lut-scene-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-bottom: 1rem;
}

.pro-lut-showcase-grid .pro-sidebyside-stack {
    max-width: none;
    padding: 0;
}

/* ── Video Carousel ──────────────────────────────────── */
.pro-video-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.pro-video-carousel-viewport {
    position: relative;
}

.pro-video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.pro-video-slide:first-child {
    position: relative;
}

.pro-video-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.pro-video-slide-poster {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 5rem 2rem;
    cursor: pointer;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease;
}

.pro-video-slide-poster::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.pro-video-slide-poster > * {
    position: relative;
    z-index: 1;
}

.pro-video-slide-poster:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.pro-video-slide-label {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.08em;
    color: #f0efe9;
}

.pro-video-slide-cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.pro-video-play-btn {
    width: 72px;
    height: 72px;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.pro-video-slide-poster:hover .pro-video-play-btn {
    background: rgba(0, 0, 0, 0.55);
    transform: scale(1.1);
}

.pro-video-play-btn svg {
    width: 100%;
    height: 100%;
}

.pro-video-slide-players {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.pro-video-slide-players.is-visible {
    display: flex;
}

.pro-video-slide-players video {
    width: 100%;
    display: block;
    background: #111;
}

.pro-video-item {
    position: relative;
}

.pro-video-item-label {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.pro-video-item-label::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='9,6 9,18 19,12' fill='rgba(255,255,255,0.5)'/%3E%3C/svg%3E") center/14px no-repeat;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.pro-video-item-label:hover {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.35);
}

.pro-video-item-label:hover::after {
    border-color: rgba(255, 255, 255, 0.7);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='9,6 9,18 19,12' fill='rgba(255,255,255,0.85)'/%3E%3C/svg%3E");
}

.pro-video-item-label.is-hidden {
    display: none;
}

.pro-video-back-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    align-self: flex-start;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.pro-video-back-btn:hover {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.4);
}

.pro-video-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.pro-video-carousel-counter {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    min-width: 180px;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   MENTOR SESSION PAGE
   ═══════════════════════════════════════════════════════════ */

/* ── Mentor Hero ─────────────────────────────────────────── */
.mentor-hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    margin-top: 6rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.mentor-hero-image {
    position: absolute;
    inset: 0;
    margin: 0;
}

.mentor-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mentor-hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 2rem 8vh;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    width: 100%;
    padding-top: 30vh;
}

.mentor-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: #f0efe9;
}

.mentor-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto;
}

/* ── Mentor Tabs ─────────────────────────────────────────── */
.mentor-choose {
    padding: 8rem var(--spacing-lg);
}

.mentor-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mentor-tab {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    padding: 1.2rem 2.5rem;
    cursor: pointer;
    transition: color 0.4s ease;
    position: relative;
}

.mentor-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: #f0efe9;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mentor-tab:hover {
    color: rgba(255, 255, 255, 0.7);
}

.mentor-tab.is-active {
    color: #f0efe9;
}

.mentor-tab.is-active::after {
    transform: scaleX(1);
}

/* ── Mentor Panels ───────────────────────────────────────── */
.mentor-panel {
    display: none;
}

.mentor-panel.is-active {
    display: block;
}

.mentor-profile {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
    align-items: center;
}

.mentor-profile-image {
    margin: 0;
    overflow: hidden;
}

.mentor-profile-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.mentor-profile-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    color: #f0efe9;
}

.mentor-profile-role {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.8rem;
}

.mentor-profile-bio {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
}

/* ── Mentor Program List ─────────────────────────────────── */
.mentor-program {
    max-width: 700px;
    margin: 0 auto;
}

.mentor-program-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
    display: block;
    text-align: center;
}

.mentor-program-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mentor-program-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mentor-program-list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mentor-program-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.2);
    min-width: 2rem;
}

.mentor-program-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #f0efe9;
}

/* ── Pricing Cards ───────────────────────────────────────── */
.mentor-formats {
    padding: 8rem var(--spacing-lg);
    background: #0a0a0a;
}

.mentor-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.mentor-pricing-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s ease;
}

.mentor-pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.mentor-pricing-card--featured {
    border-color: rgba(255, 255, 255, 0.25);
}

.mentor-pricing-card .pro-edition-badge {
    margin-bottom: 1.5rem;
}

.mentor-pricing-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.04em;
    color: #f0efe9;
    margin-bottom: 1rem;
}

.mentor-pricing-price {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #f0efe9;
    margin-bottom: 2rem;
}

.mentor-pricing-currency {
    font-size: 0.6em;
    color: rgba(255, 255, 255, 0.5);
}

.mentor-pricing-details {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex: 1;
}

.mentor-pricing-details li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    padding: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.mentor-pricing-details li::before {
    content: '\2014';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
}

.mentor-pricing-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
}

.mentor-pricing-card .pro-product-cta {
    text-align: center;
    margin-top: auto;
}

/* ── Full-width Image ────────────────────────────────────── */
.mentor-fullwidth-image {
    margin: 0;
    overflow: hidden;
    max-height: 50vh;
}

.mentor-fullwidth-image img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    object-position: center 60%;
    display: block;
}

/* ── Testimonials ────────────────────────────────────────── */
.mentor-testimonials {
    padding: 8rem var(--spacing-lg);
}

.mentor-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.mentor-testimonial {
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mentor-testimonial p {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    flex: 1;
}

.mentor-testimonial cite {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mentor-testimonial-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f0efe9;
}

.mentor-testimonial-info {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
}

/* ── Photo Grid (after testimonials) ─────────────────────── */
.mentor-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
    max-width: 60%;
    margin: 0 auto;
}

.mentor-photo-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mentor-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── FAQ Accordion ───────────────────────────────────────── */
.mentor-faq {
    padding: 8rem var(--spacing-lg);
    background: #0a0a0a;
}

.mentor-faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.mentor-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mentor-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mentor-faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #f0efe9;
    text-align: left;
    transition: color 0.3s ease;
}

.mentor-faq-question:hover {
    color: rgba(255, 255, 255, 0.7);
}

.mentor-faq-icon {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.mentor-faq-item.is-open .mentor-faq-icon {
    transform: rotate(45deg);
}

.mentor-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.mentor-faq-item.is-open .mentor-faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.mentor-faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
}

/* ── Book a Call ──────────────────────────────────────────── */
.mentor-book {
    padding: 8rem var(--spacing-lg);
}

.mentor-book-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.mentor-book-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.04em;
    color: #f0efe9;
    margin-bottom: 1.2rem;
}

.mentor-book-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    max-width: 400px;
}

.mentor-book-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mentor-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mentor-form-field input,
.mentor-form-field textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 1.2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #f0efe9;
    transition: border-color 0.3s ease;
    outline: none;
    resize: none;
}

.mentor-form-field input::placeholder,
.mentor-form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.mentor-form-field input:focus,
.mentor-form-field textarea:focus {
    border-color: rgba(255, 255, 255, 0.4);
}

.mentor-form-submit {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
    align-self: flex-start;
}

.mentor-form-submit:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.mentor-form-submit:disabled {
    opacity: 0.5;
    cursor: default;
    transform: none;
}

/* ── Workshop teasing image (pro.html) ───────────────────── */
.pro-product-image--glossy {
    position: relative;
    padding: 0;
}

.pro-product-image--glossy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
}

.pro-product-image--glossy::after {
    content: 'Coming Soon';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.08em;
    color: #f0efe9;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {

    .pro-hero {
        padding: 15vh 5vw 6vh;
    }

    .pro-hero-title {
        font-size: clamp(2.4rem, 8.8vw, 3.3rem);
    }

    .pro-hero-subtitle {
        font-size: 1.05rem;
    }

    .pro-product {
        padding: 0 5vw;
        margin-bottom: 0.5rem;
    }

    .pro-product-inner,
    .pro-detail-hero {
        grid-template-columns: 1fr;
    }

    .pro-detail-hero {
        height: auto;
        overflow: visible;
    }

    .pro-product--reverse .pro-product-inner {
        direction: ltr;
    }

    .pro-product-image {
        min-height: 280px;
        padding: 2rem;
    }

    .pro-product--contained .pro-product-image {
        min-height: 220px;
    }

    .pro-product--contained .pro-product-image img {
        max-width: 55%;
        max-height: none;
        width: auto;
        height: auto;
    }

    .pro-product-info,
    .pro-detail-hero-info {
        padding: var(--spacing-md) 5vw;
    }

    .pro-product-title {
        font-size: clamp(1.55rem, 6.6vw, 2rem);
        margin-bottom: 1rem;
    }

    .pro-product .pro-product-info .pro-product-description,
    .pro-product .pro-product-info .pro-product-cta {
        display: none;
    }

    .pro-features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pro-chapters {
        padding: var(--spacing-lg) 5vw;
    }

    .pro-chapter-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .pro-quote {
        padding: var(--spacing-lg) 5vw;
    }

    .pro-quote-bts {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .pro-quote-bts-text {
        padding: var(--spacing-md) 5vw;
    }

    .pro-quote-bts-image {
        order: -1;
        max-height: 50vh;
    }

    .pro-editions {
        padding: var(--spacing-lg) 5vw;
    }

    .pro-editions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pro-sidebyside-stack {
        padding: 0 5vw;
    }

    .pro-before-after {
        padding: var(--spacing-md) 5vw;
    }

    .ba-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ba-handle-circle {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .pro-gallery {
        padding: var(--spacing-md) 5vw;
    }

    .pro-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pro-gallery-item {
        aspect-ratio: auto;
    }

    .pro-gallery-item img {
        aspect-ratio: 4/5;
    }

    .pro-lut-videos {
        grid-template-columns: 1fr;
    }

    .pro-video-showcase {
        padding: var(--spacing-md) 5vw var(--spacing-sm);
    }

    .pro-features-grid--lut {
        grid-template-columns: 1fr;
    }

    .pro-lut-showcase-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pro-lut-showcase {
        padding: var(--spacing-md) 5vw var(--spacing-sm);
    }

    .pro-bts {
        padding: 0 5vw;
    }

    /* ── Mentor Responsive ── */
    .mentor-hero {
        height: 70vh;
        min-height: 400px;
    }

    .mentor-hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .mentor-choose {
        padding: 5rem var(--spacing-sm);
    }

    .mentor-tabs {
        flex-direction: column;
        border-bottom: none;
        gap: 0;
    }

    .mentor-tab {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 1.5rem;
        text-align: center;
    }

    .mentor-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mentor-profile-image img {
        aspect-ratio: 4/3;
    }

    .mentor-formats {
        padding: 5rem var(--spacing-sm);
    }

    .mentor-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mentor-testimonials {
        padding: 5rem var(--spacing-sm);
    }

    .mentor-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mentor-photo-grid {
        max-width: 95%;
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .mentor-photo-stack {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .mentor-faq {
        padding: 5rem var(--spacing-sm);
    }

    .mentor-book {
        padding: 5rem var(--spacing-sm);
    }

    .mentor-book-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mentor-form-row {
        grid-template-columns: 1fr;
    }

    .mentor-form-submit {
        width: 100%;
        text-align: center;
    }
}