﻿:root{--icona-black:#000000;--icona-wine:#8f4144;--icona-white:#FFFFFF;--icona-wine-light:#CA8083;--icona-wine-medium:#AD5A5E;--icona-gray-dark:#2c2c2c;--icona-gray-medium:#666666;--icona-gray-light:#f5f5f5;--icona-gold:#daa520;--icona-gold-star:#ffd700;--font-clarika:'Clarika',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;--spacing-xs:8px;--spacing-sm:15px;--spacing-md:25px;--spacing-lg:40px;--spacing-xl:60px;--spacing-xxl:80px;--radius-sm:12px;--radius-md:20px;--radius-lg:25px;--radius-xl:40px;--shadow-sm:0 4px 12px rgba(0,0,0,.1);--shadow-md:0 8px 25px rgba(0,0,0,.1);--shadow-lg:0 10px 30px rgba(0,0,0,.15);--transition-fast:.3s ease;--transition-medium:.5s ease;--bg-pos-y:50%;--bg-scale:1}



/* Local OTF font files provided by the project */
@font-face {
    font-family: 'Clarika';
    src: url('../../fonts/clarika-regular.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TUNDRA';
    src: url('../../fonts/clarika-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aesthetic';
    src: url('../../fonts/AestheticScriptRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}





*{margin:0;padding:0;box-sizing:border-box}

/* prevent horizontal scroll on most devices */
html, body { overflow-x: hidden; }

html {
    scroll-behavior: smooth;
}

body{font-family:var(--font-clarika);color:var(--icona-white);min-height:100vh;display:flex;flex-direction:column}

/* Premium motion polish */
.page-home .product-image,
.page-home .designer-story-portrait,
.page-home .designer-story-detail,
.page-home .icona-video-block,
.page-home .featured-product-image,
.page-home .main-product-image {
    overflow: hidden;
}

.page-home .product-image img,
.page-home .product-image video,
.page-home .designer-story-portrait img,
.page-home .designer-story-detail img,
.page-home .icona-video-block video,
.page-home .featured-product-image img,
.page-home .main-product-image img {
    transform-origin: center center;
}

.page-home .learn-more-btn,
.page-home .see-more-btn,
.page-home .faq-learn-more {
    position: relative;
    overflow: hidden;
    transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.page-home .learn-more-btn:hover,
.page-home .see-more-btn:hover,
.page-home .faq-learn-more:hover {
    transform: translateY(-2px);
}

.page-home .feature-item,
.page-home .faq-item,
.page-home .icona-type-item {
    will-change: transform, opacity;
}

.page-home .hero-brand .logo-image {
    will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .page-home .learn-more-btn:hover,
    .page-home .see-more-btn:hover,
    .page-home .faq-learn-more:hover {
        transform: none;
    }
}

/* Premium detailing */
::selection {
    background: var(--icona-wine);
    color: #fff;
}

.page-home .product-image {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: box-shadow 0.45s ease;
}

.page-home .product-card:hover .product-image {
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.page-home .designer-story-portrait,
.page-home .icona-video-block {
    box-shadow: 0 16px 40px rgba(47, 24, 24, 0.14);
}

.page-home .icona-type-img-box {
    box-shadow: 0 10px 26px rgba(143, 65, 68, 0.16);
}


.main-container {
    position: relative;
    flex: 1 0 auto;
    min-height: 0;
    overflow: hidden;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.hero-section {
    position: relative;
    min-height: 100vh;
}

@supports (height: 100dvh) {
    .hero-section { min-height: 100dvh; }
}
@supports (--css: variables) {
    .hero-section { min-height: var(--app-height, 100vh); }
}

/* Hero carousel */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* Sin transition en opacity: con <video> provoca parpadeo */
    transition: none;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.hero-slide.is-active .hero-media[src$=".jpg"],
.hero-slide.is-active .hero-media[src$=".jpeg"],
.hero-slide.is-active .hero-media[src$=".png"],
.hero-slide.is-active .hero-media[src$=".webp"],
.hero-slide.is-active .hero-media[src$=".avif"] {
    animation: heroImageIn 0.8s ease forwards;
}

@keyframes heroImageIn {
    from { opacity: 0.65; }
    to { opacity: 1; }
}

.hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.45) 100%
    );
    pointer-events: none;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(143, 65, 68, 0.45);
    backdrop-filter: blur(8px);
    color: var(--icona-white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
}

.hero-nav:hover {
    background: rgba(143, 65, 68, 0.85);
    transform: translateY(-50%) scale(1.05);
}

.hero-nav-prev { left: 24px; }
.hero-nav-next { right: 24px; }

.hero-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
    pointer-events: auto;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-dot.is-active {
    background: var(--icona-white);
    transform: scale(1.15);
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    right: clamp(24px, 4vw, 64px);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    pointer-events: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.hero-scroll-hint:hover { opacity: 1; }

.hero-scroll-text {
    font-family: var(--font-clarika);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--icona-white);
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.75);
    overflow: hidden;
    position: relative;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--icona-white);
    animation: heroScrollDrop 2.2s ease-in-out infinite;
}

@keyframes heroScrollDrop {
    0% { top: -100%; }
    55% { top: 100%; }
    100% { top: 100%; }
}

@media (max-width: 767px) {
    .hero-scroll-hint { display: none; }
}

.hero-brand {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-brand .logo-link {
    pointer-events: auto;
}

.hero-brand .logo-image {
    height: 160px;
    margin: 0;
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.35));
}

@media (max-width: 767px) {
    .hero-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .hero-nav-prev { left: 12px; }
    .hero-nav-next { right: 12px; }
    .hero-dots { bottom: 24px; }
    .hero-brand .logo-image { height: 100px; }
}

html, body { overflow-x: hidden; }
@media (max-width: 767px) {
    html, body, .main-container { overflow-x: hidden !important; }
}


.content-wrapper {
    position: relative;
    z-index: 3;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    padding: 50px 70px;
    min-height: 100vh;
    pointer-events: none;
}

.content-wrapper > header,
.content-wrapper .logo-link,
.content-wrapper .nav-container,
.content-wrapper .hamburger-menu {
    pointer-events: auto;
}

@supports (height: 100dvh) {
    .content-wrapper { min-height: 100dvh; }
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.main-content {
    display: flex;
    flex: 1;
    align-items: center;
}

.left-content {
    flex: 1;
    max-width: 600px;
}

.main-title {
    font-size: 130px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -2px;
    font-family: var(--font-clarika);
    margin-bottom: 30px;
    text-transform: lowercase;
    color: var(--icona-white);
}

.subtitle {
    font-size: 55px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-clarika);
    color: var(--icona-white);
}

.description {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
    margin-top: 25px;
    max-width: 600px;
    font-weight: 300;
    letter-spacing: 0.3px;
    font-family: var(--font-clarika);
    color: var(--icona-white);
}


.logo-image {
    height: 150px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
    margin-top: 20px;
    margin-bottom: 40px;
}


header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px; 
    overflow: visible;
    position: relative;
}

@media (max-width: 1023px) {
    .logo-image {
        height: 80px;
    }
    
    header {
        height: 80px;
    }
}

@media (max-width: 767px) {
    .logo-image {
        height: 65px;
    }
    
    header {
        height: 65px;
    }
}


@media (max-width: 767px) {
    
    .faq-content {
        display: block !important;
        padding: 0 12px;
    }

    .faq-header {
        padding: 0 0 18px 0;
        text-align: center;
        position: static;
    }

    .faq-title { font-size: 34px; margin-bottom: 12px; }
    .faq-description { font-size: 15px; margin: 0 auto 18px; max-width: 520px; }

    
    .faq-questions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 520px;
        margin: 0 auto;
        padding: 6px 0 30px;
    }

    .faq-item {
        width: 100%;
        padding: 14px 18px;
        border-radius: 14px;
        background: rgba(143, 65, 68, 0.08);
        transform: none !important; 
    }

    .faq-question { align-items: center; }
    .faq-icon { font-size: 18px; margin-right: 8px; }
    .question-text { font-size: 15px; }
}

@media (max-width: 480px) {
    .logo-image {
        height: 120px;
    }
}


.right-content {
    position: absolute;
    bottom: 25px;
    right: 50px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.featured-card {
    width: 480px;
    background: rgba(143, 65, 68, 0.3);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 14px;
}

.main-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.featured-image {
    width: 50%;
    height: 230px;
    border-radius: var(--spacing-sm);
    overflow: hidden;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.featured-image:hover {
    transform: scale(1.03);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 14px;
    padding-top: 15px;
    line-height: 1.3;
    font-family: var(--font-clarika);
    color: var(--icona-white);
}

.view-more-btn {
    background: var(--icona-white);
    color: var(--icona-wine);
    padding: 10px 30px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: transform var(--transition-fast);
    font-family: var(--font-clarika);
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.view-more-btn:hover {
    transform: scale(1.05);
}


.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xs);
}

.product-thumb {
    height: 220px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.product-thumb:hover {
    transform: scale(1.03);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.section-two,
.section-three,
.section-four {
    background: #f7f4f2;
    color: var(--icona-wine);
    padding: 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    overflow: visible;
}

.section-two {
    padding-top: 0;
    background: #f7f4f2;
    overflow: hidden;
}

.section-three {
    overflow: hidden;
}

.section-four {
    background: #f7f4f2;
    padding: 0;
    overflow: visible;
}


.features-wrapper {
    background-color: rgba(143, 65, 68, 1);
    width: 100%;
    box-sizing: border-box;
    padding: 28px 20px 24px;
    margin: 0;
}


.features-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-sm);
}

.feature-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 12px 24px 8px;
    position: relative;
    height: 100%;
    min-height: 0;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    height: auto;
    transform: none;
    background-color: rgba(255, 255, 255, 0.25);
    opacity: 1;
}

.feature-icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 12px;
    border-radius: 0;
    overflow: visible;
    flex-shrink: 0;
    background: transparent;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon-wrap {
    transform: scale(1.06);
}

.feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(1) brightness(2.4) contrast(1.35);
    mix-blend-mode: screen;
}

