/* ============================================
   COSA TRASPORTI - Styles
   ============================================ */
body{
    background-color: var(--color-secondary);
}
/* ============================================
   HERO SECTION - Full screen con immagine a destra
   ============================================ */
.cosa-trasporti-hero {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    background-color: var(--color-secondary);
    z-index: 1;
}

.cosa-trasporti-hero ~ * {
    position: relative;
    z-index: 2;
    background: var(--color-secondary);
}

.cosa-trasporti-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

.cosa-trasporti-hero-image img {
    height: 100%;
    width: auto;
    max-width: none; /* Permette di superare il container */
    object-fit: contain;
    object-position: right center;
}

.cosa-trasporti-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 150px;           /* ← Aggiungi */
    padding-bottom: var(--space-4xl);
}
.cosa-trasporti-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Gradiente da sinistra (scuro per testo) a destra (trasparente per immagine) */
    background: linear-gradient(
        to right,
        var(--color-secondary) 0%,
        var(--color-secondary) 10%,
        rgba(38, 38, 38, 0.8) 20%,
        rgba(38, 38, 38, 0.3) 40%,
        transparent 80%
    );
    z-index: 1;
}

.cosa-trasporti-hero h1 {
    color: white;
    font-size: var(--font-size-h1);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.9;
    max-width: 70%;
    margin: 0;
    /* Effetto testo con ombra per leggibilità */
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.cosa-trasporti-hero .lead {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: var(--font-size-lead);
    line-height: var(--line-height-lead);
    color: var(--color-cream);
    max-width: 50%;
    margin: var(--space-xl) 0 0;
}

@media (max-width: 768px) {
    .cosa-trasporti-hero .lead {
        max-width: 100%;
        font-size: 1.25rem;
    }
}

/* ============================================
   INTRO SECTION - Sfondo grigio
   ============================================ */
.cosa-trasporti-intro {
    background-color: var(--color-secondary);
    padding: var(--space-3xl) 0 var(--space-4xl);
}

/* Breadcrumb */
.gallery-section .breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    font-size: var(--font-size-small);
}

.gallery-section .breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.gallery-section .breadcrumb a:hover {
    color: white;
}

.gallery-section .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

.gallery-section .breadcrumb-current {
    color: rgba(255, 255, 255, 0.6);
}

/* H2 */
.cosa-trasporti-intro h2 {
    color: white;
    margin: 0 0 var(--space-xl);
    max-width: 90%;
}

/* Sottotitolo */
.cosa-trasporti-intro .intro-subtitle {
    color: white;
    font-size: var(--font-size-h4);
    font-weight: 400;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .cosa-trasporti-hero h1 {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .cosa-trasporti-hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height per iOS */
    }
    
    .cosa-trasporti-hero-content {
        padding-top: 80px;
    }
    
    .cosa-trasporti-hero-image {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        align-items: flex-end; /* Immagine attaccata al fondo */
    }
    
    .cosa-trasporti-hero-image img {
        width: 100%;
        height: auto;
        max-height: 60%;
        object-fit: contain;
        object-position: center bottom;
    }
    
    .cosa-trasporti-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    
     .cosa-trasporti-hero-image::after {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60%; /* Stessa altezza max dell'immagine */
        background: linear-gradient(
            to bottom,
            var(--color-secondary) 0%,
            rgba(38, 38, 38, 0.8) 10%,
            rgba(38, 38, 38, 0.3) 30%,
            transparent 100%
        );
    }
    
    .cosa-trasporti-hero h1 {
        max-width: 100%;
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .cosa-trasporti-intro {
        padding: var(--space-2xl) 0 var(--space-3xl);
    }
    
    .cosa-trasporti-intro h2 {
        max-width: 100%;
    }
    
    .cosa-trasporti-intro .intro-subtitle {
        font-size: var(--font-size-body);
    }
}


/* ============================================
   COSA TRASPORTI - INDEX/LISTING
   ============================================ */


/* Header Section */
.cosa-trasporti-header {
    padding: 140px 0 var(--space-3xl);
    background-color: var(--color-cream);
}

.cosa-trasporti-header h1 {
    color: var(--color-secondary);
    font-size: var(--font-size-h1);
    margin-bottom: var(--space-lg);
}

.cosa-trasporti-header .page-intro {
    max-width: 1200px;
    margin: 0;
}

/* Grid Section */
.cosa-trasporti-grid-section {
    padding: 0 0 var(--space-5xl);
    background-color: var(--color-cream);
}

.cosa-trasporti-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-md);
}

