/* 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;
        }

/* ============================================================
   CTA STRIP
   ============================================================ */

.cta-strip {
    background: #1A1815;
    padding: 48px 24px;
}

.cta-strip__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-strip__text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: white;
    margin-bottom: 8px;
    font-weight: 400;
}

.cta-strip__text p {
    font-size: 15px;
    color: #A8A39A;
}

.cta-strip__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Bottoni */
.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);
}


/* =====================
   CATALOG LAYOUT
===================== */
.catalog-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 1023px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SLIDESHOW GLOBAL FIX
   Fix for jumping dots and arrows
   ============================================ */

/* Slick Slider Dots Fix */
.slick-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 100;
    margin: 0;
    padding: 0;
    list-style: none;
}

.slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    margin: 0;
    border: 2px solid #fff;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    outline: none;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background: #fff;
    transform: scale(1.2);
}

.slick-dots li button:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Slick Slider Arrows Fix */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    outline: none;
    transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slick-prev {
    left: 30px;
}

.slick-next {
    right: 30px;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 30px;
    line-height: 1;
    color: #fff;
    opacity: 1;
}

.slick-prev:before {
    content: '←';
}

.slick-next:before {
    content: '→';
}

/* Prevent jumping during transitions */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Additional stability fixes */
.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}

/* Responsive */
@media (max-width: 768px) {
    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }
    
    .slick-prev {
        left: 15px;
    }
    
    .slick-next {
        right: 15px;
    }
    
    .slick-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .slick-dots li {
        width: 10px;
        height: 10px;
    }
    
    .slick-dots li button {
        width: 10px;
        height: 10px;
    }
}