.feature-title {
    font-family: var(--font-clarika);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    color: #FFFFFF;
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 240px;
    line-height: 1.3;
}

.feature-description {
    font-family: var(--font-clarika);
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    max-width: 260px;
    min-height: 3.8em;
    margin: 0 auto;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
    background: var(--icona-wine);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--icona-white);
}

.section-two-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.9fr;
    gap: 48px;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 72px clamp(24px, 5vw, 80px);
    box-sizing: border-box;
}

/* Puente home → La diseñadora */
.designer-story {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    width: 100%;
    padding: 80px clamp(24px, 5vw, 80px);
    box-sizing: border-box;
    background:
        linear-gradient(135deg, #faf7f5 0%, #f3ece8 55%, #efe6e1 100%);
}

.designer-story-media {
    position: relative;
    min-height: clamp(420px, 58vh, 620px);
}

.designer-story-portrait {
    position: relative;
    width: 78%;
    height: clamp(420px, 56vh, 580px);
    margin-left: auto;
    border-radius: 16px;
    overflow: hidden;
}

.designer-story-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.designer-story-detail {
    position: absolute;
    left: 0;
    bottom: 28px;
    width: min(42%, 280px);
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(47, 24, 24, 0.22);
    border: 4px solid #faf7f5;
}

.designer-story-detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.designer-story-copy {
    max-width: 480px;
    padding-right: clamp(0px, 2vw, 24px);
}

.designer-story-eyebrow {
    font-family: var(--font-clarika);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--icona-wine);
    opacity: 0.75;
    margin-bottom: 18px;
}

.designer-story-title {
    font-family: var(--font-clarika);
    font-size: clamp(40px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--icona-wine);
    margin-bottom: 22px;
}

.designer-story-lead {
    font-family: var(--font-clarika);
    font-size: 18px;
    line-height: 1.55;
    color: #2c2c2c;
    margin-bottom: 16px;
    font-weight: 400;
}

.designer-story-text {
    font-family: var(--font-clarika);
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 32px;
    max-width: 440px;
}

.designer-story-cta {
    display: inline-block;
}

@media (max-width: 900px) {
    .designer-story {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 56px 24px;
    }

    .designer-story-media {
        min-height: 0;
        order: 2;
    }

    .designer-story-copy {
        order: 1;
        max-width: none;
        text-align: center;
        padding-right: 0;
    }

    .designer-story-text {
        margin-left: auto;
        margin-right: auto;
    }

    .designer-story-portrait {
        width: 100%;
        height: min(520px, 70vw);
        margin-left: 0;
    }

    .designer-story-detail {
        left: 16px;
        bottom: 16px;
        width: min(38%, 180px);
        border-width: 3px;
    }
}

@media (max-width: 480px) {
    .designer-story {
        padding: 44px 16px;
    }

    .designer-story-title {
        font-size: 34px;
    }

    .designer-story-lead {
        font-size: 16px;
    }

    .designer-story-portrait {
        height: 380px;
    }

    .designer-story-detail {
        width: 120px;
    }
}


.main-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.rating-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    z-index: 2;
    backdrop-filter: blur(10px);
}

.stars {
    color: var(--icona-gold-star);
    font-size: 14px;
}

.rating-text {
    font-family: var(--font-clarika);
    font-size: 12px;
    color: var(--icona-black);
    font-weight: 500;
}

.main-product-image {
    height: min(560px, 70vh);
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
}

.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}


.content-center {
    padding: 0 clamp(8px, 2vw, 24px);
    max-width: 480px;
}


.section-eyebrow {
    font-family: var(--font-clarika);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--icona-wine);
    opacity: 0.75;
    margin-bottom: 16px;
}

.section-eyebrow--light {
    color: rgba(255, 255, 255, 0.85);
}

.section-title,
.collection-title,
.type-title,
.featured-product-title,
.faq-title {
    font-family: var(--font-clarika);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
    color: var(--icona-wine);
}

/* Fina línea de acento bajo los títulos de sección */
.collection-title::after,
.faq-title::after,
.icona-type-heading::after {
    content: '';
    display: block;
    width: 56px;
    height: 2px;
    margin-top: 18px;
    background: currentColor;
    opacity: 0.45;
}

.featured-product-title{
    color: #ffffff;
}

.section-description,
.collection-description,
.type-description,
.product-description,
.faq-description {
    font-family: var(--font-clarika);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    color: #1d1d1f;
    opacity: 0.8;
}

.product-description{
    color: #FFFFFF;
}
.learn-more-btn,
.see-more-btn,
.learn-more-featured,
.faq-learn-more {
    text-decoration: none;
    background: transparent;
    color: var(--icona-wine);
    border: 1.5px solid var(--icona-wine);
    padding: 13px 34px;
    border-radius: 0;
    font-family: var(--font-clarika);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-block;
}

.learn-more-featured{
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.85);
}
.learn-more-featured:hover {
    background: #FFFFFF;
    color: var(--icona-wine);
    border-color: #FFFFFF;
}
.learn-more-btn:hover,
.see-more-btn:hover,
.learn-more-featured:hover,
.faq-learn-more:hover {
    background: var(--icona-wine);
    color: var(--icona-white);
}


