/* Minification failed. Returning unminified contents.
(1129,9): run-time error CSS1031: Expected selector, found '}'
(1129,9): run-time error CSS1025: Expected comma or open brace, found '}'
 */
/* =====================
   RESET & BASE
===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Manrope', sans-serif;
    color: #332F2A;
}

/* =====================
   TOPBAR
===================== */
.topbar {
    background: #1A1815;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================
   HEADER
===================== */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
}

.header {
    border-bottom: 1px solid #E8E5E0;
    background: white;
}

.header__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}

.header__logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #1A1815;
    text-decoration: none;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.header__search {
    flex: 1;
    max-width: 500px;
    display: none;
}

@media (min-width: 1024px) {
    .header__search { display: block; }
}

.search-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #F5F2ED;
    border: none;
    border-radius: 100px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #6F6A61;
    cursor: pointer;
    transition: background 0.2s;
}
.search-trigger:hover { background: #E8E5E0; }

.header__actions {
    display: none;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .header__actions { display: flex; }
}

.header__action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    color: #4A4740;
    text-decoration: none;
    transition: color 0.2s;
}
.header__action:hover { color: #2C4A3E; }

.header__action-label {
    font-size: 14px;
    display: none;
}

@media (min-width: 1024px) {
    .header__action-label { display: inline; }
}

.header__menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 1024px) {
    .header__menu-toggle { display: none; }
}

.menu-line {
    width: 100%;
    height: 2px;
    background: #1A1815;
    transition: all 0.3s;
}
.menu-line:nth-child(2) {
    width: 70%;
    margin-left: auto;
}

/* =====================
   MOBILE DRAWER
===================== */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
}
.drawer[hidden] { display: none; }

.drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 24, 21, 0.6);
    backdrop-filter: blur(4px);
}

.drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: white;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.drawer__header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    border-bottom: 1px solid #E8E5E0;
}

.drawer__close {
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: #4A4740;
}

.drawer__search {
    padding: 20px;
    border-bottom: 1px solid #E8E5E0;
}
.drawer__search input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E8E5E0;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
}

.drawer__nav { padding: 20px; }

.drawer__item { border-bottom: 1px solid #E8E5E0; }

.drawer__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    color: #332F2A;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.drawer__link svg { transition: transform 0.3s; }
.drawer__link.active svg { transform: rotate(180deg); }

.drawer__submenu {
    display: none;
    padding-left: 20px;
    padding-bottom: 16px;
}
.drawer__submenu.is-open {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.drawer__submenu a {
    color: #4A4740;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 0;
}

.drawer__item--cta {
    border: none;
    margin-top: 24px;
}
.drawer__item--cta .drawer__link {
    background: #2C4A3E;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    justify-content: center;
}



/* =====================
   NAVIGATION
===================== */
.nav {
    background: white;
    border-bottom: 1px solid #E8E5E0;
}

.nav__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav__list {
    list-style: none;
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 16px 0;
}

.nav__item { position: relative; }

.nav__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: none;
    border: none;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #332F2A;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
}
.nav__link:hover {
    background: #F5F2ED;
    color: #2C4A3E;
}
.nav__link.active {
    background: #F5F2ED;
    color: #2C4A3E;
}

.nav__arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}
.nav__link.active .nav__arrow { transform: rotate(180deg); }

