/* ProLegOmen - Custom Styles */
/* Qui andranno tutti i tuoi stili personalizzati */

/* Import Fonts */
@import url('fonts.css');

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

/* Variabili CSS personalizzate */
:root {
    --primary-color: #22372C;
    --secondary-color: #B4AA1F;
    --accent-color: #B4AA1F;
    --text-dark: #22372C;
    --text-light: #526A5E;
    --bg-light: #E3E1DB;
    --bg-white: #ffffff;
    --bg-primary: #E3E1DB;
    --gray: #E3E1DB;
    --pomodoro-color: #BC4C35;
    --zenzero-color: #C8A152;
}

/* Stili di base */
html {
 overflow-x: hidden;
}

/* Tailwind Custom Colors */
.bg-primary {
    background-color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-bg-light {
    color: var(--bg-light);
}

.bg-pomodoro {
    background-color: var(--pomodoro-color);
}

.text-pomodoro {
    color: var(--pomodoro-color);
}

.bg-zenzero {
    background-color: var(--zenzero-color);
}

.text-zenzero {
    color: var(--zenzero-color);
}

/* Il Progetto Section */
.il-progetto-section {
    padding: 80px 0;
}

.il-progetto-container {
    position: relative;
}

/* Il Progetto - CTA (stesso stile della products-section) */
.il-progetto-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 130%;
    color: white;
    background-color: var(--primary-color);
    text-decoration: none;
    padding: 24px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.il-progetto-cta .megamenu-arrow {
    width: 19px;
    height: auto;
}

.il-progetto-cta:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.il-progetto-cta:hover .megamenu-arrow {
    filter: brightness(0) saturate(100%) invert(14%) sepia(23%) saturate(1233%) hue-rotate(125deg) brightness(97%) contrast(85%);
}

/* Il Progetto - Cards */
.il-progetto-card {
    background-color: rgba(168, 161, 32, 0.1); /* secondary al 10% */
    border-radius: 24px;
    padding: 40px;
}

.il-progetto-card-icon {
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
}

.il-progetto-card-title {
    font-family: 'Akkordeon', sans-serif;
    font-size: 60px;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.il-progetto-card-description {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    line-height: 150%;
    color: #526A5E;
}

/* Processo Section - Linee tratteggiate */
.processo-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    width: 6px;
    height: 54px;
    background-image: url('../assets/illustrazioni/line-dotted.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.processo-step:nth-child(2)::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 108px;
    width: 6px;
    height: 54px;
    background-image: url('../assets/illustrazioni/line-dotted.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

/* Processo Section - Font specifici per colonna sinistra */
.processo-subtitle {
    font-family: 'Akkordeon', sans-serif;
    font-size: 34px;
    letter-spacing: 1px;
}

.processo-title {
    font-family: 'Haboro', sans-serif;
    font-size: 60px;
    line-height: 110%;
}

.processo-description {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
}

/* Processo Section - Font specifici per numeri e testi */
.processo-step-number {
    font-family: 'Akkordeon', sans-serif;
    letter-spacing: 1px;
}

.processo-step-text {
    font-family: 'Akkordeon', sans-serif;
    letter-spacing: 2px;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-color);
    overflow-x: hidden;
}

/* Container principale */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}


/* Heading styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 800;
    font-style: normal;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Font utility classes */
.font-haboro {
    font-family: 'Haboro', var(--font-tertiary);
    font-weight: 800;
    font-style: italic;
}

.font-akkordeon {
    font-family: 'Akkordeon', var(--font-tertiary);
    font-weight: 600;
    font-style: normal;
}

.font-nunito {
    font-family: var(--font-tertiary);
    font-weight: 600;
}

.font-nunito-bold {
    font-family: var(--font-tertiary);
    font-weight: 700;
}

.font-nunito-extrabold {
    font-family: var(--font-tertiary);
    font-weight: 800;
}

.font-amatic {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: normal;
}

.font-amatic-bold {
    font-family: var(--font-display);
    font-weight: 700;
    font-style: normal;
}

/* Special heading with Amatic SC */
.heading-display {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.1;
    text-transform: lowercase;
    letter-spacing: -0.02em;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

section {
    scroll-margin-top: 80px;
}

section a {
    transition: all 0.3s ease;
}

/* Coming Soon specific styles */
.coming-soon-logo {
    max-width: 100%;
    height: auto;
}

.coming-soon-title {
    line-height: 0.9;
    letter-spacing: -0.02em;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 1140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home .hero-section{
    background-image: url('../assets/immagini/sfondo-hero.jpg');
}

.hero-section-lingotto{
    background-image: url('../assets/immagini/sfondo-hero-lingotto.jpg');
}

.hero-section-crema{
    background-image: url('../assets/immagini/sfondo-hero-crema.jpg');
}

.dx-prodotto-hero{
    display: none!important;
}

.hero-left {
    position: absolute;
    left: -40px;
    top: -350px;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right {
    position: absolute;
    right: -40px;
    top: -100px;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-side-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 20;
}

.hero-logo {
    margin-bottom: 48px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-container {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-text-container:hover .hero-arrow {
    animation: bounce-slow 1.5s ease-in-out infinite;
}

.hero-text-container:hover .hero-text {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.hero-text {
    font-family: 'Akkordeon', var(--font-tertiary);
    font-weight: 600;
    font-size: 60px;
    line-height: 85%;
    color: var(--text-dark);
    margin: 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hero-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hero-arrow:hover {
    animation: bounce-slow 1.5s ease-in-out infinite;
}

@keyframes bounce-slow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

.products-container{
    margin-top: -200px;
    position: relative;
}

/* Products Section specific styles */
.products-menu-container .megamenu-content {
    background: transparent;
    box-shadow: none;
    justify-content: center;
}

.products-menu-container .megamenu-image-container {
    display: none;
}

.products-menu-container .megamenu-column {
    width: 400px;
}

.products-menu-container .megamenu-title {
    color: white;
    text-align: center;
    font-size: 60px;
    margin-bottom: 24px;
}

.products-menu-container .megamenu-subtitle {
    color: white;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 56px;
}

.products-menu-container .megamenu-cta {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    justify-content: flex-start;
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0;
    width: 100%;
    position: relative;
}

.products-menu-container .cta-text {
    font-size: 20px;
}

.products-menu-container .megamenu-cta {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    justify-content: flex-start;
    height: 72px;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.products-menu-container .megamenu-column:first-child .megamenu-cta {
    padding-left: 44px;
}

.products-menu-container .megamenu-column:last-child .megamenu-cta {
    padding-left: 24px;
}

.products-menu-container .megamenu-arrow {
    width: auto;
    height: 14px;
    margin-left: 8px;
}


.products-menu-container .megamenu-cta:hover {
    background-color: white;
    color: var(--primary-color);
}

.products-menu-container .megamenu-cta:hover .megamenu-arrow {
    filter: brightness(0) saturate(100%) invert(14%) sepia(23%) saturate(1233%) hue-rotate(125deg) brightness(97%) contrast(85%);
}

.products-menu-container .megamenu-arrow {
    filter: brightness(0) saturate(100%) invert(14%) sepia(23%) saturate(1233%) hue-rotate(125deg) brightness(97%) contrast(85%);
}

.products-menu-container .megamenu-divider {
    background-color: rgba(227, 225, 219, 0.5);
}

.products-menu-container .cta-product-image {
    width: auto;
    object-fit: contain;
}

.products-menu-container .cta-crema-image {
    height: 135px;
}

.products-menu-container .cta-lingotto-image {
    height: 110px;
}

/* Header  */
.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Fixed quando si scrolla */
header.fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background-color: #E3E1DB !important;
    border-bottom: 1px solid #d1d1d1;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

/* Placeholder per mantenere lo spazio dell'header */
.header-placeholder {
    height: 80px;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Transizione più fluida per il contenuto */
main {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.lingotto .nav-link, .crema .nav-link {
    color: white;
}

/* Menu fixed: nav-link primary color su crema e lingotto */
.lingotto header.fixed .nav-link, 
.crema header.fixed .nav-link {
    color: var(--primary-color) !important;
}

/* Menu fixed: freccia dropdown primary color su crema e lingotto */
.lingotto header.fixed #dropdown-arrow, 
.crema header.fixed #dropdown-arrow {
    filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(2000%) hue-rotate(120deg) brightness(0.2) contrast(1.2) !important;
}

/* Mega Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.nav-link-with-dropdown {
    display: flex;
    align-items: center;
}

.cont-megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 16px;
}

.nav-item-dropdown:hover .cont-megamenu {
    opacity: 1;
    visibility: visible;
}

.megamenu-content {
    background: white;
    border-radius: 12px;
    padding: 48px;
    display: flex;
    align-items: flex-start;
    gap: 48px;
    box-shadow: 0 8px 18px hsba(210, 50%, 31%, 0.2);
    min-width: 596px; /* 250px * 2 + 48px gap + 48px padding * 2 */
}

.megamenu-column {
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.megamenu-image-container {
    margin-bottom: 4px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.megamenu-image {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.megamenu-title {
    font-family: 'Haboro', var(--font-tertiary);
    font-weight: 800;
    font-style: normal;
    font-size: 30px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.megamenu-subtitle {
    font-family: 'Amatic SC', var(--font-tertiary);
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: center;
}

.megamenu-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Nunito Sans', var(--font-tertiary);
    font-weight: 800;
    font-size: 16px;
    line-height: 130%;
    color: white;
    background-color: var(--primary-color);
    text-decoration: none;
    padding: 8px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.megamenu-cta:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.megamenu-cta:hover .megamenu-arrow {
    filter: brightness(0) saturate(100%) invert(14%) sepia(23%) saturate(1233%) hue-rotate(125deg) brightness(97%) contrast(85%);
}

.megamenu-arrow {
    width: 16px;
    height: 12px;
}

.megamenu-divider {
    width: 2.5px;
    background-color: var(--primary-color);
    opacity: 0.1;
    align-self: stretch;
    margin: 0 24px;
}

/* Footer Styles */
.cont-footer {
    padding: 80px 0 0 0;
}

.footer-main-text {
    font-family: 'Amatic SC', var(--font-tertiary);
    font-weight: 700;
    font-size: 60px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 48px;
    text-align: center;
}

.footer-info-text {
    font-family: 'Nunito Sans', var(--font-tertiary);
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    color: var(--primary-color);
    opacity: 0.5;
    text-align: center;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.sfondo-footer{
    background-image: url(../assets/immagini/divisorio-verde.png);
    background-size: 170%;
    background-position: top;
    background-repeat: no-repeat;
    height: 480px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.sfondo-footer div {
    position: relative;
}

.footer-elementi{
    position: absolute;
    top: -3%;
    left: -3%;
    width: 106%;
    height: 100%;
    background-image: url(../assets/immagini/elementi-footer.png);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
}

.sfondo-footer .chicco{
    position: absolute;
    top: 110px;
    left: 10%;
}


/* Claim Section */
.claim-section {
    padding: 80px 0;
    background-color: white;
}

.claim-container {
    position: relative;
}

.claim-card {
    background-color: #f6f5ea;
    border-radius: 24px;
    padding: 40px;
}

.claim-main-title {
    font-family: 'Haboro', sans-serif;
    font-size: 60px;
    line-height: 110%;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.claim-main-subtitle {
    font-family: 'Akkordeon', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 150%;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.claim-column-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 34px;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: left;
}

.claim-column-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    color: var(--primary-color);
}

.claim-list {
    list-style: none;
    padding: 0;
}

.claim-list-item {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    color: var(--primary-color);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.claim-list-item::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.claim-documents-title {
    font-family: 'Akkordeon', sans-serif;
    font-size: 34px;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.claim-document-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background-color: rgb(168 161 32 / 20%);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    width: 250px;
    flex-shrink: 0;
    flex: 1;
}

.claim-document-card:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.claim-document-card:hover .claim-document-text {
    color: white;
}

.claim-document-card:hover .claim-document-icon img {
    filter: brightness(0) invert(1);
}

.claim-document-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.claim-document-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.claim-document-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
}

/* Products Section */
.products-section {
    background-color: transparent;
    padding: 0 0 360px 0;
    position: relative;
}

.products-decoration {
    position: absolute;
    z-index: 10;
}

.products-decoration-right {
    left: 40px;
    bottom: 40%;
    width: 50px;
}

.products-decoration-left {
    right: 0px;
    width: 130px;
    top: 25%;
}

/* Benefici Section */
.benefici-section {
    background-color: white;
    height: 400px;
    position: relative;
    width: 100%;
}

.benefici-divisorio-container {
    position: absolute;
    top: -50%;
    left: -3%;
    width: 106%;
    height: 100%;
}

.benefici-divisorio-bg {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
}

/* Card Benefici */
.cont-card-benefici {
    display: flex;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    align-items: flex-start;
    top: -240px;

}

.card-benefici {
    flex: 1;
    height: 500px;
    padding: 0 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.card-benefici-1 {
    background-color: var(--primary-color);
    top: 0;
    padding: 64px;
    box-shadow: 0 -6px 18px 0 #2D4137;
}

.card-benefici-2 {
    background-color: var(--secondary-color);
    top: 48px;
    box-shadow: 0 6px 18px 0 #A8A120;
}

.card-benefici-3 {
    background-color: var(--gray);
    top: -40px;
    box-shadow: 0 7px 18px 0 #D4D3CD;
}

.card-benefici-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 2;
}

.card-benefici-1 .card-benefici-text {
    color: white;
}

.card-benefici-2 .card-benefici-text,
.card-benefici-3 .card-benefici-text {
    color: var(--primary-color);
}

.card-benefici-title {
    font-family: 'Akkordeon', sans-serif;
    font-size: 60px;
    line-height: 85%;
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.card-benefici-title-1 {
    color: white;
}

.card-benefici-title-2,
.card-benefici-title-3 {
    color: var(--primary-color);
}

/* Sfondi delle card benefici */
.card-benefici-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: 0.8;
    z-index: 1;
}

.card-bg-1 {
    background-image: url('../assets/immagini/leaf-transparent.png');
    bottom: -120px;
    right: -80px;
    width: 100%;
    left: auto;
    transform: none;
}

.card-bg-2 {
    background-image: url('../assets/immagini/fava-transparent.png');
    bottom: -170px;
    left: 0px;
    width: 550px;
}

.card-bg-3 {
    background-image: url('../assets/immagini/mondo-transparente.png');
    bottom: -210px;
    width: 375px;
    left: 50%;;
    transform: translateX(-50%);
}

.section-generic-white{
    background-color: white;
    padding: 80px 0 300px 0;
    position: relative;
}

/* Le Fave Section */
.le-fave-section {
    padding: 80px 0 300px 0;    
}

.le-fave-layout {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.le-fave-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
}

.le-fave-text {
    max-width: 650px;
}

.le-fave-subtitle {
    font-family: 'Akkordeon-Six', serif;
    font-size: 34px;
    color: var(--secondary-color);
    margin: 0;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.le-fave-title {
    font-family: 'Haboro', sans-serif;
    font-size: 60px;
    color: var(--primary-color);
    margin: 0;
    margin-bottom: 24px;
    line-height: 1.1;
}

.le-fave-paragraph {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 150%;
    margin: 0;
    margin-bottom: 32px;
}

.le-fave-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 40px;
}

.le-fave-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 150%;
}

.le-fave-list-item:last-child {
    margin-bottom: 0;
}

.le-fave-check {
    width: 18px;
    height: auto;
    margin-right: 32px;
    flex-shrink: 0;
}

.le-fave-image {
    position: absolute;
    right: -30px;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.le-fave-main-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
}

.le-fave-tagline-container {
    max-width: 1400px;
    margin: 140px auto 0;
    padding: 0 20px;
    text-align: center;
}

.le-fave-tagline {
    font-family: 'Amatic SC', cursive;
    font-size: 100px;
    font-weight: bold;
    color: var(--secondary-color);
    line-height: 100%;
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

/* Elementi decorativi Le Fave */
.le-fave-decoration {
    position: absolute;
    width: auto;
    z-index: 10;
}

.le-fave-decoration-left {
    left: -60px;
    top: -200px;
    height: 200px;
}

.le-fave-decoration-right {
    right: -40px;
    top: 60%;
    height: 220px;
}


/* Processo Section */
.processo-section {
    background-color: var(--primary-color);
    padding: 80px 0;
    position: relative;
}

.processo-divisorio-container {
    position: absolute;
    top: -240px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/immagini/divisorio-verde.png');
    background-size: 170%;
    background-position: top;
    background-repeat: no-repeat;
}

.processo-divisorio-container-bottom {
    position: absolute;
    top: 550px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/immagini/divisorio-verde-bottom.png');
    background-size: 170%;
    background-position: top;
    background-repeat: no-repeat;
}

.processo-container {
    position: relative;
    z-index: 2;
    padding-top: 64px;
}

.processo-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.processo-left {
    flex: 1;
    max-width: 50%;
}

.processo-right {
    flex: 1;
    max-width: 50%;
}

.processo-subtitle {
    font-family: 'Akkordeon', sans-serif;
    font-size: 34px;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 24px;
}

.processo-title {
    font-family: 'Haboro', sans-serif;
    font-size: 60px;
    line-height: 110%;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.processo-description {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    color: var(--bg-light);
}

.processo-steps {
    display: flex;
    flex-direction: column;
    gap: 64px;
    position: relative;
}

.processo-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
}

.processo-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    width: 6px;
    height: 54px;
    background-image: url('../assets/illustrazioni/line-dotted.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.processo-step:nth-child(2)::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 108px;
    width: 6px;
    height: 54px;
    background-image: url('../assets/illustrazioni/line-dotted.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.processo-step-number {
    font-family: 'Akkordeon', sans-serif;
    font-size: 64px;
    color: var(--secondary-color);
    letter-spacing: 1px;
    line-height: 1;
    flex-shrink: 0;
    width: 64px;
    text-align: center;
}

.processo-step-text {
    font-family: 'Akkordeon', sans-serif;
    font-size: 40px;
    letter-spacing: 2px;
    color: var(--bg-light);
    line-height: 1.2;
}

/* Pagina Prodotto */
.prodotto-hero-section {
    padding-top: 120px;
}

.prodotto-hero-title {
    font-family: 'Akkordeon', sans-serif;
    font-size: 64px;
    line-height: 110%;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.prodotto-hero-subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
}

/* Lingotto Hero Section */
.lingotto-hero-title {
    font-family: 'Haboro', sans-serif;
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.1;
}

.lingotto-hero-description {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 24px;
    line-height: 150%;
    color: #526A5E;
    margin-bottom: 64px;
}

.lingotto-hero-icons {
    display: flex;
    gap: 24px;
}

.lingotto-hero-icon {
    width: 112px;
    height: 112px;
    object-fit: contain;
    color: #22372C; /* Colore verde scuro per desktop */
}

.lingotto-hero-image {
    width: 900px;
    height: 600px;
    object-fit: contain;
    scale: 1.3;
    margin-right: -140px;
}

.crema .lingotto-hero-image {
    scale: 1.7;
}

.lingotto-hero-cappero {
    position: absolute;
    top: -160px;
    width: 160px;
    height: 80px;
    z-index: 10;
    left: 370px;
}

.lingotto-hero-peperoncino{
    position: absolute;
    left: 0;
    bottom: 380px;
}

/* Lista Prodotti Section */
.lista-prodotti-section {
    position: relative;
}

.lista-prodotti-container {
    display: flex;
    flex-direction: column;
}

.lista-prodotto-item {
    position: relative;
}

.lista-prodotto-item.bg-pomodoro{
    margin-top: 104px;
} 

.lista-prodotto-divisorio-container {
    position: absolute;
    top: -200px;
    left: 0;
    width: 100%;
    height: 480px;
    background-image: url('../assets/illustrazioni/divisorio-rosso.svg');
    background-size: 170%;
    background-position: top;
    background-repeat: no-repeat;
}

.lista-prodotto-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 104px 0;
}

.lista-prodotto-title {
    font-family: 'Haboro', sans-serif;
    font-size: 60px;
    color: white;
    line-height: 100%;
    margin-bottom: 88px;
}

.lista-prodotto-image {
    height: 730px;
    width: auto;
    margin-bottom: 0;
    margin-left: -120px;
}

.lista-prodotto-scheda {
    display: flex;
    align-items: center;
    gap: 24px;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 0;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.lista-prodotto-scheda:hover .lista-prodotto-scheda-icon {
    filter: brightness(0) invert(1);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.lista-prodotto-scheda:hover .lista-prodotto-scheda-text {
    transform: scale(1.05);
}

.lista-prodotto-scheda-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    color: #E1E0DA;
    transition: transform 0.3s ease;
}

.lista-prodotto-scheda-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.lista-prodotto-illustrazione {
    position: absolute;
    z-index: 5;
    height: auto;
}

.bg-pomodoro .lista-prodotto-illustrazione-left {
    left: 0;
    bottom: 0px;
    width: 470px;
    height: auto;
}

.bg-pomodoro .lista-prodotto-illustrazione-right {
    right: -150px;
    top: 140px;
    width: 650px;
    height: auto;
}

/* Modali Schede Informative */
/* CTA Finale Prodotto Section */
.cta-finale-prodotto-section {
    padding: 144px 0;
    background: #f8f8f8;
}

.cta-finale-prodotto-container {
    max-width: 1600px;
    margin: 0 auto 400px;
    padding: 0 20px;
}

.cta-finale-prodotto-card {
    background-image: url('../assets/immagini/sfondo-card-cta-prodotto.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.cta-finale-prodotto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.cta-finale-prodotto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-finale-prodotto-card:hover .il-progetto-cta {
    background: white;
    color: var(--primary-color);
}

.cta-finale-prodotto-card .il-progetto-cta {
    background: var(--secondary-color);
    color: var(--primary-color);
    max-width: 400px;
}

.cta-finale-prodotto-card .il-progetto-cta .megamenu-arrow {
    filter: brightness(0) saturate(100%) invert(14%) sepia(23%) saturate(1233%) hue-rotate(125deg) brightness(97%) contrast(85%);
}

.cta-finale-prodotto-card:hover .il-progetto-cta .megamenu-arrow {
    filter: brightness(0) saturate(100%) invert(14%) sepia(23%) saturate(1233%) hue-rotate(125deg) brightness(97%) contrast(85%);
}

.cta-finale-prodotto-content {
    max-width: 850px;
    padding: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.cta-finale-prodotto-subtitle {
    font-family: 'Akkordeon-Six', sans-serif;
    font-size: 40px;
    line-height: 85%;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.cta-finale-prodotto-title {
    font-family: 'Haboro', sans-serif;
    font-size: 60px;
    line-height: 100%;
    color: white;
    margin-bottom: 24px;
}

.cta-finale-prodotto-description {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    color: var(--bg-light);
    opacity: 0.8;
    margin-bottom: 56px;
    line-height: 150%;
}

.cta-finale-prodotto-section .testo-big-bottom{
    bottom: -110px;
    z-index: 0;
}



.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}


.modal-content {
    background-color: white;
    max-width: 500px;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.modal-title {
    font-family: 'Haboro', sans-serif;
    font-size: 48px;
    line-height: auto;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.modal-product-title {
    font-family: 'Haboro', sans-serif;
    font-size: 24px;
    line-height: 100%;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.modal-section {
    margin-bottom: 24px;
}

.modal-section-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.modal-per-100g-row {
    display: flex;
    margin: 8px 0;
}

.modal-per-100g-left {
    width: 60%;
    text-align: left;
}

.modal-per-100g-right {
    width: 40%;
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: var(--primary-color);
}

.modal-divider {
    border-bottom: 3px solid var(--primary-color);
    margin: 12px 0 8px 0;
}

.modal-divider.top {
    margin: 12px 0 8px 0;
}

.modal-divider.bottom {
    margin: 12px 0 0 0;
}

.modal-table {
    width: 100%;
    border-collapse: collapse;
}

.modal-table td {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    padding: 4px 0;
    border-bottom: none;
}

.modal-table td:first-child {
    font-weight: 600;
    text-align: left;
    width: 60%;
}

.modal-table td:last-child {
    text-align: center;
    width: 40%;
}

.modal-ingredienti {
    margin-top: 24px;
}

.modal-allergeni {
    margin-top: 24px;
}

.modal-ingredienti-title,
.modal-allergeni-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
}

.modal-ingredienti-text,
.modal-allergeni-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: var(--primary-color);
}

.bg-zenzero .lista-prodotto-illustrazione-left {
    transform: scaleX(-1);
    top: 150px;
    left: -220px;
}

.bg-zenzero .lista-prodotto-illustrazione-right {
    top: 110px;
    right: -350px;
}

.bg-primary .lista-prodotto-illustrazione-left {
    transform: scaleX(-1);
    top: 90px;
    left: -280px;
}

.bg-primary .lista-prodotto-illustrazione-right {
    right: -100px;
    top: 120px;
}

.lista-prodotti-creme .lista-prodotto-image{
    margin-left: 0;
}

.crema-page .cta-finale-prodotto-section .testo-big-bottom{
    bottom: -10px;
}




/* ==========================================================================
   INSTITUTIONAL DESIGN STYLES
   ========================================================================== */

/* Header Istituzionale */
.bg-institutional-header {
    background-color: #E3E1DB;
    border-bottom: 1px solid #d1d1d1;
}

.institutional-logo {
    color: var(--primary-color);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.leaf-icon {
    font-size: 1.2rem;
    margin-left: 2px;
}

.institutional-nav {
    gap: 2rem;
}

.institutional-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.institutional-link:hover {
    color: #2d5a27;
}

.institutional-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.institutional-link:hover::after {
    width: 100%;
}

.nav-link-with-dropdown {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.institutional-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 150px;
}

.nav-item-dropdown:hover .institutional-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Pagina Progetto Istituzionale */
.progetto-istituzionale {
    background-color: white;
    min-height: 100vh;
}

/* Header con sfondo grigio solo per pagina progetto */
.progetto-istituzionale header {
    background-color: #E3E1DB !important;
    position: relative !important;
}

/* Override per il menu fixed nella pagina progetto */
.progetto-istituzionale header.fixed {
    position: fixed !important;
    background-color: #E3E1DB !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.progetto-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.progetto-title {
    font-size: 80px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 32px;
    font-family: 'Haboro', sans-serif;
}

.progetto-subtitle {
    font-size: 24px;
    color: #333;
    font-family: 'Nunito Sans', sans-serif;
}


.progetto-section {
    padding: 1rem 0;
    border-bottom: 2px solid var(--primary-color);
}

.progetto-section:last-child {
    border-bottom: none;
}

.section-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem 2rem;
    margin: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 60px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Akkordeon', sans-serif;
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-content p {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #333;
    font-size: 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
}

.section-content h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
    font-family: 'Nunito Sans', sans-serif;
}

.section-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.section-content li {
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.6;
    font-size: 20px;
    font-family: 'Nunito Sans', sans-serif;
}

.section-content strong {
    color: #333;
    font-weight: 800;
    font-size: 20px;
    font-family: 'Nunito Sans', sans-serif;
}

.project-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-info-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.project-info-item h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-info-item p {
    margin: 0;
    color: #666;
}

.disclaimer-box {
    background-color: transparent;
    border: none;
    padding: 1.5rem 0;
    margin: 2rem 0;
}

.disclaimer-box h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 20px;
    font-family: 'Nunito Sans', sans-serif;
}

.disclaimer-box p {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 20px;
    font-family: 'Nunito Sans', sans-serif;
}

.section-content p.testo-chiusura{
    font-size: 14px;
    padding: 24px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.partner-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.partner-item h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.partner-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.research-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.research-step {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.research-step h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.research-step p {
    color: #666;
    margin: 0;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.goal-category {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
}

.goal-category h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.goal-category ul {
    margin: 0;
    padding-left: 1.5rem;
}

.goal-category li {
    color: #666;
    margin-bottom: 0.5rem;
}

.hero-sostenibilita .hero-left{
    left: -70px;
    top: -340px;
}

.hero-sostenibilita .hero-right{
    right: -70px;
    top: 20px;
}

.sostenibilita-main .le-fave-tagline{
    max-width: 1200px;;
}

.divisorio-sostenibilita{
    background-image: url(../assets/immagini/divisorio-sostenibilita.png);
    background-size: 170%;
    background-position: top;
    background-repeat: no-repeat;
    height: 260px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    bottom: -260px;
    z-index: 99;
}

/* ===== SEZIONI SOSTENIBILITÀ ===== */

.sostenibilita{
    background-color: #ffffff;
}

.sostenibilita .intro-section{
    background-color: var(--primary-color);
}

/* Section Filiera */
.section-filiera {
    position: relative;
    min-height: 1000px;
    background-image: url('../assets/immagini/sfondo-filiera.jpg');
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    padding-top: 230px;
}

.section-filiera-container {
    max-width: 1400px;
    margin: 180px auto 0;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
}

.section-filiera-content {
    width: 55%;
    backdrop-filter: blur(10px);
    border-radius: 24px;
}

.section-filiera-text-container {
    text-align: left;
}

.section-filiera-icon {
    width: 160px;
    height: 160px;
    margin: 0 0 12px 0;
    display: block;
}

.section-filiera-subtitle {
    font-family: 'Akkordeon-Six', sans-serif;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

.section-filiera-title {
    font-family: 'Haboro', sans-serif;
    font-size: 60px;
    line-height: 120%;
    color: var(--primary-color);
    margin: 0;
}

/* Section Fertilizzanti */
.section-fertilizzanti {
    position: relative;
    min-height: 1000px;
    background-image: url('../assets/immagini/sfondo-fertilizzante.jpg');
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
}

.section-fertilizzanti-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.section-fertilizzanti-content {
    width: 45%;
    border-radius: 24px;
    margin-top: 96px;
}

.section-fertilizzanti-text-container {
    text-align: left;
}

.section-fertilizzanti-icon {
    width: 160px;
    height: 160px;
    margin: 0 0 12px 0;
    display: block;
}

.section-fertilizzanti-subtitle {
    font-family: 'Akkordeon-Six', sans-serif;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

.section-fertilizzanti-title {
    font-family: 'Haboro', sans-serif;
    font-size: 60px;
    line-height: 120%;
    color: var(--primary-color);
    margin: 0;
}

/* Section Consumo Acqua */
.section-consumo-acqua {
    position: relative;
    min-height: 850px;
    background-color: #ffffff;
}

.section-consumo-acqua-container {
    max-width: 1400px;
    margin: 0 auto 0;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.section-consumo-acqua-content {
    width: 65%;
    padding: 4rem;
    border-radius: 24px;
}

.section-consumo-acqua-text-container {
    text-align: left;
}

.section-consumo-acqua-icon {
    width: 160px;
    height: 160px;
    margin: 0 0 12px 0;
    display: block;
}

.section-consumo-acqua-subtitle {
    font-family: 'Akkordeon-Six', sans-serif;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

.section-consumo-acqua-title {
    font-family: 'Haboro', sans-serif;
    font-size: 60px;
    line-height: 120%;
    color: var(--primary-color);
    margin: 0;
}

.section-consumo-acqua-image {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 64px;
}

.section-consumo-acqua-grafico {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Section Emissioni CO2 */
.section-emissioni-co2 {
    position: relative;
    min-height: 780px;
    background-color: #ffffff;
}

.section-emissioni-co2-container {
    max-width: 1400px;
    margin: 0 auto 0;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.section-emissioni-co2-content {
    width: 65%;
    padding: 4rem;
    border-radius: 24px;
}

.section-emissioni-co2-text-container {
    text-align: left;
}

.section-emissioni-co2-icon {
    width: 160px;
    height: 160px;
    margin: 0 0 12px 0;
    display: block;
}

.section-emissioni-co2-subtitle {
    font-family: 'Akkordeon-Six', sans-serif;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

.section-emissioni-co2-title {
    font-family: 'Haboro', sans-serif;
    font-size: 60px;
    line-height: 120%;
    color: var(--primary-color);
    margin: 0;
}

.section-emissioni-co2-image {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 64px;
}

.section-emissioni-co2-grafico {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.sfondo-hero-tablet{
    display: none;
    position: absolute;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-content {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* Header section con logo e close button */
.mobile-menu-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    position: relative;
}

.mobile-menu-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu-logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1); /* Rende il logo bianco */
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* Rende l'icona bianca */
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 32px;
    padding: 0 32px;
    width: 100%;
}

.mobile-menu-link {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: center;
    width: 100%;
    padding: 8px 0;
}

.mobile-menu-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 8px 0;
}

.mobile-menu-bottom {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 32px;
    width: 100%;
}

.page-404{
    .footer-elementi{
        top: 140px;
        z-index: 0;
    }
}

.mobile-menu-toggle{
    color: var(--primary-color);
}

.crema .mobile-menu-toggle, .lingotto .mobile-menu-toggle{
    color: white;
}

/* Menu fixed: hamburger primary color su crema e lingotto */
.crema header.fixed .mobile-menu-toggle, 
.lingotto header.fixed .mobile-menu-toggle {
    color: var(--primary-color) !important;
}




/* ==========================================================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ========================================================================== */
   @media (min-width: 2250px) {
    .hero-section{
        height: 1300px;
    }

    .le-fave-image img{
        scale: 1.5;
    }
   }
   
   @media (max-width: 1900px) {
    .lingotto .lingotto-hero-image{
       scale: 1.1;
    }
   }

   @media (max-width: 1700px) {
     .lingotto .hero-left{
        left: -70px;
    }
    .lingotto .hero-left .hero-side-image{
        max-width: 80%;
    }

    .hero-sostenibilita .hero-right{
        top: 230px;
    }
    .lingotto .lingotto-hero-image {
        scale: 1;
        margin-right: 0px;
    }

   }


   @media (max-width: 1700px) {
        .lingotto-hero-peperoncino{
            bottom: 240px;
            width: 90px;
   }

   }


   @media (max-width: 1580px) {
    .sfondo-footer{
        height: 380px;
        height: 100%;
    }

    .sfondo-footer div {
        width: 60%;
        padding-top: 130px;
    }

    .sfondo-footer .chicco{
        top: -50px;
    }

    .lingotto .hero-left{
        display: none;
    }

    .lingotto-hero-cappero{
        width: 100px;
    }

    .lingotto-hero-image{
        scale: 1.2;
    }

    .bg-pomodoro .lista-prodotto-illustrazione-left{
        width: 260px;
    }

    .bg-pomodoro .lista-prodotto-illustrazione-right{
        right: -70px;
        width: 390px;
    }

    .bg-zenzero .lista-prodotto-illustrazione-left{
        left: -40px;
        width: 320px;
    }

    .bg-zenzero .lista-prodotto-illustrazione-right{
        right: -100px;
        width: 400px;
    }

    .bg-primary .lista-prodotto-illustrazione-left{
        top: 230px;
        width: 370px;
        left: -80px;
    }

    .bg-primary .lista-prodotto-illustrazione-right{
        right: -70px;
        top: 170px;
        width: 290px;
    }

    .hero-sostenibilita .hero-right {
        right: -10px;
        top: 320px;
        max-width: 100px;
    }

    .hero-sostenibilita .hero-left{
        max-width: 220px;
        left: -43px;
    }

    .products-decoration-left {
        right: 0px;
        width: 100px;
        top: 40%;
    }

   }

   @media (max-width: 1440px) {
    .hero-section{
       height: 1000px;
    }

    .hero-sostenibilita-sx{
        max-width: 60%!important;
    }

    .hero-sostenibilita-dx{
        max-width: 40%!important;
    }

    .lingotto-hero-image {
        scale: 1;
    }

    .section-filiera{
        background-position: top;
        padding-top: 60px;
    }

    .hero-left{
        left: -60px;
    }

    .hero-left img{
        max-width: 70%;
    }

    .lingotto-hero-peperoncino{
        display: none;

    }

    .products-section{
        padding: 60px 0 360px 0;
    }


   }

   @media (max-width: 1200px) {
    .sfondo-footer .chicco{
        top: -70px;
    }

    .lingotto-hero-title{
        font-size: 64px;
        line-height: 110%;
    }

    .section-filiera-title, .section-fertilizzanti-title, .section-consumo-acqua-title, .section-emissioni-co2-title{
        font-size: 48px;
        line-height: 120%;
    }

    .section-fertilizzanti, .section-filiera{
        min-height: 750px;
    }

    .section-emissioni-co2, .section-consumo-acqua{
        min-height: 630px
    }

    .crema .lingotto-hero-image {
        scale: 1.4;
    }

   }

   @media (max-width: 1150px) {
    .hero-section{
        background-position: top;
        height: 580px;
    }

    .hero-left, .hero-right{
        display: none;
    }

    .hero-logo{
        height: 200px;
    }

    .hero-logo img{
        height: 100%;
    }

    .hero-text{
        font-size: 36px;;
    }

    .img-home{
        max-width: 800px;
        margin: 90px auto 0;
    }

    .products-decoration, .le-fave-decoration{
        display: none;
    }

    .le-fave-tagline{
        font-size: 70px;
    }

    .section-generic-white{
        padding: 40px 0 300px 0;
    }

    .le-fave-layout{
        flex-direction: column;
        align-items: center;
    }

    .le-fave-image{
        position: relative;
    }

    .processo-section.py-20{
        padding-top: 0;;
    }

    .processo-container.pt-16{
        padding-top: 0;
    }

    .processo-title, .claim-main-title, .le-fave-title, .il-progetto-card-title, .products-menu-container .megamenu-title, .card-benefici-title{
        font-size: 42px;
    }

    .claim-section{
        padding: 20px 0 80px;
    }

    .il-progetto-section.section-generic-white{
        padding: 40px 0 140px 0;
    }

    .sfondo-hero-tablet{
        display: block;
    }

    .card-benefici{
        padding: 0 32px;
    }

    .claim-column-text{
        font-size: 18px;
    }

    .box-doc{
        flex-wrap: wrap;
        max-width: 780px;
        margin: auto;
        align-items: stretch;
    }

    .il-progetto-card.p-10{
        padding: 1.5rem;
    }

    .le-fave-image{
        right: 0;
    }

    .cont-prodotto-hero{
        flex-direction: column;
    }

    .dx-prodotto-hero {
        max-width: 100%!important;
    }

    .dx-prodotto-hero img{
        margin-right: 0;
        width: 100%;
        max-width: 720px;
        height: 500px;;
    }

    .lingotto .dx-prodotto-hero{
        padding: 0 24px;;
    }

    .lingotto .lingotto-hero-image{
        scale: 1.2;
    }

    .lingotto .hero-section, .crema .hero-section{
        height: 790px;
        position: relative;
        top: -20px;
    }
   
    .sx-prodotto-hero{
        max-width: 100%!important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 150px;
        margin-bottom: -100px;
    }

    .crema .sx-prodotto-hero{
        margin-bottom: 0;
        margin-top: -80px;
        background-color: rgb(34 56 44 / 60%);
        border-radius: 24px;

        padding: 32px;
    }

    .lingotto .sx-prodotto-hero{
        margin-bottom: 0;
        margin-top: -80px;
        background-color: rgb(34 56 44 / 60%);
        border-radius: 24px;
        padding: 32px;
    }

    .lingotto-hero-description{
        color: white;
        font-weight: 500;
    }

    .lingotto-hero-cappero{
        display: none;
    }

    .lingotto-hero-icon{
        width: 96px;
        height: 96px;
        color: #FFFFFF; /* Colore bianco per mobile */
    }

    .lingotto-hero-description{
        margin-bottom: 40px;
    }

    .lingotto .le-fave-tagline.py-32, .crema .le-fave-tagline.py-32{
        padding-top: 3rem;
        padding-bottom: 7rem;
    }

    .lista-prodotto-divisorio-container{
        top: -120px;
        height: 160px;
    }

    .lista-prodotto-image{
        height: auto;
        width: auto;
        max-width: 800px;
    }

    .cta-finale-prodotto-title{
        font-size: 44px;
    }

    .cta-finale-prodotto-container{
        margin: 0 auto 160px;
    }

    .cta-finale-prodotto-section .testo-big-bottom{
        bottom: -60px;
    }

    .crema .lista-prodotto-image{
        max-width: 540px;
    }

    .sostenibilita .hero-section{
        height: 800px;
    }

    .lingotto-hero-title{
        font-size: 58px;
        line-height: 110%;
        color: white;
    }

    .hero-section{
        background-size: 140%;
    }

    .home .hero-section {
        background-size: 100%;
        height: 610px;
    }

    .products-section {
        padding: 0px 0 360px 0;
    }
   }

   @media (max-width: 960px) {
    .lingotto-hero-container > div {
       flex-direction: column;
    }

    .hero-sostenibilita-dx {
        max-width: 320px !important;
        margin-right: -120px;
        margin-top: -230px;
    }

    .hero-sostenibilita-dx .lingotto-hero-image{
        height: auto;
        margin-right: 0;
        width: 100%;
    }

    .hero-sostenibilita-sx{
        max-width: 100% !important;
        margin-top: 100px;
        text-align: center;
    }

    .hero-sostenibilita-dx {
        margin-top: -80px;
    }

    .sostenibilita .hero-section {
        height: 810px;
        top: -20px;
    }

    .sostenibilita .intro-section{
        margin-top: -30px;
    }

    .section-filiera-title, .section-fertilizzanti-title, .section-consumo-acqua-title, .section-emissioni-co2-title {
        font-size: 38px;
        line-height: 120%;
    }

    .section-filiera-subtitle, .section-fertilizzanti-subtitle, .section-consumo-acqua-subtitle, .section-emissioni-co2-subtitle{
        font-size: 28px;
        margin: 0 0 16px 0;
    }

    .section-filiera-container{
        margin: 100px auto 0;
    }

    .section-filiera-icon, .section-fertilizzanti-icon, .section-consumo-acqua-icon, .section-emissioni-co2-icon{
        width: 124px;
        height: 124px;
    }

    .section-fertilizzanti, .section-filiera{
        min-height: auto;
    }

    .section-emissioni-co2, .section-consumo-acqua{
        min-height: auto
    }

     .section-filiera-container{
        height: auto;
   }

   .section-fertilizzanti-container, .section-emissioni-co2-container{
        height: 600px;
   }

   .home .hero-section {
        background-size: 120%;
    }




}

@media (max-width: 860px) {
    .lingotto .hero-section, .crema .hero-section{
        height: 640px;
    }

    .crema .sx-prodotto-hero {
        margin-top: -50px;
        padding: 12px;
    }

    .home .hero-section {
        background-size: 140%;
        height: 650px;
    }
}

@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 0.5rem;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    /* Coming Soon */
    .coming-soon-title {
        font-size: 4rem !important;
    }
    
    .coming-soon-logo {
        height: 16rem !important;
    }
    
    /* Footer */
    .footer-main-text {
        font-size: 40px;
    }

    .sfondo-footer .chicco{
        display: none;
    }

    .progetto-hero h1 {
        font-size: 2.5rem;
    }
    
    .progetto-hero .subtitle {
        font-size: 1.1rem;
    }
    
    .progetto-hero .description {
        font-size: 1rem;
    }
    
    .section-content {
        padding: 0 1rem;
    }
    
    .section-header {
        margin: 1.5rem 0;
        padding: 0.75rem 1rem;
        font-size: 2rem;
    }
    
    .project-info-grid,
    .partners-grid,
    .research-steps,
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .institutional-nav {
        gap: 1rem;
    }

    .products-section{
        padding: 0 0 440px 0;
    }

    .products-menu-container .megamenu-content{
        padding: 16px;
        flex-direction: column;
        align-items: center;
        min-width: unset;
    }

    .products-menu-container .megamenu-subtitle{
        font-size: 32px;
    }

    .benefici-section{
        height: 650px;
    }

    .cont-card-benefici{
        flex-direction: column;
        top: -360px;
        max-width: 550px;
        padding: 0;
    }

    .card-benefici {
        padding: 72px 32px;
    }

    .card-benefici-2, .card-benefici-3{
        top: 0;
    }

    .card-bg-1{
        bottom: -60px;
        right: -200px;
    }

    .benefici-divisorio-container{
        left: -3%;
        width: 146%;
    }

    .cont-processo{
        flex-direction: column;
    }

    .cont-processo > div{
        max-width: 100%;
    }

    .cont-col-claim{
        flex-direction: column;
    }

    .box-progetto{
        flex-direction: column;
    }

    .box-progetto.gap-20{
        gap:1rem;
    }

    .cont-card-progetto{
        flex-direction: column;
        max-width: 550px;
        margin: auto;
    }

    .cont-card-progetto.gap-6{
        gap:3.5rem;
    }

    .il-progetto-card-icon .w-64{
        width: 10rem;;
    }

    .il-progetto-card-icon .h-64{
        height: 10rem;;
    }

     .il-progetto-card .pt-48{
         padding-top: 7rem;
     }

     /* Mobile Menu Responsive */
     .mobile-menu-header {
         padding: 20px 24px;
     }
     
     .mobile-menu-logo-img {
         height: 70px;
     }
     
     .mobile-menu-nav {
         padding: 0 24px;
         gap: 24px;
     }
     
     .mobile-menu-link {
         font-size: 28px;
     }
     
     .mobile-menu-bottom {
         padding: 24px;
     }

     .lingotto-hero-description{
        font-size: 20px;
        margin-bottom: 32px;
     }

     .lingotto-hero-icon {
        width: 72px;
        height: 72px;
        color: #FFFFFF; /* Colore bianco per mobile */
    }

    .hero-section{
        margin-top: -10px;
     }

     .progetto-container {
        padding: 0 3%;
     }

     .lista-prodotto-title{
        font-size: 44px;
     }

     .lingotto .le-fave-tagline.py-32, .crema .le-fave-tagline.py-32 {
        padding: 0rem 16px 5rem;
     }

     .lista-prodotto-content{
        padding: 64px 0;
     }

     .cta-finale-prodotto-content{
        padding: 56px;
     }

     .cta-finale-prodotto-card{
        background-position: right;
     }

     .modal-title{
        font-size: 38px;
     }

     .modal-product-title, .modal-section-title{
        font-size: 18px;
     }

     .section-filiera-content, .section-fertilizzanti-content, .section-consumo-acqua-content, .section-emissioni-co2-content{
        width: 100%;
        backdrop-filter: unset;
        padding: 0;
     }

     .section-fertilizzanti{
        background-image: url('../assets/immagini/sfondo-fertilizzanti-mobile.jpg');
        background-size: cover;
     }

     .section-filiera{
        background-image: url('../assets/immagini/sfondo-filiera-mobile.jpg');
        background-size: cover;
     }

     .section-filiera-container {
        margin: 0px auto 0;
        height: 500px;
    }

    .section-consumo-acqua-container{
        flex-direction: column;
        margin-bottom: 32px;
        height: auto;
    }

     .section-emissioni-co2-container{
        flex-direction: column-reverse;
        height: auto;
        padding-bottom: 32px;
    }

    .section-consumo-acqua-image, .section-emissioni-co2-image{
        width: 70%;
    }

    .section-emissioni-co2-text-container, .section-consumo-acqua-text-container, .section-fertilizzanti-text-container, .section-filiera-text-container{
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    } 

    .home .hero-section {
        background-size: cover;
    }
}

@media (max-width: 640px) {
    .footer-elementi{
        display: none;
    }

    .cont-card-benefici{
        padding: 0 3%;
    }

    .benefici-section {
        height: 740px;
    }

    .le-fave-tagline {
        font-size: 48px;
        line-height: 120%;
    }

    .section-generic-white {
        padding: 40px 0 190px 0;
    }

    .processo-divisorio-container{
        top: -130px;
    }

    .lingotto .hero-section, .crema .hero-section{
        top: -30px;
    }

    .lista-prodotto-image{
        max-width: 650px;
    }

    .lista-prodotto-title{
        font-size: 36px;
    }

    .cta-finale-prodotto-title{
        font-size: 36px;
    }

    .cta-finale-prodotto-card .il-progetto-cta{
        max-width: 100%;
    }

    .cta-finale-prodotto-section{
        padding: 72px 0;
    }

    .cta-finale-prodotto-section .testo-big-bottom{
        bottom: -32px;
    }

    .lingotto-hero-title{
        font-size: 52px;
        line-height: 100%
    }

    .lingotto-hero-description{
        font-size: 18px;
    }

    .sx-prodotto-hero{
        margin-bottom: -160px;
        margin-top: 240px;
    }

    .lingotto .hero-section, .crema .hero-section{
        height: 620px;
    }

    .lista-prodotto-title{
        margin-bottom: 32px;
    }

    .lista-prodotto-divisorio-container{
        top: -60px;
        height: 110px;
    }

    .lingotto .le-fave-tagline.py-32, .crema .le-fave-tagline.py-32{
        padding: 0rem 16px 0rem;
    }

    .crema .dx-prodotto-hero img{
        max-width: 340px;
        height: auto;
    }

    .crema .sx-prodotto-hero{
        margin-bottom: -50px;
        margin-top: -90px;
    }

    .lingotto-hero-icon{
        width: 72px;
        height: 72px;
        color: #FFFFFF; /* Colore bianco per mobile */
    }

    .crema .lista-prodotto-image {
        max-width: 400px;
    }

    .bg-pomodoro .lista-prodotto-illustrazione-left {
        width: 150px;
    }

    .bg-pomodoro .lista-prodotto-illustrazione-right {
        right: -30px;
        width: 210px;
    }

    .bg-zenzero .lista-prodotto-illustrazione-left {
        width: 220px;
    }

    .bg-zenzero .lista-prodotto-illustrazione-right {
        right: -60px;
        width: 250px;
    }

    .bg-primary .lista-prodotto-illustrazione-left {
        width: 210px;
        left: -20px;
    }

    .bg-primary .lista-prodotto-illustrazione-right {
        right: -50px;
        top: 470px;
        width: 180px;
    }

    .hero-sostenibilita-dx .lingotto-hero-image{
        margin-right: 50px;
    }

    .hero-section {
        background-size: 170%;
    }

    .lingotto .sx-prodotto-hero {
        margin-bottom: 0;
        margin-top: -30px;
    }

    .lingotto .hero-section {
        background-size: 200%;
    }

    .img-home {
        margin: 50px auto 0;
    }

}

@media (max-width: 480px) {
    /* Coming Soon */
    .coming-soon-title {
        font-size: 3rem !important;
    }
    
    .coming-soon-logo {
        height: 12rem !important;
    }
    
    /* Footer */
    .footer-main-text {
        font-size: 28px;
    }
    
    .footer-info-text {
        font-size: 14px;
    }

    .bollini img{
        width: 80px;
    }

    .products-menu-container .megamenu-column{
        max-width: 400px;
        padding: 0 3%;
        width: 100%
    }

    .processo-step:not(:last-child)::after, .processo-step:not(:last-child)::after, .processo-step:nth-child(2)::before{
        display: none;
    }

    .processo-step{
        flex-direction: column;
        align-items: center!important;
        text-align: center!important;
    }

    .cont-logo-footer img{
        width: 200px!important;
    }

    .sfondo-footer div{
        padding-top: 70px;
    }

    .il-progetto-cta{
        max-width: 300px;
        margin: auto;
    }

    .progetto-title{
        font-size: 54px;
        margin-bottom: 8px;;
    }


    .sx-prodotto-hero{
        margin-bottom: -200px;
    }

    .lista-prodotto-image{
        max-width: 460px;
        margin-left: -60px;
    }

    .bg-pomodoro .lista-prodotto-illustrazione-left{
        width: 110px;
    }

    .bg-pomodoro .lista-prodotto-illustrazione-right {
        right: -40px;
        width: 140px;
    }

    .bg-zenzero .lista-prodotto-illustrazione-left {
        width: 160px;
    }

    .bg-zenzero .lista-prodotto-illustrazione-right {
        right: -60px;
        width: 180px;
    }

    .bg-primary .lista-prodotto-illustrazione-left {
        width: 170px;
        left: -40px;
    }

    .bg-primary .lista-prodotto-illustrazione-right {
        right: -50px;
        top: 360px;
        width: 150px;
    }

    .modal-overlay.active{
        padding: 0 3%;
    }

    .cta-finale-prodotto-subtitle{
        font-size: 28px;
    }

    .cta-finale-prodotto-content {
        padding: 48px;
    }

    .cta-finale-prodotto-container {
        margin: 0 auto 70px;
    }

    .crema .lista-prodotto-image {
        max-width: 330px;
    }

    .lingotto-hero-title{
        font-size: 48px
    }

    .sostenibilita .le-fave-tagline.pt-32{
        padding-top: 3rem;
    }

    .claim-column-title{
        font-size: 28px;
    }

    .products-menu-container .cta-lingotto-image {
        height: 60px;
    }

    .products-menu-container .cta-crema-image {
        height: 75px;
    }

    .products-menu-container .megamenu-column:first-child .megamenu-cta {
        padding-left: 16px;
    }

    .products-menu-container .megamenu-column:last-child .megamenu-cta {
        padding-left: 4px;
    }

    .products-menu-container .cta-text {
        font-size: 18px;
    }

    .products-container .megamenu-cta{
        gap: 4px;
    }

    .crema-page .cta-finale-prodotto-section .testo-big-bottom {
        bottom: 0px;
    }

    .cta-finale-prodotto-section .testo-big-bottom {
        bottom: -24px;
    }

    /* Mobile Menu Responsive per schermi piccoli */
    .mobile-menu-header {
        padding: 16px 20px;
    }
    
    .mobile-menu-logo-img {
        height: 60px;
    }
    
    .mobile-menu-nav {
        padding: 0 20px;
        gap: 20px;
    }
    
    .mobile-menu-link {
        font-size: 24px;
        padding: 6px 0;
    }
    
    .mobile-menu-bottom {
        padding: 20px;
    }

    .hero-section {
        background-size: 240%;
    }

    .lingotto .hero-section{
        background-size: 240%;
        height: 620px;
    }

    .lingotto .sx-prodotto-hero {
        margin-top: 20px;
    }

    .lingotto-hero-container.px-8{
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .home .hero-section {
        height: 520px;
    }

    .img-home {
        margin: 120px auto 0;
    }

    .il-progetto-cta{
      font-size: 18px;
    }


}


@media (max-width: 390px) {
    .lista-prodotto-title {
        font-size: 28px;
    }

    .lista-prodotto-image {
        max-width: 400px;
    }

    .cta-finale-prodotto-title {
        font-size: 32px;
        line-height: 120%;
    }

    .cta-finale-prodotto-content {
        padding: 40px;
    }

    .hero-sostenibilita-dx{
        max-width: 240px !important;
        margin-right: -90px;

    }

    .section-filiera-title, .section-fertilizzanti-title, .section-consumo-acqua-title, .section-emissioni-co2-title {
        font-size: 32px;
        line-height: 110%;
    }

    .lingotto .hero-section, .crema .hero-section {
        height: 530px;
    }

    .crema .sx-prodotto-hero {
        margin-bottom: -50px;
        margin-top: 10px;
    }

    .lingotto-hero-title {
        font-size: 42px;
    }

    .lingotto .hero-section {
        background-size: 270%;
        height: 620px;
    }



    
}

/* Stili per il link "Visualizza Notarizzazione" */
.claim-transaction-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--primary-color);
    transition: text-decoration 0.3s ease;
    min-height: 40px;
    justify-content: center;
}

.claim-transaction-link:hover {
    text-decoration: underline;
}

.claim-transaction-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.claim-document-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8px;
}