.product-images-stack {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    height: 100%;
}

.product-image-item {
    height: min(480px, 65vh);
    width: 100%;
    max-width: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
}

.product-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}



.section-three {
    background: rgba(143, 65, 68, 1);
    padding: 0;
    color: #fff;
}

.collection-section {
    max-width: none;
    width: 100%;
    margin: 0;
}

.collection-container {
    background: transparent;
    border-radius: 0;
    padding: 80px clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 2fr);
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}


.collection-header {
    max-width: 420px;
}

.collection-title {
    font-family: var(--font-clarika);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.15;
}

.collection-description {
    font-family: var(--font-clarika);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 30px;
}

.see-more-btn {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    color: #FFFFFF;
    padding: 12px 35px;
    border-radius: 0;
    font-family: var(--font-clarika);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background: #FFFFFF;
    color: var(--icona-wine);
    border-color: #FFFFFF;
}


.products-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.product-card {
    text-align: center;
}

.product-image {
    position: relative;
    height: clamp(280px, 38vw, 420px);
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.15);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.product-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Clic en el vídeo navega al enlace padre (evita que script.js capture el clic en el video) */
.products-showcase .product-video-link {
    display: block;
    width: 100%;
    height: 100%;
}
.products-showcase .product-video-link video {
    pointer-events: none;
}


.audio-toggle {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease, transform 0.15s ease;
}

.audio-toggle:active { transform: scale(0.96); }
.audio-toggle i { font-size: 14px; }

.audio-toggle[aria-pressed="true"] { background: rgba(255,255,255,0.9); color: var(--icona-wine); }

.product-name {
    font-family: var(--font-clarika);
    font-size: 18px;
    font-weight: 400;
    color: var(--icona-wine);
    margin-bottom: 8px;
}

.product-price {
    font-family: var(--font-clarika);
    font-size: 16px;
    font-weight: 600;
    color: var(--icona-wine);
}


.icona-type-section {
    background-color: #f7f4f2;
    padding: 80px 0;
    position: relative;
    z-index: 10;
    width: 100%;
}

.icona-type-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 clamp(24px, 5vw, 80px);
    background-color: transparent;
    box-sizing: border-box;
}

.icona-video-block {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: clamp(360px, 48vw, 520px);
    background-color: var(--icona-wine);
}

.icona-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; 
}

/* central play/pause button inside the feature video block */
.icona-play-toggle {
    position: absolute;
    right: 18px;
    bottom: 18px;
    transform: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    z-index: 4;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.2s ease;
}

.icona-play-toggle i { color: var(--icona-wine); font-size: 18px; }

.icona-play-toggle:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(0,0,0,0.16); }

/* Slightly smaller on small screens and keep away from main subject */
@media (max-width: 767px) {
    .icona-play-toggle { right: 12px; bottom: 12px; width: 48px; height: 48px; }
    .icona-play-toggle i { font-size: 16px; }
}

/* style audio-toggle inside feature block to be smaller and in the corner */
/* audio-toggle in the feature block removed; gallery audio toggles still use .audio-toggle */

.icona-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.icona-play-btn svg {
    width: 30px;
    height: 30px;
    color: var(--icona-wine);
    margin-left: 3px;
}

.icona-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--icona-white);
}

.icona-type-info {
    padding-left: 20px;
    background-color: transparent;
}

.icona-type-heading {
    font-family: var(--font-clarika);
    font-size: 52px;
    font-weight: 400;
    color: var(--icona-wine);
    margin-bottom: 20px;
    line-height: 1.1;
}

/* Estrellas entre el nombre y la cita en cada tarjeta de testimonio */
.icona-testimonial-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
    margin: 4px 0 10px;
    color: var(--icona-gold-star);
    font-size: 0.8rem;
}

.icona-type-text {
    font-family: var(--font-clarika);
    font-size: 16px;
    line-height: 1.6;
    color: #1d1d1f;
    margin-bottom: 50px;
    max-width: 450px;
}

.icona-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.icona-type-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.icona-type-item:hover {
    transform: translateY(-5px);
}

.icona-type-img-wrap {
    position: relative;
    margin-bottom: 15px;
}

.icona-type-img-box {
    width: 140px;
    height: 180px;
    border-radius: 100px;
    overflow: hidden;
    margin: 0 auto;
    background-color: rgba(143, 65, 68, 0.1);
    position: relative;
}

.icona-type-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.icona-testimonial-play {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    padding: 0;
    background-color: var(--icona-wine-light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(143, 65, 68, 0.25);
    z-index: 2;
}

.icona-testimonial-play i {
    margin-left: 2px;
}

.icona-type-item:hover .icona-testimonial-play {
    background-color: var(--icona-wine);
    transform: translateX(-50%) scale(1.08);
}

.icona-testimonial-play:hover {
    background-color: var(--icona-wine);
}

.icona-testimonial-play:focus-visible {
    outline: 2px solid var(--icona-wine);
    outline-offset: 3px;
}

.icona-type-label {
    font-family: var(--font-clarika);
    font-size: 20px;
    font-weight: 400;
    color: #1d1d1f;
    margin-top: 20px;
    margin-bottom: 0;
}

.icona-type-quote {
    font-family: var(--font-clarika);
    font-size: 14px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0 auto;
    max-width: 220px;
}



.icona-type-grid { grid-template-columns: repeat(3, 1fr); gap: 35px; }


@media (max-width: 1024px) {
    .icona-type-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .icona-type-img-box { width: 120px; height: 120px; border-radius: 50%; }
    .icona-testimonial-play { width: 40px; height: 40px; bottom: -8px; font-size: 14px; }
    .icona-type-label { font-size: 18px; }
    .icona-type-heading { font-size: 44px; }
    .icona-type-text { max-width: 420px; }
    .icona-video-block { max-height: 320px; }
}


@media (max-width: 767px) {
    .icona-type-grid { grid-template-columns: 1fr; gap: 20px; justify-items: center; }
    .icona-type-img-box { width: 110px; height: 110px; border-radius: 50%; }
    .icona-type-label { font-size: 16px; }
    .icona-type-heading { font-size: 34px; text-align: center; }
    .icona-type-info { text-align: center; padding-left: 12px; padding-right: 12px; }
    .icona-video-block { width: 100%; max-width: 720px; height: auto; }
    .icona-type-wrapper { display: flex; flex-direction: column; gap: 16px; align-items: center; }
}




.product-feature-section {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 80px clamp(24px, 5vw, 80px);
    background-color: rgba(143, 65, 68, 1);
    border-radius: 0;
    box-sizing: border-box;
}

.product-feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.product-info-left {
    padding-right: var(--spacing-md);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.stars-rating {
    color: var(--icona-gold-star);
    font-size: 16px;
}

.rating-count,
.reviews-count {
    font-family: var(--font-clarika);
    font-size: 14px;
    color: #FFFFFF;
}

.rating-count {
    opacity: 0.8;
}

.reviews-count {
    font-weight: 600;
}

.product-image-center {
    display: flex;
    justify-content: center;
}

.featured-product-image {
    width: min(380px, 100%);
    height: min(380px, 70vw);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.image-placeholder.featured-necklace {
    background: linear-gradient(135deg, var(--icona-gray-dark) 0%, var(--icona-black) 50%, var(--icona-gray-dark) 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icona-gold);
    font-family: var(--font-clarika);
    font-weight: 500;
    font-size: 18px;
}

.product-details-right {
    padding-left: var(--spacing-md);
}

.price-section {
    margin-bottom: 30px;
    color: #FFFFFF;
}

.price-label {
    font-family: var(--font-clarika);
    font-size: 16px;
    color: #FFFFFF;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.price-value {
    font-family: var(--font-clarika);
    font-size: 32px;
    font-weight: 600;
    color: #FFFFFF;
}

.materials-section {
    margin-bottom: var(--spacing-lg);
}

.materials-title {
    font-family: var(--font-clarika);
    font-size: 16px;
    color: var(--icona-white);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.materials-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.material-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.material-dot {
    width: 8px;
    height: 8px;
    background: var(--icona-wine);
    border-radius: 50%;
    opacity: 0.6;
}

.material-name {
    font-family: var(--font-clarika);
    font-size: 14px;
    color: var(--icona-white);
    opacity: 0.8;
}

.testimonial-section {
    background: rgba(255, 255, 255, 0.12);
    padding: var(--spacing-md);
    border-radius: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.55);
}

.testimonial-text {
    font-family: var(--font-clarika);
    font-size: 14px;
    font-style: italic;
    color: var(--icona-wine);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--icona-wine);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icona-white);
    font-family: var(--font-clarika);
    font-weight: 600;
    font-size: 14px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-clarika);
    font-size: 16px;
    color: var(--icona-wine);
    font-weight: 500;
}