.nav__item--cta .nav__link {
    background: #2C4A3E;
    color: white;
}
.nav__item--cta .nav__link:hover { background: #1F3329; }

@media (max-width: 1023px) {
    .nav { display: none; }
}

/* =====================
   MEGA MENU
===================== */
.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: white;
    border-top: 1px solid #E8E5E0;
    box-shadow: 0 12px 28px rgba(26, 24, 21, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
.mega-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 24px;
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.mega-menu__title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6F6A61;
    margin-bottom: 16px;
}

.mega-menu__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.mega-menu__links a {
    color: #332F2A;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
    padding: 4px 0;
}
.mega-menu__links a:hover { color: #2C4A3E; }

.mega-menu__card {
    background: linear-gradient(135deg, #2C4A3E 0%, #1F3329 100%);
    border-radius: 12px;
    padding: 32px;
    color: white;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mega-menu__card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin-bottom: 8px;
}

.mega-menu__card-desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.mega-menu__card-cta {
    color: white;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
}

/* =====================
   BREADCRUMB
===================== */
.breadcrumb {
    background: #FAF8F5;
    border-bottom: 1px solid #E8E5E0;
    padding: 14px 24px;
}

.breadcrumb__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6F6A61;
}
.breadcrumb__inner a {
    color: #6F6A61;
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb__inner a:hover { color: #2C4A3E; }
.breadcrumb__inner span { color: #332F2A; font-weight: 500; }
.breadcrumb__sep { opacity: 0.4; }


  /* =====================
           HERO
        ===================== */
        .hero {
            background: linear-gradient(135deg, #2C4A3E 0%, #1F3329 50%, #3D5F4F 100%);
            color: white;
            padding: 120px 24px;
            text-align: center;
        }
        
        .hero__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(40px, 6vw, 72px);
            font-weight: 400;
            margin-bottom: 24px;
            line-height: 1.1;
        }
        
        .hero__subtitle {
            font-size: 20px;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }
        
        .hero__actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* =====================
           BUTTONS
        ===================== */
        .btn {
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 8px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-block;
            font-family: 'Manrope', sans-serif;
        }
        
        .btn--primary {
            background: white;
            color: #2C4A3E;
        }
        .btn--primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        
        .btn--secondary {
            background: transparent;
            color: white;
            border-color: white;
        }
        .btn--secondary:hover {
            background: white;
            color: #2C4A3E;
        }
        


/* =====================
   BUTTONS
===================== */
.btn {
    padding: 14px 28px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn--primary {
    background: white;
    color: #2C4A3E;
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.btn--secondary {
    background: transparent;
    color: white;
    border-color: white;
}
.btn--secondary:hover {
    background: white;
    color: #2C4A3E;
}

.btn--white {
    background: white;
    color: #2C4A3E;
}
.btn--white:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn--outline {
    background: transparent;
    color: #332F2A;
    border-color: #332F2A;
}
.btn--outline:hover {
    background: #1A1815;
    color: white;
}

.btn--outline-white {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.btn--small {
    padding: 10px 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
      /* Bottone Vedi Tutte */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: #332F2A;
    border: 2px solid #E8E5E0;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-view-all:hover {
    border-color: #2C4A3E;
    background: #2C4A3E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 74, 62, 0.2);
}
  /* Bottone BIANCO */
        .btn--white {
            background: white;
            color: #2C4A3E;
        }

        .btn--white:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .btn--outline-white {
            background: transparent;
            color: white;
            border-color: rgba(255,255,255,0.4);
        }

        .btn--outline-white:hover {
            border-color: white;
            background: rgba(255,255,255,0.1);
        }







/* Se vuoi la freccia */
.btn-view-all::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.2s;
}

.btn-view-all:hover::after {
    transform: translateX(4px);
}
        /* =====================
           CONTENT
        ===================== */
        .content {
            padding: 80px 24px;
            max-width: 1440px;
            margin: 0 auto;
        }
        
        .content h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 48px;
            margin-bottom: 24px;
            text-align: center;
        }
        
        .content p {
            font-size: 18px;
            line-height: 1.7;
            color: #4A4740;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* =====================
           COLLECTIONS GRID
        ===================== */
        .collections-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }
        
        .collection-card {
            aspect-ratio: 6/7;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s;
            cursor: pointer;
        }
        .collection-card:hover { transform: translateY(-8px); }
        
        .collection-card__bg-fallback {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #D1CCC4, #A8A39A);
        }
        
        .collection-card__img-default {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.5s ease;
            opacity: 1;
        }
        
        .collection-card__img-hover {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.5s ease;
            opacity: 0;
        }
        
        .collection-card:hover .collection-card__img-default { opacity: 0; }
        .collection-card:hover .collection-card__img-hover { opacity: 1; }
        
        .collection-card__content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 32px;
            background: linear-gradient(to top, rgba(26, 24, 21, 0.9) 60%, transparent);
            color: white;
            z-index: 1;
        }
        
        .collection-card__content a {
            display: block;
            color: white;
            text-decoration: none;
        }
        
        .collection-card__content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            margin-bottom: 8px;
            color: white;
        }
        
        .collection-card__content p {
            font-size: 14px;
            opacity: 0.9;
            color: white;
            text-align: left;
            margin-bottom: 12px;
        }
        
        .collection-card__cta {
            font-size: 14px;
            font-weight: 500;
            color: white;
            text-decoration: underline;
            text-underline-offset: 4px;
            opacity: 0;
            transform: translateY(6px);
            transition: opacity 0.3s, transform 0.3s;
            display: block;
        }
        .collection-card:hover .collection-card__cta {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* =====================
           PROJECT STEPS
        ===================== */
        .project-steps {
            background: #F5F2ED;
            padding: 80px 24px;
        }
        
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1440px;
            margin: 0 auto;
        }
        
        .step {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .step:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }
        
        .step__number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 64px;
            color: #E8E5E0;
            line-height: 1;
            margin-bottom: 24px;
        }
        
        .step h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            margin-bottom: 16px;
            color: #1A1815;
        }
        
        .step p {
            color: #4A4740;
            line-height: 1.7;
            text-align: left;
            margin: 0;
        }
        
        /* =====================
           INSPIRATIONS
        ===================== */
        .inspirations {
            background: #FAF8F5;
            padding: 80px 24px;
        }
        
        .inspirations-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1440px;
            margin: 48px auto 0;
        }
        
        @media (max-width: 1024px) {
            .inspirations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 640px) {
            .inspirations-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .inspiration-card {
            aspect-ratio: 4/5;
            background: linear-gradient(135deg, #2C4A3E, #1F3329);
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s;
        }
        
        .inspiration-card:hover {
            transform: scale(1.02);
        }
        
        .inspiration-card.large {
            grid-column: span 2;
            aspect-ratio: 16/10;
        }
        
        @media (max-width: 1024px) {
            .inspiration-card.large {
                grid-column: span 1;
            }
        }
        
        .inspiration-card__content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 32px;
            background: linear-gradient(to top, rgba(26, 24, 21, 0.85), transparent);
            color: white;
        }
        
        .inspiration-card__content .tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            backdrop-filter: blur(8px);
        }
        
        .inspiration-card__content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            color: white;
        }

     /* =====================
           CATALOGS
        ===================== */
        .catalogs {
            padding: 80px 24px;
            background: white;
        }
        
        .catalogs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            max-width: 1440px;
            margin: 48px auto 0;
        }
        
        .catalog-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .catalog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }
        
        .catalog-image {
            aspect-ratio: 3/4;
            background: linear-gradient(135deg, #E8E5E0, #D1CCC4);
        }
        
        .catalog-content {
            padding: 24px;
        }
        
        .catalog-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            margin-bottom: 8px;
            color: #1A1815;
        }
        
        .catalog-content p {
            color: #4A4740;
            margin-bottom: 20px;
            text-align: left;
            font-size: 15px;
        }

 
        /* =====================
           MATERIALS
        ===================== */
        .materials {
            padding: 80px 24px;
            background: #FAF8F5;
        }
        
        .materials-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 48px;
            max-width: 1440px;
            margin-left: auto;
            margin-right: auto;
        }
        
        @media (max-width: 768px) {
            .materials-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        
        .materials-list {
            list-style: none;
        }
        
        .materials-list li {
            padding: 12px 0;
            font-size: 16px;
            color: #332F2A;
            border-bottom: 1px solid #E8E5E0;
        }
        
        .materials-visual div {
            background: linear-gradient(135deg, #D1CCC4, #A8A39A);
            height: 400px;
            border-radius: 12px;
        }
        


        
        /* =====================
           CTA BANNER
        ===================== */
        .cta-banner {
            background: linear-gradient(135deg, #2C4A3E, #1F3329);
            padding: 80px 24px;
            text-align: center;
        }





        /* Intro Section */
        .intro-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 24px;
        }

        .intro-section__label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #B8906A;
            margin-bottom: 20px;
            display: block;
        }

        .intro-section__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 400;
            color: #1A1815;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .intro-section__text {
            font-size: 16px;
            line-height: 1.85;
            color: #4A4740;
            margin-bottom: 20px;
        }

        /* =====================
           PRODUCTS SECTION
        ===================== */
        .products-section {
            background: #FAF8F5;
            padding: 80px 0;
        }

        .products-section__container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .products-section__header {
            text-align: center;
            margin-bottom: 56px;
        }

        .products-section__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 5vw, 48px);
            color: #1A1815;
            margin-bottom: 16px;
        }

        .products-section__subtitle {
            font-size: 16px;
            color: #6F6A61;
            max-width: 600px;
            margin: 0 auto;
        }

  /* Product Info */
        .product-info {
            max-width: 1440px;
            margin: 0 auto;
            padding: 80px 24px;
        }

        .product-info__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
        }


        /* =====================
           PRODUCT INFO
        ===================== */

        .product-info__label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #B8906A;
            margin-bottom: 20px;
            display: block;
        }

        .product-info__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 400;
            color: #1A1815;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .product-info__text {
            font-size: 16px;
            line-height: 1.8;
            color: #4A4740;
            margin-bottom: 32px;
        }

        /* =====================
           PRODUCT GRID (same style as collections page)
        ===================== */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        @media (max-width: 1024px) {
            .products-grid 
        }

        @media (max-width: 640px) {
            .products-grid 
        }

        .product-card {
            aspect-ratio: 6/7;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-8px);
        }

        .product-card__bg-fallback {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #D1CCC4, #A8A39A);
        }

        .product-card__img-default {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.5s ease;
            opacity: 1;
        }

        .product-card__img-hover {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.5s ease;
            opacity: 0;
        }

        .product-card:hover .product-card__img-default 
        .product-card:hover .product-card__img-hover 

        .product-card__content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 28px;
            background: linear-gradient(to top, rgba(26,24,21,0.9) 60%, transparent);
            color: white;
            z-index: 1;
        }

        .product-card__content a {
            display: block;
            color: white;
            text-decoration: none;
        }

        .product-card__content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            margin-bottom: 6px;
            color: white;
        }

        .product-card__content p {
            font-size: 13px;
            opacity: 0.85;
            color: white;
            text-align: left;
            margin-bottom: 10px;
        }

        .product-card__cta {
            font-size: 13px;
            font-weight: 500;
            color: white;
            text-decoration: underline;
            text-underline-offset: 4px;
            opacity: 0;
            transform: translateY(6px);
            transition: opacity 0.3s, transform 0.3s;
            display: block;
        }

        .product-card:hover .product-card__cta {
            opacity: 1;
            transform: translateY(0);
        }

        /* Badge "Novità" */
        .product-card__badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #B8906A;
            color: white;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 6px 14px;
            border-radius: 20px;
            z-index: 2;
        }