/* ============================================
   CARD - Design Moderno con effetti
   ============================================ */

.cosa-trasporti-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.cosa-trasporti-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(210, 10, 17, 0.1);
}

/* Image Wrapper */
.card-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
                filter 0.5s ease;
}

.cosa-trasporti-card:hover .card-image-wrapper img {
    transform: scale(1.15);
    filter: brightness(0.9);
}

/* Overlay gradient */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(38, 38, 38, 0.8) 0%,
        rgba(38, 38, 38, 0.2) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cosa-trasporti-card:hover .card-overlay {
    opacity: 1;
}

/* Shine effect */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: none;
    pointer-events: none;
}

.cosa-trasporti-card:hover .card-shine {
    animation: cardShine 0.8s ease forwards;
}

@keyframes cardShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Card Content */
.card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    background: white;
    position: relative;
    z-index: 2;
}

.card-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-small);
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.cosa-trasporti-card:hover .card-title {
    color: var(--color-primary);
}

/* Arrow */
.card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-cream);
    flex-shrink: 0;
    transition: background 0.3s ease,
                transform 0.3s ease;
}

.card-arrow svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-secondary);
    transition: stroke 0.3s ease,
                transform 0.3s ease;
}

.cosa-trasporti-card:hover .card-arrow {
    background: var(--color-primary);
    transform: rotate(-45deg);
}

