/* 
    PJ3D Cinematic Prototype - Core Styles
    Deeply inspired by dsgngroup.it
*/

/* Google Fonts are now enqueued natively via functions.php to avoid render-blocking */

:root {
    --bg-color: #050505;
    --text-color: #F0F0F0;
    --accent: #FF6A00;
    /* Energy Orange */
    --accent-hover: #FF7F26;
    --font-display: 'Unbounded', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --easing: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: clip;
    /* clip instead of hidden allows position: sticky to work */
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    color: black;
    padding: 1rem 2rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    font-family: var(--font-display);
    border: 1px solid var(--pj-accent);
}

/* TYPOGRAPHY SYSTEM */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.hero-type {
    font-size: clamp(2rem, 5vw, 4rem);
    white-space: nowrap;
    opacity: 0;
    /* JS handles reveal */
    transform: translateY(100px);
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 6rem);
    margin-bottom: 2rem;
}

/* UTILITIES */
.full-screen {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.container {
    padding: 0 4vw;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

/* COMPONENTS */
.nav-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100% !important;
    padding: 2rem 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99999 !important;
    /* mix-blend-mode: difference; REMOVED to allow blur background */
    color: var(--pj-text);
    background: rgba(14, 16, 20, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Compatibilidad con WP Admin Bar */
body.admin-bar .nav-bar {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar .nav-bar {
        top: 46px !important;
    }
}

.site-logo,
.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}

.custom-logo-link img {
    max-height: 40px;
    width: auto;
    display: block;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.4;
    filter: grayscale(100%) contrast(1.2);
}

/* MASK EFFECT */
.hero-mask-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line-wrapper {
    overflow: hidden;
}

/* HEADER UTILITIES */
/* HEADER UTILITIES */
.nav-center {
    display: none;
    /* Hidden on mobile */
    gap: 2rem;
}

.nav-link-item {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pj-text);
    transition: color 0.3s ease;
}

.nav-link-item:hover {
    color: var(--pj-accent);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* RESPONSIVE NAV */
@media (min-width: 1024px) {
    .nav-center {
        display: flex;
    }

    .menu-trigger {
        display: none !important;
    }
}

/* BUTTONS */
/* BUTTONS */
.btn-border {
    padding: 0.8rem 2rem;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 100px;
    text-transform: uppercase;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.btn-border:hover {
    background: white;
    color: black;
}

.btn-border svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-border:hover svg {
    transform: translateX(5px);
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin-top: 2rem;
    line-height: 1.6;
    opacity: 0;
    /* Animate in */
    transform: translateY(20px);
}

.hero-cta-wrapper {
    margin-top: 3rem;
    opacity: 0;
    /* Animate in */
    transform: translateY(20px);
}

/* BUTTONS (Legacy support) */
.btn-magnetic {
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.btn-magnetic:hover {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

/* MARQUEE ANIMATION */
.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    background: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    padding-right: 4rem;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* FLASHLIGHT REVEAL (B&W to Color) */
.reveal-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
}

.reveal-image-bw,
.reveal-image-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reveal-image-bw {
    filter: grayscale(100%) contrast(1.1);
    z-index: 1;
}

.reveal-image-color {
    z-index: 2;
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.1s ease-out;
}

/* HOVER KINETIC TEXT */
.kinetic-link {
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kinetic-link:hover {
    font-weight: 800;
    color: var(--accent);
    transform: scale(1.05);
}

/* SCROLL ZOOM */
.zoom-image-container {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin: 4rem 0;
}

.zoom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1;
}


/* SERVICES LIST - REMOVED */

/* PORTFOLIO GRID */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
}

.project-card {
    position: relative;
    margin-bottom: 4rem;
}

.project-image-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 1rem;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--easing), filter 0.6s var(--easing);
    filter: grayscale(100%);
}

.project-card:hover .project-image {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.project-meta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-meta p {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        margin-top: 0 !important;
    }
}

/* --- NEW: HIGH-END FLOURISHES --- */

/* 1. CUSTOM CURSOR */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: white;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Hover State for Cursor */
body.hovering .cursor-outline {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
    backdrop-filter: blur(2px);
}

/* 2. PRELOADER */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: var(--font-display);
    font-size: 2rem;
}

.loader-text {
    overflow: hidden;
}

.loader-text span {
    display: inline-block;
    transform: translateY(100%);
}

/* 3. TEXT REVEAL UTILITIES */
.char-reveal {
    display: inline-block;
    overflow: hidden;
}