/* =====================
   PRODUCT GROUP SECTION
===================== */
.product-group {
    background: white;
    padding: 80px 0;
}

.product-group:nth-child(even) {
    background: #FAF8F5;
}

.product-group__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.product-group__header {
    max-width: 900px;
    margin: 0 auto 56px;
}

.product-group__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 44px);
    color: #1A1815;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-group__description {
    font-size: 16px;
    line-height: 1.85;
    color: #4A4740;
    margin-bottom: 16px;
}

/* =====================
   PRODUCT GRID (2 colonne)
===================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .products-grid { 
        grid-template-columns: 1fr; 
    }
}

/* =====================
   PRODUCT CARD
===================== */
.product-card {
    aspect-ratio: 6/7;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card__bg-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #D1CCC4, #A8A39A);
}

.product-card__img-default {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    opacity: 1;
}

.product-card__img-hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.product-card:hover .product-card__img-default { opacity: 0; }
.product-card:hover .product-card__img-hover { opacity: 1; }

.product-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(26,24,21,0.9) 60%, transparent);
    color: white;
    z-index: 1;
}

.product-card__content a {
    display: block;
    color: white;
    text-decoration: none;
}

.product-card__content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    margin-bottom: 6px;
    color: white;
}

.product-card__content p {
    font-size: 13px;
    opacity: 0.85;
    color: white;
    text-align: left;
    margin-bottom: 10px;
}