.author-role {
    font-family: var(--font-clarika);
    font-size: 12px;
    color: var(--icona-wine);
    opacity: 0.6;
}


.faq-section {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 96px clamp(24px, 5vw, 80px);
    background: #f7f4f2;
    box-sizing: border-box;
}

.faq-content {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.2fr);
    gap: clamp(40px, 6vw, 80px);
    align-items: flex-start;
    max-width: none;
    width: 100%;
    margin: 0;
}

.faq-header {
    padding-right: var(--spacing-lg);
    position: relative;
    top: auto;
}

.faq-title {
    color: var(--icona-wine);
}

.faq-description {
    color: #1d1d1f;
    opacity: 0.8;
}

.faq-learn-more {
    display: inline-block;
    text-decoration: none;
    color: var(--icona-wine);
    border-color: var(--icona-wine);
}

.faq-learn-more:hover {
    background: var(--icona-wine);
    color: #FFFFFF;
    border-color: var(--icona-wine);
}

.faq-questions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    background: rgba(143, 65, 68, 0.08);
    border-radius: 12px;
    padding: var(--spacing-md);
    cursor: pointer;
    transition: var(--transition-fast);
    border-left: 3px solid rgba(143, 65, 68, 0.45);
}

.faq-item:hover {
    background: rgba(143, 65, 68, 0.14);
    transform: translateX(5px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.faq-icon {
    font-size: 20px;
    opacity: 0.7;
}

.question-text {
    font-family: var(--font-clarika);
    font-size: 16px;
    color: var(--icona-wine);
    font-weight: 500;
}

/* FAQ answer (hidden by default, revealed on toggle) */
.faq-answer {
    margin-top: 10px;
    font-family: var(--font-clarika);
    font-size: 15px;
    line-height: 1.5;
    color: var(--icona-wine);
    opacity: 0; /* hidden */
    max-height: 0; /* collapse */
    overflow: hidden;
    transition: opacity 0.25s var(--transition-fast), max-height 0.35s var(--transition-fast);
}

.faq-item[aria-expanded="true"] .faq-answer {
    opacity: 1;
    max-height: 200px; /* enough for short answers */
}

.faq-item.faq-item--long-answer[aria-expanded="true"] .faq-answer {
    max-height: 1200px;
}

.faq-answer p {
    margin: 0 0 0.65em;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer-note {
    margin-top: 0.75em !important;
    font-size: 14px;
    line-height: 1.55;
    opacity: 0.95;
}

.faq-materials-list {
    margin: 0.4em 0 0.65em;
    padding-left: 1.2em;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25em 1rem;
}

@media (max-width: 520px) {
    .faq-materials-list {
        grid-template-columns: 1fr;
    }
}


.footer {
    background: var(--icona-wine);
    color: var(--icona-white);
    padding: var(--spacing-xxl) 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-content {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 clamp(24px, 5vw, 80px);
    box-sizing: border-box;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: var(--font-clarika);
    font-size: 42px;
    font-weight: 400;
    color: var(--icona-white);
    margin-bottom: 10px;
}

.footer-tagline {
    font-family: var(--font-clarika);
    font-size: 18px;
    color: var(--icona-gray-light);
    margin-bottom: var(--spacing-md);
}

.footer-description {
    font-family: var(--font-clarika);
    font-size: 14px;
    line-height: 1.6;
    color: var(--icona-white);
    opacity: 0.8;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover {
    background: var(--icona-wine);
    transform: translateY(-2px);
}

.footer-social-link span {
    font-size: 18px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.footer-column-title {
    font-family: var(--font-clarika);
    font-size: 18px;
    font-weight: 500;
    color: var(--icona-white);
    margin-bottom: var(--spacing-md);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: var(--spacing-xs);
}

.footer-link {
    font-family: var(--font-clarika);
    font-size: 14px;
    color: var(--icona-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-link:hover {
    opacity: 1;
    color: var(--icona-wine-light);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.contact-icon {
    font-size: 16px;
    width: 20px;
    opacity: 0.8;
}

.contact-text {
    font-family: var(--font-clarika);
    font-size: 14px;
    color: var(--icona-white);
    opacity: 0.8;
}


@media (max-width: 767px) {
    .footer-newsletter {
        background: rgba(255,255,255,0.04);
        padding: 14px;
        border-radius: 18px;
    }
    
    .newsletter-form {
        display: flex;
        gap: 8px;
        align-items: center;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    
    .newsletter-input {
        flex: 1 1 auto;
        padding: 12px 18px;
        border: 1px solid rgba(255,255,255,0.12);
        border-right: none;
        border-radius: 28px 0 0 28px;
        background: rgba(255,255,255,0.06);
        color: var(--icona-white);
        font-size: 14px;
    }

    .newsletter-input::placeholder { color: rgba(255,255,255,0.55); }

    
    .newsletter-button {
        flex: 0 0 auto;
        padding: 12px 18px;
        min-width: 110px;
        border-radius: 0 28px 28px 0;
        background: var(--icona-wine);
        color: var(--icona-white);
        border: 1px solid rgba(0,0,0,0.05);
        border-left: none;
        white-space: nowrap;
        cursor: pointer;
        font-size: 14px;
    }

}

@media (max-width: 480px) {
    
    .newsletter-form { flex-direction: column; gap: 10px; max-width: 420px; }
    .newsletter-input { border-radius: var(--radius-lg); border-right: 1px solid rgba(255,255,255,0.12); }
    .newsletter-button { border-radius: var(--radius-lg); width: 100%; }
}


.footer .footer-newsletter {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 22px;
    padding-right: 22px;
}

.footer .footer-newsletter .newsletter-form {
    min-width: 0 !important;
    max-width: 520px;
    width: 100%;
    box-sizing: border-box;
}

.footer .footer-newsletter .newsletter-input {
    box-sizing: border-box;
}

.footer .footer-newsletter .newsletter-button {
    box-sizing: border-box;
}


.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin: 30px auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
    max-width: 1100px; 
    box-sizing: border-box;
}

.newsletter-title {
    font-family: var(--font-clarika);
    font-size: 24px;
    font-weight: 500;
    color: var(--icona-white);
    margin-bottom: var(--spacing-xs);
}

.newsletter-description {
    font-family: var(--font-clarika);
    font-size: 14px;
    color: var(--icona-white);
    opacity: 0.8;
}


.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    min-width: 0; 
    align-items: center;
    width: 100%;
    justify-content: flex-end; 
}

.newsletter-input {
    flex: 1;
    padding: 12px var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    color: var(--icona-white);
    font-family: var(--font-clarika);
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--icona-wine);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-button {
    background: var(--icona-wine);
    color: var(--icona-white);
    border: none;
    padding: 12px var(--spacing-md);
    border-radius: var(--radius-lg);
    font-family: var(--font-clarika);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.newsletter-button:hover {
    background: var(--icona-wine);
    color: var(--icona-black);
}


@media (max-width: 1024px) {
    .footer-newsletter { padding: 18px; }
    .newsletter-form { max-width: 520px; margin: 0 auto; justify-content: center; }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-family: var(--font-clarika);
    font-size: 13px;
    color: var(--icona-white);
    opacity: 0.6;
}

.footer-bottom-right {
    display: flex;
    gap: 30px;
}

.footer-legal {
    font-family: var(--font-clarika);
    font-size: 13px;
    color: var(--icona-white);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.footer-legal:hover {
    opacity: 1;
}

        
        
        
        
        
        
        
        :root {
            --hamburger-size: 30px;
            --overlay-bg: rgba(0, 0, 0, 0.8);
            --mobile-menu-bg: rgba(143, 65, 68, 0.98);
        }
        
        
        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: var(--hamburger-size);
            height: 22px;
            cursor: pointer;
            z-index: 1002;
            transition: var(--transition-fast);
            background: none;
            border: none;
            padding: 0;
        }
        
        .hamburger-line {
            width: 100%;
            height: 3px;
            background: var(--icona-white);
            border-radius: 2px;
            transition: var(--transition-fast);
            transform-origin: center;
        }
        
        .hamburger-menu.active .hamburger-line:nth-child(1) {
            transform: translateY(9.5px) rotate(45deg);
        }
        
        .hamburger-menu.active .hamburger-line:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        
        .hamburger-menu.active .hamburger-line:nth-child(3) {
            transform: translateY(-9.5px) rotate(-45deg);
        }
        
        
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay-bg);
            backdrop-filter: blur(10px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-medium);
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            max-width: 85vw;
            height: 100%;
            background: var(--mobile-menu-bg);
            backdrop-filter: blur(30px);
            z-index: 1000;
            transition: right var(--transition-medium);
            overflow-y: auto;
            padding-top: 100px;
            -webkit-overflow-scrolling: touch;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-nav-container {
            padding: 0 30px;
        }
        
        .mobile-nav-item {
            margin-bottom: 5px;
        }
        
        .mobile-nav-link {
            display: block;
            font-family: var(--font-clarika);
            font-size: 18px;
            font-weight: 500;
            color: var(--icona-white);
            text-decoration: none;
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition-fast);
            position: relative;
        }
        
        .mobile-nav-link:hover,
        .mobile-nav-link.active {
            color: var(--icona-wine-light);
            padding-left: 15px;
        }
        
        .mobile-nav-link.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 20px;
            background: var(--icona-white);
            border-radius: 2px;
        }
        
        
        .mobile-submenu {
            background: rgba(0, 0, 0, 0.2);
            border-radius: var(--radius-sm);
            margin: 10px 0;
            overflow: hidden;
            max-height: 0;
            transition: max-height var(--transition-medium);
        }
        
        .mobile-nav-item.open .mobile-submenu {
            max-height: 200px;
        }
        
        .mobile-submenu-link {
            display: block;
            font-family: var(--font-clarika);
            font-size: 15px;
            color: var(--icona-white);
            text-decoration: none;
            padding: 12px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition-fast);
            opacity: 0.8;
        }
        
        .mobile-submenu-link:hover {
            background: rgba(255, 255, 255, 0.1);
            opacity: 1;
            padding-left: 25px;
        }
        
        .mobile-submenu-link:last-child {
            border-bottom: none;
        }
        
        
        .mobile-nav-link.has-submenu::after {
            content: '+';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            font-weight: 300;
            transition: var(--transition-fast);
        }
        
        .mobile-nav-item.open .mobile-nav-link.has-submenu::after {
            transform: translateY(-50%) rotate(45deg);
        }
        
        
        .mobile-social {
            padding: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 30px;
        }
        
        .mobile-social-title {
            font-family: var(--font-clarika);
            font-size: 20px;
            color: var(--icona-white);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .mobile-social-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .mobile-social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--icona-white);
            text-decoration: none;
            font-size: 18px;
            transition: var(--transition-fast);
        }
        
        .mobile-social-link:hover {
            background: var(--icona-wine);
            border-color: var(--icona-wine);
            transform: scale(1.1);
        }
        
        
        body.mobile-menu-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }
        
        
        .hamburger-menu:focus,
        .mobile-nav-link:focus {
            outline: 2px solid var(--icona-white);
            outline-offset: 2px;
        }

        
        .mobile-menu-close {
            position: absolute;
            top: 18px;
            right: 18px;
            background: transparent;
            color: var(--icona-white);
            border: none;
            font-size: 36px;
            line-height: 1;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            cursor: pointer;
            z-index: 1003;
            transition: background 0.15s ease, transform 0.12s ease;
        }

        .mobile-menu-close:hover {
            background: rgba(255,255,255,0.06);
            transform: scale(1.02);
        }

        
        @media (max-width: 1023px) {
            .mobile-menu-close { color: var(--icona-white); }
        }
        
        
        
        

        
        @media (max-width: 1400px) {
            .content-wrapper { padding: 40px 60px; }
            .main-title { font-size: 160px; margin-bottom: 80px; }
            .featured-card { width: 420px; }
        }

        
        @media (max-width: 1200px) {
            .content-wrapper { padding: 36px 48px; }
            .main-title { font-size: 140px; margin-bottom: 60px; }
            .featured-card { width: 380px; }
            .featured-image { height: 200px; }
            .product-thumb { height: 180px; }
            .right-content { right: 30px; }
            .bg-image { object-position: 50% 30%; }
        }

        
        @media (max-width: 1023px) {
            .content-wrapper { padding: 28px 32px; }
            .main-title { font-size: 110px; margin-bottom: 48px; }
            .left-content { max-width: 520px; }
            .featured-card { width: 340px; }
            .featured-image { height: 180px; }
            .product-thumb { height: 160px; }
            .right-content { right: 22px; }
            
            .hamburger-menu { display: flex; position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
            header .nav-container { display: none; }
            .bg-image { object-position: 50% 25%; }
        }

        
        @media (max-width: 767px) {
            .content-wrapper { padding: 18px 18px; min-height: 100vh; }
            .main-content { flex-direction: column; align-items: flex-start; gap: 18px; }
            .left-content { width: 100%; max-width: none; }
            .main-title { font-size: 72px; margin-bottom: 18px; line-height: 0.95; }
            .main-title, .collection-title, .section-title { word-break: break-word; }
            .subtitle { font-size: 18px; }
            .description { font-size: 16px; max-width: 100%; }
            .right-content {
                position: static !important;
                right: auto !important;
                bottom: auto !important;
                display: block !important;
                width: 100% !important;
                flex-direction: column !important;
                gap: 12px !important;
                align-items: center !important;
                margin-top: 10px !important;
            }
            .featured-card { width: calc(100% - 32px); max-width: 520px; padding: 12px; }
            .products-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
            .featured-image { height: 160px; }
            .product-thumb { height: 140px; }
            .bg-image { object-position: 50% 12%; filter: brightness(0.45); }
            .hamburger-menu { display: flex; position: absolute; right: 0; top: 50%; transform: translateY(-50%); }

            /* Mobile overlap fixes: force header and nav into normal flow and reset transformed/absolute media that can overlap */
            header { position: relative; z-index: 12; }
            /* hide desktop nav that is absolutely positioned and can overlap content */
            .nav-container, header .nav-container { display: none !important; }

            /* Ensure image stacks and featured cards don't use transforms or absolute positioning on mobile */
            .image-stack, .image-stack .big-image, .image-stack .small-image, .featured-card {
                position: static !important;
                transform: none !important;
                max-width: 100% !important;
                width: 100% !important;
                margin: 0 auto 12px !important;
                z-index: auto !important;
            }

            /* keep product-image relative so .audio-toggle can be positioned over the video */
            .product-image { position: relative !important; overflow: hidden !important; }

            /* Make sure embedded videos/images do not overflow their containers */
            .image-stack .big-image img, .image-stack .small-image img, .featured-image img {
                transform: none !important;
                max-height: none !important;
                width: 100% !important;
                height: auto !important;
            }
        }

        
        @media (max-width: 480px) {
            .content-wrapper { padding: 14px 12px; }
            .main-title { font-size: 56px; margin-bottom: 12px; letter-spacing: -1px; }
            .logo-image { height: 100px; }
            .featured-card { width: 100%; padding: 10px; border-radius: 16px; }
/*            .products-grid { grid-template-columns: 1fr; } */
            .product-thumb { height: 120px; }
            .card-title { font-size: 22px; }
            .view-more-btn { padding: 8px 18px; font-size: 13px; }
            .bg-image { object-position: 50% 0%; transform: scale(1.02); }
        }

        
        @media (max-width: 1023px) {
            .mobile-menu { width: 100%; max-width: 100vw; }
        }

        
        @media (max-width: 767px) {
            
            .section-two-content {
                display: flex !important;
                flex-direction: column;
                gap: 20px;
                align-items: stretch;
                padding: 48px 20px;
            }

            
            .content-center { order: 1; text-align: center; padding: 0 6px; }

            
            .main-image-card { order: 2; margin: 0 auto; width: 100%; max-width: 820px; }
            .main-product-image { height: 300px; }

            
            .content-right { order: 3; display: flex; justify-content: center; padding: 0 6px; }
                .product-images-stack { flex-direction: row; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
                .product-image-item { width: 56%; max-width: 360px; height: 200px; margin: 8px auto; border-radius: 16px; display: block; }

            
            .see-more-btn, .view-more-btn { margin: 8px auto 0; }
        }

        
        
        

        
        @media (max-width: 1200px) {
            
            .section-two-content {
                grid-template-columns: 1fr 420px; 
                gap: 36px;
                padding: 0 20px;
                align-items: start;
            }
            .content-left { grid-column: 1 / 2; }
            .content-center { grid-column: 2 / 3; align-self: start; text-align: left; padding-left: 6px; max-width: 420px; }
            .content-right { grid-column: 2 / 3; margin-top: 18px; display: flex; justify-content: flex-start; }
            .main-product-image { height: 420px; }
            .product-image-item { width: 220px; height: 300px; }
        }

        
        @media (min-width: 768px) and (max-width: 1023px) {
            .section-two-content {
                grid-template-columns: 1fr 360px; 
                gap: 28px;
                padding: 0 16px;
                align-items: start;
            }
            .content-center { grid-column: 2 / 3; padding-left: 8px; max-width: 340px; text-align: left; }
            .content-right { grid-column: 2 / 3; margin-top: 14px; display: flex; justify-content: flex-start; }
            .section-title { font-size: 40px; line-height: 1.1; }
            .section-description { font-size: 15px; }
            .main-product-image { height: 380px; }
            .product-image-item { width: 200px; height: 260px; }
        }

        
        @media (min-width: 768px) and (max-width: 1024px) {
            .section-two {
                padding: 0;
            }
            .section-two-content {
                display: flex !important;
                flex-direction: column;
                gap: 22px;
                align-items: center;
                padding: 0 12px;
            }

            
            .content-center { order: 1; text-align: center; padding: 0 8px; max-width: 720px; }
            .section-title { font-size: 40px; margin-bottom: 12px; }
            .section-description { max-width: 720px; font-size: 15px; }

            
            .main-image-card { order: 2; margin: 0 auto; width: 100%; max-width: 820px; }
            .main-product-image { height: 360px; }

            
            .content-right { order: 3; display: flex; justify-content: center; padding: 0 8px; }
            .product-images-stack { flex-direction: row; gap: 14px; justify-content: center; flex-wrap: wrap; }
            .product-image-item { width: 56%; max-width: 360px; height: 200px; margin: 8px auto; border-radius: 16px; }

            
            .learn-more-btn, .view-more-btn { margin: 12px auto 0; }
        }

        
        @media (max-width: 767px) {
            .section-two {
                padding: 0;
            }
            .section-two-content {
                display: grid;
                grid-template-columns: 1fr;
                gap: 26px;
                align-items: stretch;
                padding: 0 12px;
            }

            
            .main-image-card {
                margin: 0 auto;
                width: 100%;
                max-width: 820px;
            }
            .main-product-image { height: 320px; }

            
            .content-center { padding: 0; text-align: center; }
            .section-title { font-size: 36px; margin-top: 8px; }
            .section-description { max-width: 100%; }

            
            .product-images-stack { flex-direction: row; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
            .product-image-item { width: 100%; max-width: 360px; height: 220px; margin: 8px auto; border-radius: 16px; display: block; }
            .product-image-item img { object-position: center; }
        }

        
        @media (max-width: 480px) {
            .section-two { padding: 0; }
            .section-two-content { gap: 18px; padding: 40px 16px; }
            .main-product-image { height: 260px; }
            .section-title { font-size: 30px; }
            
            .product-image-item { width: 100%; max-width: 420px; height: 220px; margin: 10px auto; border-radius: 16px; display: block; }
            
            .product-images-stack .product-image-item:first-child {
                transform: none;
            }
            .product-images-stack { flex-direction: column; gap: 12px; align-items: center; }
        }

        
        
        
        @media (max-width: 767px) {

            .product-feature-section {
    margin: 0;
    padding: 48px 20px;
    border-radius: 0;
    box-sizing: border-box;
    background-color: rgba(143, 65, 68, 1);
}

/* Section-two: force simple stacking on smaller screens to avoid overlapping elements */
@media (max-width: 900px) {
    .section-two { padding: 0; }
    .section-two-content { grid-template-columns: 1fr; gap: 22px; padding: 40px 16px; }
    .main-image-card { margin: 0 auto; width: 100%; max-width: 820px; }
    .features-wrapper { margin-bottom: 0; }
}

/* Fix footer spacing on small screens so it always sits at the bottom with no extra gap */
@media (max-width: 767px) {
    html, body { height: 100%; }
    /* avoid reintroducing 100vh which breaks mobile viewport calculations */
    .main-container { min-height: 0; flex: 1 0 auto; }
    .footer { padding-bottom: 18px; /* keep small bottom padding if needed */ }
    .footer-bottom { padding: 18px 0; }
    /* ensure sticky/absolute elements inside sections don't create extra height */
    .image-stack, .image-stack .big-image { max-height: none; }
}

            
            .product-feature-content {
                max-width: 920px;
                margin: 0 auto;
                display: flex !important;
                flex-direction: column;
                gap: 18px;
                align-items: center;
                padding: 12px;
                box-sizing: border-box;
            }

            
            .product-info-left { order: 1; width: 100%; max-width: 720px; text-align: center; padding: 0; }
            .product-image-center { order: 2; width: 100%; display: flex; justify-content: center; }
            .product-details-right { order: 3; width: 100%; max-width: 720px; padding: 0; }

            
            .featured-product-image { width: 100%; max-width: 480px; height: auto; aspect-ratio: 1/1; }
            .featured-product-image img { width: 100%; height: 100%; object-fit: cover; }

            
            .featured-product-title { font-size: 28px; line-height: 1.15; margin-bottom: 10px; }
            .product-description { font-size: 15px; line-height: 1.6; margin-bottom: 14px; }
            .price-value { font-size: 28px; }

            .learn-more-featured { margin: 10px auto 0; display: inline-block; }
            .testimonial-section { width: 100%; }
        }




@media (max-width: 767px) {
    .section-three { padding: 0; }

    
    .collection-container {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 48px 20px;
        border-radius: 0;
        align-items: center;
    }

    .collection-header {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 6px 4px;
    }

    .collection-title {
        font-size: 34px;
        line-height: 1.12;
        margin-bottom: 12px;
    }

    .collection-description { margin: 0 auto 14px; font-size: 15px; }

    .see-more-btn { margin: 12px auto 0; }

    
    .products-showcase {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        width: 100%;
    }

    .product-image { height: 260px; }
    .product-name, .product-price { text-align: center; }
}

@media (max-width: 480px) {
    .collection-title { font-size: 30px; }
    .collection-container { padding: 40px 16px; border-radius: 0; }
    .product-image { height: 220px; }
    .collection-description { font-size: 14px; }
}

            
            @media (max-width: 1200px) {
                .features-row {
                    grid-template-columns: repeat(3, minmax(0, 1fr));
                    gap: 0;
                    padding: 0 12px;
                }

                .feature-item { padding: 12px 14px; }
                .feature-icon-wrap { width: 64px; height: 64px; margin-bottom: 10px; }
                .feature-title { font-size: 15px; }
                .feature-description { font-size: 12px; min-height: 4em; }
            }

            @media (max-width: 900px) {
                .features-wrapper { padding: 24px 16px 20px; margin-bottom: 0; }
                .features-row {
                    grid-template-columns: 1fr;
                    gap: 0;
                    max-width: 400px;
                }
                .feature-item:not(:last-child)::after {
                    display: none;
                }
                .feature-item {
                    text-align: center;
                    padding: 18px 16px;
                    border-radius: 0;
                    background: transparent;
                    box-shadow: none;
                    min-height: auto;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
                }
                .feature-item:last-child { border-bottom: none; }
                .feature-item:hover { transform: none; }
                .feature-icon-wrap { width: 64px; height: 64px; }
                .feature-title {
                    min-height: auto;
                    display: block;
                    max-width: none;
                    margin-bottom: 6px;
                }
                .feature-description {
                    min-height: auto;
                    max-width: none;
                }
            }

            @media (max-width: 767px) {
                .features-row {
                    grid-template-columns: 1fr;
                    gap: 0;
                    padding: 0 12px;
                }
                .feature-item {
                    text-align: center;
                    padding: 16px 12px;
                    border-radius: 0;
                    background: transparent;
                    box-shadow: none;
                    min-height: auto;
                }
                .feature-title {
                    min-height: auto;
                    display: block;
                    max-width: none;
                }
                .feature-description {
                    min-height: auto;
                    max-width: none;
                }

                
                    .footer-content {
                        padding: 0 clamp(16px, 4vw, 24px);
                    }

                    
                    .footer-top {
                        display: flex;
                        flex-direction: column;
                        gap: 20px;
                        align-items: center;
                        text-align: center;
                    }

                    .footer-brand { max-width: 100%; }
                    .footer-links {
                        display: grid;
                        grid-template-columns: repeat(2, 1fr);
                        gap: 18px;
                        width: 100%;
                        justify-items: center;
                    }

                    .footer-column-title { font-size: 16px; }
                    .footer-link { font-size: 14px; }

                    .footer-contact { align-items: center; }

                    
                    .footer-newsletter {
                        flex-direction: column;
                        align-items: stretch;
                        gap: 12px;
                        padding: 16px;
                    }

                    .newsletter-form { min-width: 0; display: flex; gap: 8px; }
                    .newsletter-input { flex: 1; }

                    
                    .footer-bottom {
                        flex-direction: column;
                        gap: 8px;
                        text-align: center;
                        padding: 18px 0;
                    }

                    .footer-bottom-right { gap: 12px; }
                .feature-item:not(:last-child)::after { display: none; }
                .feature-icon-wrap { width: 56px; height: 56px; margin: 0 auto 10px; }
                .feature-title { font-size: 15px; margin-bottom: 6px; }
                .feature-description { font-size: 13px; line-height: 1.45; max-width: 520px; margin: 0 auto; opacity: 0.9; }

                /* Stack product-feature columns for mobile and fix spacing */
                .product-feature-section { padding: 48px 16px; margin-bottom: 0; }
                .product-feature-content {
                    display: flex;
                    flex-direction: column;
                    gap: 18px;
                    align-items: center;
                    text-align: center;
                }
                .product-info-left, .product-details-right {
                    width: 100%;
                    padding: 0;
                    max-width: 720px;
                }
                .product-info-left { order: 1; }
                .product-image-center { order: 2; width: 100%; display: flex; justify-content: center; }
                .product-details-right { order: 3; }
                .featured-product-image { width: 100%; max-width: 320px; height: auto; }
                .price-value { font-size: 28px; }
                .product-rating { justify-content: center; }
                .view-more-btn, .learn-more-featured { margin: 0 auto; }
            }


/* =========================================================
   HOME RESPONSIVE — overrides finales (prioridad alta)
   ========================================================= */

/* Tablet */
@media (max-width: 1024px) {
    .page-home .content-wrapper {
        padding: 28px 28px;
        min-height: 100vh;
    }

    @supports (height: 100dvh) {
        .page-home .content-wrapper { min-height: 100dvh; }
    }

    .page-home .hero-brand .logo-image {
        height: 120px;
        margin: 0;
    }

    .page-home .collection-container {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 64px clamp(24px, 4vw, 48px);
        text-align: center;
    }

    .page-home .collection-header {
        max-width: 560px;
        margin: 0 auto;
    }

    .page-home .products-showcase {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        width: 100%;
    }

    .page-home .product-image {
        height: clamp(220px, 28vw, 320px);
    }

    .page-home .icona-type-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 clamp(24px, 4vw, 48px);
    }

    .page-home .icona-type-info {
        padding: 0;
        text-align: center;
    }

    .page-home .icona-type-text {
        margin-left: auto;
        margin-right: auto;
        max-width: 520px;
    }

    .page-home .icona-type-heading {
        font-size: clamp(34px, 5vw, 44px);
    }

    .page-home .icona-type-heading::after {
        margin-left: auto;
        margin-right: auto;
    }

    .page-home .icona-video-block {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
        height: clamp(280px, 48vw, 420px);
        max-height: none;
    }

    .page-home .icona-type-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 720px;
        margin: 0 auto;
    }

    .page-home .faq-section {
        padding: 72px clamp(24px, 4vw, 48px);
    }

    .page-home .faq-content {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: none;
        width: 100%;
    }

    .page-home .faq-header {
        text-align: center;
        padding-right: 0;
        max-width: 560px;
        margin: 0 auto;
    }

    .page-home .faq-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .page-home .faq-questions {
        max-width: 720px;
        margin: 0 auto;
        width: 100%;
    }

    .page-home .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-home .footer-brand {
        max-width: none;
        text-align: center;
    }

    .page-home .footer-social {
        justify-content: center;
    }

    .page-home .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .page-home .section-two,
    .page-home .section-three,
    .page-home .section-four {
        padding: 0 !important;
        overflow-x: hidden;
    }

    .page-home .content-wrapper {
        padding: 18px 16px !important;
        min-height: 100vh !important;
    }

    @supports (height: 100dvh) {
        .page-home .content-wrapper { min-height: 100dvh !important; }
    }

    .page-home .hero-section {
        min-height: 100vh;
    }

    @supports (height: 100dvh) {
        .page-home .hero-section { min-height: 100dvh; }
    }

    .page-home .hero-brand .logo-image {
        height: 88px !important;
        margin: 0 !important;
    }

    .page-home .hero-nav {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .page-home .hero-nav-prev { left: 10px; }
    .page-home .hero-nav-next { right: 10px; }
    .page-home .hero-dots { bottom: 20px; gap: 8px; }

    .page-home .features-wrapper {
        padding: 28px 16px 24px !important;
        margin: 0 !important;
    }

    .page-home .features-row {
        grid-template-columns: 1fr !important;
        max-width: 420px;
        margin: 0 auto;
        gap: 0;
        padding: 0;
    }

    .page-home .feature-item {
        padding: 18px 12px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .page-home .feature-item:last-child {
        border-bottom: none;
    }

    .page-home .feature-item:not(:last-child)::after {
        display: none !important;
    }

    .page-home .feature-icon-wrap {
        width: 56px;
        height: 56px;
        margin-bottom: 10px;
    }

    .page-home .feature-title {
        font-size: 15px;
        min-height: auto;
        max-width: none;
        display: block;
    }

    .page-home .feature-description {
        font-size: 13px;
        min-height: auto;
        max-width: none;
    }

    .page-home .section-two {
        overflow: visible !important;
    }

    .page-home .designer-story {
        padding: 48px 16px !important;
        gap: 28px;
        overflow: visible;
    }

    .page-home .designer-story-title {
        font-size: clamp(30px, 8vw, 36px);
    }

    .page-home .designer-story-lead {
        font-size: 15px;
    }

    .page-home .designer-story-text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .page-home .designer-story-portrait {
        height: min(420px, 85vw);
    }

    .page-home .designer-story-detail {
        width: min(34%, 130px);
        left: 12px;
        bottom: 12px;
    }

    .page-home .collection-container {
        display: flex !important;
        flex-direction: column;
        gap: 28px;
        padding: 48px 16px !important;
        align-items: center;
        text-align: center;
    }

    .page-home .collection-header {
        max-width: 100%;
        margin: 0 auto;
    }

    .page-home .collection-title {
        font-size: clamp(28px, 8vw, 34px);
        margin-bottom: 12px;
    }

    .page-home .collection-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .page-home .collection-description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .page-home .products-showcase {
        grid-template-columns: 1fr !important;
        gap: 16px;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .page-home .product-image {
        height: 280px !important;
        position: relative !important;
        overflow: hidden !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .page-home .product-image video,
    .page-home .product-image img {
        position: absolute !important;
        inset: 0;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        margin: 0 !important;
        transform: none !important;
    }

    .page-home .product-video-link {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .page-home .icona-type-section {
        padding: 48px 0;
    }

    .page-home .icona-type-wrapper {
        display: flex !important;
        flex-direction: column;
        gap: 28px;
        padding: 0 16px !important;
        align-items: center;
    }

    .page-home .icona-video-block {
        width: 100%;
        max-width: none;
        height: 260px;
        border-radius: 14px;
    }

    .page-home .icona-type-info {
        text-align: center;
        padding: 0 !important;
        width: 100%;
    }

    .page-home .icona-type-heading {
        font-size: clamp(28px, 8vw, 34px);
    }

    .page-home .icona-type-text {
        font-size: 15px;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .page-home .icona-type-grid {
        grid-template-columns: 1fr !important;
        gap: 28px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .page-home .icona-type-img-box {
        width: 120px;
        height: 150px;
        border-radius: 80px;
    }

    .page-home .icona-type-quote {
        max-width: 260px;
    }

    .page-home .faq-section {
        padding: 48px 16px !important;
    }

    .page-home .faq-content {
        display: flex !important;
        flex-direction: column;
        gap: 24px;
        padding: 0 !important;
        width: 100%;
    }

    .page-home .faq-header {
        text-align: center;
        padding: 0 !important;
        max-width: none;
    }

    .page-home .faq-title {
        font-size: clamp(28px, 8vw, 34px);
        margin-bottom: 12px;
    }

    .page-home .faq-description {
        font-size: 15px;
        margin: 0 auto 20px;
        max-width: 100%;
    }

    .page-home .faq-questions {
        max-width: none;
        width: 100%;
        gap: 10px;
        padding: 0;
    }

    .page-home .faq-item {
        width: 100%;
        padding: 14px 16px;
        transform: none !important;
    }

    .page-home .faq-item:hover {
        transform: none !important;
    }

    .page-home .question-text {
        font-size: 14px;
        line-height: 1.4;
    }

    .page-home .faq-answer {
        font-size: 14px;
    }

    .page-home .footer-content {
        padding: 0 16px !important;
    }

    .page-home .footer-top {
        display: flex !important;
        flex-direction: column;
        gap: 28px;
        align-items: center;
        text-align: center;
        margin-bottom: 32px;
    }

    .page-home .footer-brand {
        max-width: 100%;
    }

    .page-home .footer-logo {
        font-size: 34px;
    }

    .page-home .footer-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .page-home .footer-links {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
        width: 100%;
        justify-items: center;
    }

    .page-home .footer-contact {
        grid-column: 1 / -1;
        align-items: center;
        width: 100%;
    }

    .page-home .footer-column-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .page-home .footer-link,
    .page-home .contact-text {
        font-size: 13px;
    }

    .page-home .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 20px 0;
    }

    .page-home .learn-more-btn,
    .page-home .see-more-btn,
    .page-home .faq-learn-more {
        padding: 12px 28px;
        font-size: 12px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .page-home .content-wrapper {
        padding: 14px 12px !important;
    }

    .page-home .hero-brand .logo-image {
        height: 72px !important;
    }

    .page-home .hero-nav {
        width: 32px;
        height: 32px;
        font-size: 12px;
        background: rgba(143, 65, 68, 0.55);
    }

    .page-home .hero-nav-prev { left: 8px; }
    .page-home .hero-nav-next { right: 8px; }

    .page-home .features-wrapper {
        padding: 24px 12px 20px !important;
    }

    .page-home .designer-story {
        padding: 40px 14px !important;
    }

    .page-home .designer-story-portrait {
        height: 340px;
    }

    .page-home .designer-story-detail {
        width: 110px;
    }

    .page-home .collection-container {
        padding: 40px 14px !important;
    }

    .page-home .product-image {
        height: 240px !important;
    }

    .page-home .icona-type-section {
        padding: 40px 0;
    }

    .page-home .icona-type-wrapper {
        padding: 0 14px !important;
    }

    .page-home .icona-video-block {
        height: 220px;
    }

    .page-home .faq-section {
        padding: 40px 14px !important;
    }

    .page-home .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-home .footer-contact {
        grid-column: auto;
    }
}

/* Landscape phones: keep hero usable */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
    .page-home .hero-brand .logo-image {
        height: 56px !important;
    }

    .page-home .content-wrapper {
        min-height: 100vh !important;
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .page-home .hero-dots {
        bottom: 12px;
    }
}