.cosa-trasporti-card:hover .card-arrow svg {
    stroke: white;
    transform: rotate(45deg);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1400px) {
    .cosa-trasporti-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .cosa-trasporti-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .cosa-trasporti-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cosa-trasporti-header {
        padding: 120px 0 var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .cosa-trasporti-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .cosa-trasporti-header {
        padding: 100px 0 var(--space-xl);
    }
    
    .cosa-trasporti-header h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .cosa-trasporti-header .page-intro {
        font-size: var(--font-size-body);
    }
    
    .card-content {
        padding: var(--space-sm);
    }
    
    .card-title {
        font-size: var(--font-size-xs);
    }
    
    .card-arrow {
        width: 28px;
        height: 28px;
    }
    
    .card-arrow svg {
        width: 14px;
        height: 14px;
    }
    
    .cosa-trasporti-grid-section {
        padding-bottom: var(--space-3xl);
    }
}

@media (max-width: 480px) {
    .card-title {
        font-size: 11px;
    }
}


/* In cosa-trasporti.css */
.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cosa-trasporti-card:hover .card-image {
    transform: scale(1.05);
}

.card-product {
    font-size: 0.75rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* ============================================
   SECTION PROBLEM
   Card con sfondo crema, bordi arrotondati,
   gap laterali, eyebrow corsivo, H2 e 2 colonne
   
   Aggiungi a cosa-trasporti.css o importa separatamente
   ============================================ */

/* Wrapper esterno - sfondo pagina + padding gap */
.section-problem-wrapper {
    padding: var(--layout-margin);
    position: relative;
    background-color: var(--color-secondary);
    z-index: 10;
}

/* Card interna - sfondo crema con bordi round */
.section-problem {
    background-color: var(--color-cream);
    border-radius: var(--radius-xl);
    padding: var(--space-4xl) var(--space-3xl);
}

.section-problem-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* Eyebrow - titoletto corsivo sopra H2 */
.section-eyebrow {
    display: block;
    font-family: var(--font-secondary); /* Noto Serif */
    font-style: italic;
    font-weight: 400;
    font-size: var(--font-size-large);
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
    text-transform: none;
}

/* H2 della sezione - eredita stili globali */
.section-problem h2 {
    color: var(--color-secondary);
    margin-bottom: var(--space-3xl);
    max-width: 100%;
}

/* Griglia due colonne per il testo */
.problem-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.problem-columns p {
    color: var(--color-secondary);
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .section-problem {
        padding: var(--space-3xl) var(--space-2xl);
    }
    
    .problem-columns {
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .section-problem-wrapper {
        padding: var(--layout-margin);
    }
    
    .section-problem {
        padding: var(--space-2xl) var(--space-lg);
        border-radius: var(--radius-lg);
    }
    
    .section-eyebrow {
        font-size: var(--font-size-body);
        margin-bottom: var(--space-sm);
    }
    
    .section-problem h2 {
        margin-bottom: var(--space-2xl);
    }
    
    .problem-columns {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}


/* ============================================
   PROBLEM-SOLUTION BLOCKS
   Blocchi problema/soluzione con icone,
   titoli grandi e video
   ============================================ */

/* Container principale - wrapper esterno */
.ps-section {
    background-color: var(--color-secondary);
    padding: var(--space-2xl) var(--layout-margin);
}

/* Contenitore interno centrato */
.ps-section-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.ps-block {
    padding: var(--space-3xl) 0;
    margin-bottom: var(--space-5xl);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.ps-block:last-child {
    border-bottom: none;
}

/* ============================================
   PROBLEMA ROW - 2 colonne: titolo | testo
   ============================================ */

.ps-problem {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
    margin-bottom: var(--space-3xl);
    transform-origin: center center;
    will-change: transform, opacity;
    position: relative;
    z-index: 1;
}

.ps-problem-left {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.ps-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
}

.ps-icon svg {
    width: 100%;
    height: 100%;
}

.ps-icon--warning svg {
    fill: #F5C542;
    color: #F5C542;
}

.ps-icon--success svg {
    fill: var(--color-success);
    color: var(--color-success);
}

/* Rimuovi il colore generico da ps-label */
.ps-label {
    display: block;
    font-family: var(--font-primary);
    font-size: var(--font-size-small);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: var(--space-sm);
}

/* Problema = giallo */
.ps-problem .ps-label {
    color: #F5C542;
}

/* Soluzione = verde */
.ps-solution .ps-label {
    color: var(--color-success);
}

.ps-title {
    color: white;
    margin: 0;
}

.ps-problem-right p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.ps-problem-right a {
    color: white;
    text-decoration: underline;
}

.ps-problem-right a:hover {
    opacity: 0.8;
}

/* ============================================
   SOLUZIONE ROW - 2 colonne: titolo+testo | video
   ============================================ */

.ps-solution {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
    position: relative;
    z-index: 2;
    background-color: var(--color-secondary);
    padding-top: var(--space-xl);
    will-change: transform;
}

/* Bordo puntinato sopra soluzione */
.ps-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 8px 1px;
    background-repeat: repeat-x;
}

.ps-solution-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.ps-solution-header {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.ps-solution-text p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    padding-left: calc(56px + var(--space-lg)); /* Allinea con titolo */
}

/* Video container */
.ps-video {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background-color: var(--color-secondary-light);
}

.ps-video img,
.ps-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play button overlay */
.ps-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition-base), background-color var(--transition-base);
}

.ps-video-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--color-primary-dark);
}

.ps-video-play svg {
    width: 28px;
    height: 28px;
    fill: white;
    margin-left: 4px; /* Compensa visivamente il triangolo */
}

/* ============================================
   GSAP ANIMATION - Stati gestiti da JS
   ============================================ */

/* Fallback se JS non carica - contenuto visibile */
.ps-block,
.ps-problem-left,
.ps-problem-right,
.ps-solution-left,
.ps-video {
    /* Stati iniziali impostati via gsap.set() in JS */
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .ps-problem,
    .ps-solution {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .ps-solution-text p {
        padding-left: 0;
    }
    
    .ps-video {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .ps-section {
        padding: var(--space-3xl) var(--layout-margin);
    }
    
    .ps-block {
        padding: var(--space-2xl) 0;
    }
    
    .ps-icon {
        width: 44px;
        height: 44px;
    }
    
    .ps-problem-left,
    .ps-solution-header {
        gap: var(--space-md);
    }
    
    .ps-video-play {
        width: 56px;
        height: 56px;
    }
    
    .ps-video-play svg {
        width: 22px;
        height: 22px;
    }
}

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



/* ============================================
   PRODUCT HIGHLIGHT SECTION
   Fascia rossa con prodotto consigliato
   ============================================ */

/* Wrapper esterno */
.product-highlight-wrapper {
    background-color: var(--color-secondary);
    padding: var(--layout-margin) var(--layout-margin) 0;
}

/* Card interna rossa */
.product-highlight {
    background-color: var(--color-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-4xl) var(--space-3xl);
    position: relative;
}

.product-highlight-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

/* Colonna sinistra - Testi */
.product-highlight-content {
    color: white;
}

.product-highlight-eyebrow {
    font-family: var(--font-secondary);
    font-size: var(--font-size-body);
    font-style: italic;
    font-weight: 400;
    color: white;
    margin-bottom: var(--space-sm);
    display: block;
}

.product-highlight-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-h2);
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    line-height: var(--line-height-tight);
    margin: 0 0 var(--space-2xl);
        font-size: clamp(1.5rem, 3vw + 0.5rem, 3rem);

}