.product-card__cta {
    font-size: 13px;
    font-weight: 500;
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s;
    display: block;
}

.product-card:hover .product-card__cta {
    opacity: 1;
    transform: translateY(0);
}



/* =====================
   PRODUCTS AREA
===================== */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.products-count {
    font-size: 14px;
    color: #6F6A61;
}

.products-count strong {
    color: #1A1815;
    font-weight: 600;
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #6F6A61;
}

.products-sort select {
    padding: 8px 16px;
    border: 1px solid #E8E5E0;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #332F2A;
    background: white;
    cursor: pointer;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1280px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .products-grid { grid-template-columns: 1fr; }
}
 /* =====================
           CTA SECTION
        ===================== */
        .cta-section {
            background: linear-gradient(135deg, #2C4A3E, #1F3329);
            padding: 80px 24px;
            text-align: center;
        }

        .cta-section__inner {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-section__label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #B8906A;
            margin-bottom: 20px;
            display: block;
        }

        .cta-section__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 5vw, 48px);
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cta-section__text {
            font-size: 17px;
            color: rgba(255,255,255,0.9);
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .cta-section__actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* =====================
           BUTTONS
        ===================== */
        .btn {
            padding: 14px 28px;
            font-family: 'Manrope', sans-serif;
            font-size: 15px;
            font-weight: 500;
            border-radius: 8px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-block;
        }

        .btn--white {
            background: white;
            color: #2C4A3E;
        }

        .btn--white:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .btn--outline-white {
            background: transparent;
            color: white;
            border-color: rgba(255,255,255,0.4);
        }

        .btn--outline-white:hover {
            border-color: white;
            background: rgba(255,255,255,0.1);
        }


/* =====================
   LONG TEXT SECTION
===================== */
.text-section {
    background: #FAF8F5;
    padding: 80px 24px;
    border-top: 1px solid #E8E5E0;
}

.text-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.text-section__intro {
    text-align: center;
    margin-bottom: 64px;
}

.text-section__label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #B8906A;
    margin-bottom: 16px;
}