.char-reveal span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.5s var(--easing);
}

.is-in-view .char-reveal span {
    transform: translateY(0);
}

/* --- PRODUCT DETAIL PAGE (PDP) --- */
.pdp-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4vw;
    margin-top: 8rem;
    padding-bottom: 4rem;
}

.pdp-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pdp-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 4px;
}

.pdp-buybox-wrapper {
    position: relative;
    height: 100%;
}

.pdp-buybox {
    position: sticky;
    top: 8rem;
    padding: 1.5rem;
    /* Reduced from 2rem */
    background: var(--pj-surface);
    border: 1px solid var(--pj-line);
    border-radius: 12px;
}

.product-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    /* Reduced */
    color: var(--pj-text-muted);
}

.product-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.5rem);
    /* Slightly smaller max */
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pj-accent);
    margin-bottom: 1.5rem;
    /* Reduced */
}

.editorial-note {
    border-left: 2px solid var(--pj-accent);
    padding-left: 1rem;
    margin: 1.5rem 0;
    /* Reduced */
    font-style: italic;
    color: var(--pj-text-muted);
    font-size: 0.95rem;
}

.pdp-btn-primary {
    width: 100%;
    padding: 1.2rem;
    background: white;
    /* High Contrast Request */
    color: black;
    border: 1px solid white;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s var(--easing);
    text-align: center;
    display: block;
    box-shadow: none;
    letter-spacing: -0.02em;
}

/* Hover State for Buy Button */
.pdp-btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: none;
}

/* Icon Buttons */
.btn-icon:hover {
    border-color: var(--pj-accent) !important;
    background: var(--pj-accent) !important;
    color: white !important;
    transform: translateY(-2px);
}

/* EXTERNAL PRODUCT STATE */
body.is-external .internal-only,
body.is-external .internal-btn {
    display: none !important;
}

body.is-external .external-btn {
    display: flex !important;
}

/* Demo Toggle (Fixed bottom right) */
.demo-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    opacity: 0.5;
    z-index: 9999;
}

.demo-toggle:hover {
    opacity: 1;
}

/* Format Option Visuals */
.format-option.active {
    background: rgba(255, 255, 255, 0.05) !important;
    /* Neutral active state, not brown */
    border-color: var(--pj-accent) !important;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    /* Reduced */
    padding-top: 1.5rem;
    border-top: 1px solid var(--pj-line);
    font-size: 0.8rem;
    color: var(--pj-text-muted);
}

/* ACCORDIONS */
.accordion-item {
    border-bottom: 1px solid var(--pj-line);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--pj-accent);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--easing);
}

.accordion-header.active {
    color: var(--pj-accent);
}

@media (max-width: 1024px) {
    .pdp-grid {
        grid-template-columns: 1fr;
    }

    .pdp-buybox {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
}

/* =========================================
   ZONE: PRODUCT DETAIL PAGE (PDP V4.2)
   Refactored from inline styles
   ========================================= */

/* BACKGROUNDS & COLORS */
:root {
    --glass-panel: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
}

.section-separator {
    border-top: 1px solid var(--glass-border);
    padding: 8rem 0;
}

/* SCROLL REVEAL (GSAP) */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
}

/* ZONE 1: ADAPTIVE CINEMATIC HERO (V4.2) */
.pdp-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 1. Atmospheric Backdrop (Blur) */
.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(40px) brightness(0.25) saturate(1.2);
    transform: scale(1.2);
}

/* 2. Content Grid */
.hero-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    padding: 0 4vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    height: 100%;
}

@media(max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        align-content: center;
        padding-top: 6rem;
    }
}

/* 3. The Actual Product Image (Clean & Pristine) */
.hero-product-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s var(--easing);
}

.hero-product-wrapper:hover .hero-product-image {
    transform: scale(1.02);
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title-wrapper h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 7rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* SEO TITLE VARIANT (For Long Amazon/Etsy Names) */
.hero-title-wrapper h1.long-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    line-height: 1.25;
    text-transform: none;
    letter-spacing: normal;
    max-width: 90%;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ddd;
    max-width: 500px;
    border-left: 2px solid var(--accent);
    padding-left: 1.5rem;
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 4px;
}

/* Hero Purchase Card */
.hero-buy-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 2px;
    max-width: 480px;
    margin-left: auto;
}

@media(max-width: 900px) {
    .hero-buy-card {
        margin-left: 0;
        width: 100%;
        padding: 1.5rem;
    }
}