.product-highlight-name {
    font-family: var(--font-primary);
    font-size: var(--font-size-h4);
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    margin: 0 0 var(--space-lg);
}

.product-highlight-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
}

.product-highlight-features li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-body);
}

.product-highlight-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: white;
}

/* Colonna destra - Immagine */
.product-highlight-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.product-highlight-image img {
    max-width: 120%;
    height: auto;
    /* Immagine può uscire dal container in basso */
    margin-bottom: calc(var(--space-4xl) * -0.5);
    transition: transform 0.4s ease;
}

.product-highlight-image:hover img {
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .product-highlight-inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .product-highlight-image {
        order: -1; /* Immagine sopra su mobile */
    }
    
    .product-highlight-image img {
        max-width: 60%;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .product-highlight {
        padding: var(--space-3xl) var(--layout-margin);
    }
    
    .product-highlight-title {
        font-size: var(--font-size-h3);
    }
    
    .product-highlight-image img {
        max-width: 80%;
    }
}


/* ============================================
   ADVANTAGES SECTION
   Fascia crema con video e blocchi vantaggi
   ============================================ */

/* Wrapper esterno */
.advantages-wrapper {
    background-color: var(--color-secondary);
    padding: var(--layout-margin);
}

/* Card interna crema */
.advantages-section {
    background-color: var(--color-cream);
    border-radius: var(--radius-xl);
    padding: var(--space-4xl) var(--space-3xl);
}

.advantages-inner {
    margin: 0 auto;
}

/* ============================================
   HEADER: Testo + Video
   ============================================ */

.advantages-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
    margin-bottom: var(--space-4xl);
}

.advantages-eyebrow {
    font-family: var(--font-secondary);
    font-style: italic;
    display: block;
    margin-bottom: var(--space-sm);
}

.advantages-title {
    margin-bottom: var(--space-xl);
}

/* Video container */
.advantages-video {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background-color: var(--color-gray-200);
}

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

/* ============================================
   BLOCCHI VANTAGGI (stile soluzione)
   ============================================ */

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3xl);
}

.advantage-block {
    /* nessuno stile speciale */
}

.advantage-title {
    padding-left: var(--space-md);
    border-left: 8px solid var(--color-success);
    margin: 0 0 var(--space-md);
}

.advantage-block p {
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .advantages-header {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .advantages-section {
        padding: var(--space-3xl) var(--layout-margin);
    }
    
    .advantages-header {
        margin-bottom: var(--space-3xl);
    }
}


.gallery-section {
    background: var(--color-secondary);
    padding: var(--space-2xl) 0;
}
.gallery-section .gallery-header h2, .gallery-section .gallery-header p.lead {
    color: var(--color-cream);
}


/* ============================================
   PRODUCTS DUO - 2 prodotti affiancati
   ============================================ */

.products-duo-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--layout-margin);
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

/* Su schermi >= 1600px: affiancati */
@media (min-width: 1600px) {
    .products-duo-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Rimuovi padding interno dai wrapper singoli */
    .products-duo-wrapper .product-highlight-wrapper {
        padding: 0;
    }
    
    /* Altezza uguale per entrambe le card */
    .products-duo-wrapper .product-highlight {
        height: 100%;
    }
}

/* Sotto 1600px: uno sotto l'altro (comportamento attuale) */
@media (max-width: 1599px) {
    .products-duo-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    
    .products-duo-wrapper .product-highlight-wrapper {
        /* Mantieni stile originale */
    }
}