.text-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    color: #1A1815;
    line-height: 1.15;
    margin-bottom: 24px;
}

.text-section__lead {
    font-size: 18px;
    line-height: 1.8;
    color: #4A4740;
    max-width: 760px;
    margin: 0 auto;
}

.text-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

@media (max-width: 768px) {
    .text-section__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.text-section__block-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: #1A1815;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #B8906A;
    display: inline-block;
}

.text-section__block p {
    font-size: 15px;
    line-height: 1.85;
    color: #4A4740;
    margin-bottom: 16px;
}

.text-section__block p:last-child {
    margin-bottom: 0;
}

.text-section__quote {
    background: white;
    border-left: 4px solid #B8906A;
    border-radius: 0 12px 12px 0;
    padding: 40px 48px;
    margin-bottom: 56px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.text-section__quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    font-style: italic;
    color: #2C4A3E;
    margin-bottom: 20px;
    line-height: 1.3;
}

.text-section__quote p {
    font-size: 15px;
    line-height: 1.8;
    color: #4A4740;
    margin: 0;
    max-width: 800px;
}

   /* Images inside text blocks */
        .text-section__image {
            margin: 32px 0;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .text-section__image img {
            width: 100%;
            height: auto;
            display: block;
        }



/* =====================
   BOTTOM TEXT SECTION
===================== */
.bottom-text {
    background: #FAF8F5;
    padding: 80px 24px;
}

.bottom-text__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.bottom-text__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    color: #1A1815;
    margin-bottom: 24px;
    line-height: 1.2;
}

.bottom-text__content {
    font-size: 15px;
    line-height: 1.85;
    color: #4A4740;
}

.bottom-text__content p {
    margin-bottom: 20px;
}

.bottom-text__content p:last-child {
    margin-bottom: 0;
}

.bottom-text__content strong {
    color: #1A1815;
    font-weight: 600;
    display: block;
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 16px;
}