/* ZONE 2: DETAIL GALLERY */
.detail-gallery-section {
    padding: 6rem 4vw;
    border-bottom: 1px solid var(--glass-border);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-photo {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 2px;
    cursor: zoom-in;
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-photo:hover img {
    transform: scale(1.05);
}

/* ZONE 3: EDITORIAL */
.editorial-section {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--glass-border);
}

.editorial-visual {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.editorial-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s;
}

.editorial-section:hover .editorial-visual img {
    filter: grayscale(0%);
}

.editorial-text {
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.big-type {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 0.9;
    margin-bottom: 2rem;
    color: transparent;
    -webkit-text-stroke: 1px white;
}

.editorial-section:hover .big-type {
    color: white;
    -webkit-text-stroke: 0;
    transition: color 0.3s;
}

/* ZONE 5: VIDEO */
.video-section {
    height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 1;
}

.video-overlay-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* ZONE 6: SPECS & FAQ */
.specs-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--glass-border);
}

.grid-panel {
    padding: 6rem 4vw;
    border-right: 1px solid var(--glass-border);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

details summary {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-family: var(--font-display);
}

/* STICKY BAR */
.sticky-bar {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 1200px;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transition: transform 0.5s var(--easing);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.sticky-bar.visible {
    transform: translateX(-50%) translateY(0);
}

.sticky-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sticky-thumb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.sticky-title {
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
}

.cta-sticky {
    background: var(--accent);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-sticky:hover {
    background: white;
    color: black;
}

/* CTA BUTTON PREMIUM */
.cta-premium {
    width: 100%;
    padding: 1.2rem;
    margin-top: 1.5rem;
    background: var(--text-color);
    color: var(--bg-color);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-premium:hover {
    background: var(--accent);
    color: white;
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.3);
}

footer {
    padding: 4rem 4vw;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: #666;
}

/* --- NEW FLOURISHES (Trust & Cross-sell) --- */
.trust-row {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffbc00;
}

.trust-count {
    color: #ccc;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gallery-overlay-text {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
    font-family: var(--font-display);
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* --- COMMERCIAL HERO LAYOUT (For SEO Heavy Products) --- */
.hero-grid.commercial-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding-top: 8rem;
    height: auto;
    min-height: 90vh;
}

.hero-image-col {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2rem;
}

@media(max-width: 900px) {
    .hero-grid.commercial-layout {
        grid-template-columns: 1fr;
        padding-top: 6rem;
        gap: 2rem;
    }

    .hero-info-col {
        padding-left: 0;
    }

    /* Mobile Optimization for Hero Image */
    .commercial-layout .hero-product-image {
        max-height: 50vh;
        /* Reduced from 75vh to show content */
        margin-bottom: 1rem;
    }
}

@media(max-width: 480px) {

    /* Tighter spacing on small mobile */
    .hero-grid.commercial-layout {
        padding-top: 5rem;
        gap: 1.5rem;
    }

    .hero-title-wrapper h1.long-title {
        font-size: 1.25rem;
        /* Ensure readable on very small screens */
    }
}

.commercial-layout .hero-buy-card {
    margin-left: 0;
    width: 100%;
    margin-left: 0;
    width: 100%;
}

/* --- PREMIUM CROSS-SELL CARDS --- */
.cross-sell-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media(max-width: 768px) {
    .cross-sell-grid {
        gap: 1rem;
        /* Tighter gap on mobile */
    }
}

.cross-sell-card {
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s var(--easing);
}

.cross-sell-card:hover {
    transform: translateY(-5px);
}

.cs-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: 2px;
}

.cs-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--easing);
}

.cross-sell-card:hover .cs-image-wrapper img {
    transform: scale(1.05);
}

.cs-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cross-sell-card:hover .cs-overlay {
    opacity: 1;
}

.cs-quick-view {
    color: white;
    font-family: var(--font-display);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cs-quick-view:hover {
    background: white;
    color: black;
    transform: scale(1.05);
}

.cs-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cs-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.cs-price {
    color: #ccc;
    font-size: 0.9rem;
}

.cs-add-btn {
    margin-top: 0.5rem;
    background: transparent;
    border: 1px solid #444;
    color: #888;
    padding: 0.6rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.cross-sell-card:hover .cs-add-btn {
    border-color: var(--accent);
    color: var(--accent);
}

.cs-add-btn:hover {
    background: var(--accent) !important;
    color: white !important;
}