/* Stili per i sottotitoli nel testo */
.bottom-text__content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1A1815;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #B8906A;
    display: inline-block;
}


 /* =====================
           FOOTER
        ===================== */
        .footer {
            background: #1A1815;
            color: #A8A39A;
            padding: 80px 24px 40px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .footer-title {
            color: white;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-links a {
            color: #A8A39A;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-links a:hover { color: white; }
        
        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }
        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #A8A39A;
            transition: all 0.2s;
        }
        .footer-social a:hover {
            background: white;
            color: #1A1815;
            transform: translateY(-2px);
        }
        
        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-bottom p {
            margin: 0;
            text-align: left;
            font-size: 14px;
        }
        
        .footer-legal {
            display: flex;
            gap: 24px;
        }
        .footer-legal a {
            color: #A8A39A;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }
        .footer-legal a:hover { color: white; }

 /* =====================
           HERO GALLERY
        ===================== */


        .hero-gallery {
            position: relative;
            background: #FAF8F5;
            overflow: hidden;
        }

        .hero-gallery__container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 60px 24px;
        }

        .hero-gallery__header {
            text-align: center;
            margin-bottom: 48px;
        }

        .hero-gallery__label {
            display: inline-block;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #B8906A;
            margin-bottom: 16px;
        }

        .hero-gallery__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(40px, 6vw, 64px);
            font-weight: 400;
            color: #1A1815;
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .hero-gallery__subtitle {
            font-size: 18px;
            color: #4A4740;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .hero-gallery__slider {
            position: relative;
            overflow: hidden;
        }

        .hero-gallery__track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        }

        .hero-gallery__slide {
            flex: 0 0 100%;
            aspect-ratio: 21/9;
            position: relative;
            overflow: hidden;
            border-radius: 16px;
        }

        @media (max-width: 768px) {
            .hero-gallery__slide { aspect-ratio: 16/10; }
        }

        .hero-gallery__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background: linear-gradient(135deg, #D1CCC4, #A8A39A);
        }

        .hero-gallery__arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: 2px solid rgba(26,24,21,0.15);
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(8px);
            color: #332F2A;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            z-index: 10;
        }
        .hero-gallery__arrow:hover {
            border-color: #2C4A3E;
            background: #2C4A3E;
            color: white;
        }
        .hero-gallery__arrow--prev { left: 24px; }
        .hero-gallery__arrow--next { right: 24px; }

        .hero-gallery__dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 32px;
        }

        .hero-gallery__dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #D1CCC4;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            padding: 0;
        }
        .hero-gallery__dot.active {
            background: #2C4A3E;
            width: 32px;
            border-radius: 5px;
        }



        /* =====================
           COLLECTION INFO
        ===================== */
        .collection-info {
            max-width: 1440px;
            margin: 0 auto;
            padding: 80px 24px;
        }

        .collection-info__grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
        }

        @media (max-width: 968px) {
            .collection-info__grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
        }

        .collection-info__label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #B8906A;
            margin-bottom: 20px;
            display: block;
        }

        .collection-info__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 400;
            color: #1A1815;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .collection-info__text {
            font-size: 16px;
            line-height: 1.8;
            color: #4A4740;
            margin-bottom: 32px;
        }

        .collection-info__features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        @media (max-width: 640px) {
            .collection-info__features { grid-template-columns: 1fr; }
        }

        .collection-info__feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .collection-info__feature-icon {
            width: 36px;
            height: 36px;
            background: #F5F2ED;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #2C4A3E;
        }

        .collection-info__feature-text {
            font-size: 14px;
            color: #332F2A;
            line-height: 1.5;
        }

        .collection-info__stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            background: #FAF8F5;
            border-radius: 12px;
            padding: 40px;
        }

        @media (max-width: 640px) {
            .collection-info__stats { grid-template-columns: 1fr; }
        }

        .collection-info__stat {
            text-align: center;
        }

        .collection-info__stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 48px;
            font-weight: 600;
            color: #2C4A3E;
            display: block;
            line-height: 1;
            margin-bottom: 8px;
        }

        .collection-info__stat-label {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #6F6A61;
        }

/* ============================================================
   HERO SLIDER
   ============================================================ */

.hero-slider {
    position: relative;
    overflow: hidden;
    height: 80vh;
    min-height: 500px;
}

.hero-slider__track {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-slider__slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Immagine sfondo slide */
.hero-slider__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

/* Fallback colore se manca l'immagine */
.hero-slider__slide:nth-child(1) .hero-slider__img-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2C4A3E 0%, #1F3329 100%);
}
.hero-slider__slide:nth-child(2) .hero-slider__img-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3D5F4F 0%, #2C4A3E 100%);
}
.hero-slider__slide:nth-child(3) .hero-slider__img-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4A4740 0%, #2C4A3E 100%);
}

.hero-slider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26, 24, 21, 0.7) 0%,
        rgba(26, 24, 21, 0.2) 60%,
        transparent 100%
    );
}

.hero-slider__content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    max-width: 580px;
    opacity: 0;
    transform: translateY(calc(-50% + 20px));
    transition: opacity 0.6s 0.3s ease, transform 0.6s 0.3s ease;
}

.hero-slider__slide.active .hero-slider__content {
    opacity: 1;
    transform: translateY(-50%);
}

.hero-slider__label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #B8906A;
    margin-bottom: 20px;
}

.hero-slider__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-slider__subtitle {
    font-size: 17px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-slider__btn {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: #2C4A3E;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}
.hero-slider__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Frecce navigazione */
.hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    text-decoration: none;
}
.hero-slider__arrow:hover {
    border-color: white;
    background: rgba(255,255,255,0.25);
}
.hero-slider__arrow--prev { left: 32px; }
.hero-slider__arrow--next { right: 32px; }

@media (max-width: 640px) {
    .hero-slider__arrow--prev { left: 16px; }
    .hero-slider__arrow--next { right: 16px; }
    .hero-slider__arrow { width: 40px; height: 40px; }
}

/* Pallini navigazione */
.hero-slider__dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.hero-slider__dot.active {
    background: white;
    width: 28px;
    border-radius: 4px;
}

/* Contatore slide */
.hero-slider__counter {
    position: absolute;
    bottom: 32px;
    right: 40px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    letter-spacing: 2px;
    z-index: 10;
}
.hero-slider__counter strong {
    color: white;
    font-size: 18px;
    font-weight: 400;
}



/* ============================================================
   INTRO SECTION
   ============================================================ */

.intro-section {
    padding: 80px 24px;
    background: white;
}

.intro-section__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 768px) {
    .intro-section__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.intro-section__label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #B8906A;
    margin-bottom: 20px;
}

.intro-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #1A1815;
}

.intro-section__text {
    font-size: 16px;
    line-height: 1.8;
    color: #4A4740;
    margin-bottom: 36px;
}

.intro-section__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: #332F2A;
}

.intro-feature__icon {
    width: 40px;
    height: 40px;
    background: #F5F2ED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2C4A3E;
}

.intro-section__visual {
    position: relative;
    padding-bottom: 32px;
    padding-right: 20px;
}

/* Immagine principale */
.intro-section__img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    /* Fallback se manca immagine */
    background: linear-gradient(135deg, #D1CCC4, #A8A39A);
    min-height: 300px;
}

.intro-section__badge {
    position: absolute;
    bottom: 0px;
    left: -16px;
    background: #2C4A3E;
    color: white;
    padding: 24px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.intro-section__badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    color: #B8906A;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.intro-section__badge-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    line-height: 1.4;
}


/* ============================================================
   SLIDER ISPIRAZIONI
   ============================================================ */

.slider-section {
    background: #FAF8F5;
    padding: 80px 0;
    overflow: hidden;
}

.slider-section__header {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.slider-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    color: #1A1815;
    line-height: 1.15;
}

.slider-section__subtitle {
    font-size: 15px;
    color: #6F6A61;
    max-width: 380px;
    line-height: 1.6;
    text-align: right;
}

@media (max-width: 768px) {
    .slider-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .slider-section__subtitle { text-align: left; max-width: 100%; }
}

.slider-track {
    display: flex;
    gap: 24px;
    padding: 0 24px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}
.slider-track::-webkit-scrollbar { display: none; }

.slider-slide {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
}
@media (max-width: 1024px) {
    .slider-slide { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 640px) {
    .slider-slide { flex: 0 0 calc(85%); }
}

/* CARD CON IMMAGINE */
.slider-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.slider-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Contenitore immagine card */
.slider-card__img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #2C4A3E, #1F3329); /* fallback */
}

/* Immagine vera */
.slider-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.slider-card:hover .slider-card__img {
    transform: scale(1.06);
}

/* Overlay scuro sfumato sull'immagine */
.slider-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,24,21,0.4), transparent 60%);
}

/* Label sovrapposta sull'immagine */
.slider-card__img-tag {
    position: absolute;
    bottom: 16px;
    left: 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 1;
}

/* Testo sotto l'immagine */
.slider-card__content {
    padding: 24px 28px 28px;
}

.slider-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #1A1815;
    margin-bottom: 10px;
    line-height: 1.2;
}

.slider-card__desc {
    font-size: 14px;
    color: #6F6A61;
    line-height: 1.6;
}

/* Controlli slider */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding: 0 24px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #E8E5E0;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #332F2A;
}
.slider-btn:hover {
    border-color: #2C4A3E;
    background: #2C4A3E;
    color: white;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1CCC4;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}
.slider-dot.active {
    background: #2C4A3E;
    width: 24px;
    border-radius: 4px;
}

/* =====================
   SIDEBAR
===================== */
.sidebar {
    position: sticky;
    top: 160px;
}

@media (max-width: 1023px) {
    .sidebar {
        position: static;
    }
}

.sidebar__title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6F6A61;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E8E5E0;
}

.filter-group {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E8E5E0;
}

.filter-group:last-of-type {
    border-bottom: none;
}

.filter-group__title {
    font-size: 14px;
    font-weight: 600;
    color: #1A1815;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.filter-group__arrow {
    transition: transform 0.2s;
    color: #6F6A61;
    flex-shrink: 0;
}

.filter-group.open .filter-group__arrow {
    transform: rotate(180deg);
}

.filter-group__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-group__options.hidden {
    display: none;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #332F2A;
    transition: color 0.2s;
}

.filter-option:hover {
    color: #2C4A3E;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2C4A3E;
    cursor: pointer;
    flex-shrink: 0;
}

.filter-option__count {
    margin-left: auto;
    font-size: 12px;
    color: #A8A39A;
}

.filter-reset {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #B8906A;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Manrope', sans-serif;
    margin-top: 8px;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* =====================
   PRODUCTS AREA
===================== */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.products-count {
    font-size: 14px;
    color: #6F6A61;
}

.products-count strong {
    color: #1A1815;
    font-weight: 600;
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #6F6A61;
}

.products-sort select {
    padding: 8px 16px;
    border: 1px solid #E8E5E0;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #332F2A;
    background: white;
    cursor: pointer;
}

/* =====================
   COLLECTION CARDS
===================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1280px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .products-grid { grid-template-columns: 1fr; }
}

.collection-card {
    aspect-ratio: 6/7;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

.collection-card:hover {
    transform: translateY(-8px);
}

.collection-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #B8906A;
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
}

.collection-card__bg-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #D1CCC4, #A8A39A);
}

.collection-card__img-default {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    opacity: 1;
}

.collection-card__img-hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.collection-card:hover .collection-card__img-default { opacity: 0; }
.collection-card:hover .collection-card__img-hover   { opacity: 1; }

.collection-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(26,24,21,0.9) 60%, transparent);
    color: white;
    z-index: 1;
}

.collection-card__content a {
    display: block;
    color: white;
    text-decoration: none;
}

.collection-card__content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 4px;
    color: white;
}

.collection-card__content p {
    font-size: 13px;
    opacity: 0.85;
    color: white;
    text-align: left;
    margin-bottom: 12px;
}

.collection-card__cta {
    font-size: 13px;
    font-weight: 500;
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s;
    display: block;
}

.collection-card:hover .collection-card__cta {
    opacity: 1;
    transform: translateY(0);
}


/* =====================
   LONG TEXT SECTION
===================== */
.text-section {
    background: #FAF8F5;
    padding: 80px 24px;
    border-top: 1px solid #E8E5E0;
}

.text-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Intro */
.text-section__intro {
    text-align: center;
    margin-bottom: 64px;
}

.text-section__label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #B8906A;
    margin-bottom: 16px;
}

.text-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    color: #1A1815;
    line-height: 1.15;
    margin-bottom: 24px;
}

.text-section__lead {
    font-size: 18px;
    line-height: 1.8;
    color: #4A4740;
    max-width: 760px;
    margin: 0 auto;
}

/* Grid 2 colonne */
.text-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

@media (max-width: 768px) {
    .text-section__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.text-section__block-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: #1A1815;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #B8906A;
    display: inline-block;
}

.text-section__block p {
    font-size: 15px;
    line-height: 1.85;
    color: #4A4740;
    margin-bottom: 16px;
}

.text-section__block p:last-child {
    margin-bottom: 0;
}

/* Citazione centrale */
.text-section__quote {
    background: white;
    border-left: 4px solid #B8906A;
    border-radius: 0 12px 12px 0;
    padding: 40px 48px;
    margin-bottom: 56px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.text-section__quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    font-style: italic;
    color: #2C4A3E;
    margin-bottom: 20px;
    line-height: 1.3;
}

.text-section__quote p {
    font-size: 15px;
    line-height: 1.8;
    color: #4A4740;
    margin: 0;
    max-width: 800px;
}

/* =====================
   BOTTOM CTA
===================== */
.bottom-cta {
    background: linear-gradient(135deg, #2C4A3E, #1F3329);
    padding: 80px 24px;
    text-align: center;
}

.bottom-cta__inner {
    max-width: 700px;
    margin: 0 auto;
}

.bottom-cta__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #B8906A;
    margin-bottom: 20px;
    display: block;
}

.bottom-cta__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 52px);
    color: white;
    margin-bottom: 20px;
    line-height: 1.15;
}

.bottom-cta__text {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 40px;
}

.bottom-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

