/* Google font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

html {
    scroll-behavior: smooth;

}

/* Standard */
body {
  scrollbar-width: none;     /* Firefox */
  -ms-overflow-style: none;  /* IE e Edge vecchi */
}

body::-webkit-scrollbar {     /* Chrome, Safari, Opera */
  display: none;
}


:root {
    /* Colori da rivedere */
    /* --white: #fff;
    --dark: #252525;
    --green: #7fc5a2;
    --grafite: rgb(69, 73, 78);
    --orange: rgb(193, 71, 52);
    --grafite-light: rgb(161, 163, 165);
     */
    --white: #fff;
    --white-dirty: #ececec;
    --dark: #3e3d3d;
    --green-moduli: #24523b;
    --green: #7fc5a2;
    --green-flag: #009246;
    --grafite: rgb(69, 73, 78);
    --orange: rgb(193, 71, 52);
    --grafite-light: rgb(211, 213, 214);
    --grafite-dark: rgb(140, 141, 143);
    --blue: rgb(4, 105, 206);
    --azzurro: rgb(64, 138, 212);
    --azzurro-light: rgb(180, 212, 245);

    /* Font size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Font weight */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight_bold: 700;
    
    /* Border radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site max width */
    --site-max-width: 1300px;
}

/* General Style */
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    width: 100%;
}

.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

.section-title {
    text-align: center;
    padding: 60px 0 5px;
    text-transform: uppercase;
    font-size: var(--font-size-l);
}

.section-subtitle {
    text-align: center;
    padding: 10px 0 5px;
    font-size: var(--font-size-m);
}

.section-title::after {
    content: "";
    width: 110px;
    height: 5px;
    display: block;
    margin: 10px auto 20px;
    border-radius: var(--border-radius-s);
    background: var(--orange);
}

/* Navbar Style */
header {
    position: fixed;
    width: 100%;
    z-index: 5;
    background: var(--grafite);
    
}

header .navbar {
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-logo .logo-text {
    color: var(--green);
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-semibold);
}

.navbar .nav-menu {
    display: flex;
    gap: 10px;
}

.navbar .nav-menu .nav-link {
    padding: 10px 18px;
    color: var(--green);
    font-size: var(--font-size-m);
    border-radius: var(--border-radius-m);
    transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
    color: var(--white);
    background: var(--green);
} 

.navbar :where(#menu-close-button, #menu-open-button) {
    display: none;
}

header .italian-flag {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    visibility: hidden;
}

header .italian-flag .green {
    width: calc(100% / 3);
    height: 5px;
    display: block;
    margin: 0;
    background: var(--green);
}

header .italian-flag .white {
    width: calc(100% / 3);
    height: 5px;
    display: block;
    margin: 0;
    background: var(--white);
}

header .italian-flag .red {
    width: calc(100% / 3);
    height: 5px;
    display: block;
    margin: 0;
    background: var(--orange);
}

/* Hero Section Style*/
.landing-page {
    min-height: 100vh;
    background: var(--grafite);
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7)), url('img/img-render/TRIO.LIGHT.GOOD.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.landing-page .section-content {
    /*background-color: azure;*/
    display: flex;
    align-items: center;
    min-height: 55vh;
    color: var(--green);
    flex-direction: column;
    justify-content: space-between;
}



.landing-page .hero-details {
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 200px;
    width: 100%;
    
}

.landing-page .hero-details .title {
    font-size: var(--font-size-xxl);
    /* color: var(--blue); */
    padding-top: 50px;
}

.landing-page .hero-details .subtitle {
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.landing-page .hero-details .description {
    max-width: 80%;
    margin: 0px 0 80px;
    font-size: var(--font-size-m);
}

.landing-page .hero-details .buttons {
    display: flex;
    justify-content: space-around;
    width: 110%;
    gap: 150px;
}

.landing-page .hero-details .button {
    padding: 8px 170px;
    border: 2px solid transparent;
    color: var(--grafite);
    border-radius: var(--border-radius-m);
    background-color: var(--green);
    font-weight: var(--font-weight-medium);
    transition: 0.4s ease;
}

.landing-page .hero-details .button:hover,
.landing-page .hero-details .contact-us {
    color: var(--white);
    border-color: var(--white);
    background: transparent;
}

.landing-page .hero-details .contact-us:hover {
    color: var(--grafite);
    border-color: var(--green);
    background: var(--green);
}

.thx-page {
    min-height: 100vh;
    background: var(--grafite);
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7)), url('img/img-render/TRIO.LIGHT.GOOD.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.thx-page .section-content {
    /*background-color: azure;*/
    display: flex;
    align-items: center;
    min-height: 55vh;
    color: var(--green);
    flex-direction: column;
    justify-content: space-between;
}

.thx-page .hero-details {
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 200px;
    width: 100%;
    text-align: center;
}

.thx-page .hero-details .title {
    font-size: var(--font-size-xxl);
    padding-top: 30px;
}

.thx-page .hero-details .subtitle {
    margin-top: 30px;
    max-width: 100%;
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-normal);
    line-height: 1.8;
}

.thx-page .hero-details .description {
    max-width: 80%;
    margin: 0px 0 80px;
    font-size: var(--font-size-m);
}

.thx-page .hero-details .buttons {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    margin-top: 350px;
}

.thx-page .hero-details .button {
    padding: 8px 100px;
    border: 2px solid transparent;
    color: var(--grafite);
    border-radius: var(--border-radius-m);
    background-color: var(--green);
    font-weight: var(--font-weight-medium);
    transition: 0.4s ease;
}

.thx-page .hero-details .button:hover,
.thx-page .hero-details .contact-us {
    color: var(--white);
    border-color: var(--white);
    background: transparent;
}

.thx-page .hero-details .contact-us:hover {
    color: var(--grafite);
    border-color: var(--green);
    background: var(--green);
}


.hero-section {
    min-height: 100vh;
    background: var(--grafite);
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7)), url('img/img-render/TRIO.LIGHT.GOOD.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    
}


.hero-section .section-content {
    /*background-color: azure;*/
    display: flex;
    align-items: center;
    min-height: 45vh;
    color: var(--green);
    justify-content: space-between;
    


}

.hero-section .hero-details {
    margin-left: 50px;
    margin-right: 50px;
}

.hero-section .hero-details .title {
    font-size: var(--font-size-xxl);
    /* color: var(--blue); */
    padding-top: 50px;
}

.hero-section .hero-details .subtitle {
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.hero-section .hero-details .description {
    max-width: 80%;
    margin: 0px 0 80px;
    font-size: var(--font-size-m);
}

.hero-section .hero-details .buttons {
    display: flex;
    width: 120%;
    gap: 10px;
}

/* 
.hero-section .section-content .hero-details .buttons {
    border: 3px solid black;
} */






.hero-section .hero-details .button {
    padding: 8px 150px;
    border: 2px solid transparent;
    color: var(--grafite);
    border-radius: var(--border-radius-m);
    background-color: var(--green);
    font-weight: var(--font-weight-medium);
    transition: 0.4s ease;
}

.hero-section .hero-details .button:hover,
.hero-section .hero-details .contact-us {
    color: var(--white);
    border-color: var(--white);
    background: transparent;
}

.hero-section .hero-details .contact-us:hover {
    color: var(--grafite);
    border-color: var(--green);
    background: var(--green);
}

.hero-section .hero-image-wrapper {
    max-width: 400px;
    margin-right: 30px;
    border-radius: var(--border-radius-s);
}

/* Design Style */
.design-section {
    padding: 50px 0 100px;
    color: var(--white);
    min-height: 100vh;
    background: var(--grafite-light);
}

.design-section .section-title {
    padding-top: 100px;
}

.design-section .section-subtitle {
    color: var(--grafite);
}

.design-section .section-content {
    display: flex;
    align-items: center;
    color: var(--grafite);

}

.design-section .section-content .about-image-wrapper {
    width: 50%;
    height: 50%;
    object-fit: cover;
    padding: 50px 50px 10px;
    border-radius: var(--border-radius-m);
 
}

.design-section .section-content .about-image-wrapper .about-image {
    
    border-radius: var(--border-radius-m);
 
}

.design-section .section-content .design-details .section-subtitle{
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: left;
    font-size: var(--font-size-m);
   
}

/* About Section Style*/
.about-section {
    padding: 120px 0;
    background: var(--azzurro-light);
}

.about-section .section-content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.about-section .about-image-wrapper .about-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-s);
}

.about-section .about-details .section-title {
    padding-top: 0;
}

.about-section .about-details .section-title .section-subtitle {
    padding: 0;
}

.about-section .about-details {
    max-width: 50%;
}

.about-section .about-details .text {
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: center;
    font-size: var(--font-size-n);
    font-weight: var(--font-weight-medium);
}

.about-section .social-link-list {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.about-section .social-link-list .social-link {
    color: var(--grafite);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}

.about-section .social-link-list .social-link:hover {
    color: var(--green);
}



/* Poltrone Style */
.poltrone-section {
    min-height: 100vh;
    color: var(--grafite);
    background: var(--white);
    padding: 50px 0 100px;
}

.poltrone-section .poltrone-list {
    display: flex;
    flex-wrap: wrap;
    gap: 110px;
    align-items: center;
    justify-content: space-between;
}

.poltrone-section .poltrone-list .poltrone-item {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% / 3 - 110px);
}

.poltrone-section .poltrone-list .poltrone-item .poltrone-image {
    max-width: 83%;
    aspect-ratio: 1;
    margin-bottom: 15px;
    object-fit: contain;
}

.poltrone-section .poltrone-list .poltrone-item .name {
    margin: 12px 0;
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-semibold);
}

.poltrone-section .poltrone-list .poltrone-item .text {
    font-size: var(--font-size-m);
}



  .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    width: 100%;
    /*max-width: 900px;*/
  }

  .product {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  /* Immagine di sfondo */
  .product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  /* Overlay sfumato per migliorare leggibilità del testo */
  .product::after {
    content: "";
    position: absolute;
    inset: 0;
    /*background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));*/
  }

  /* Contenitore del testo */
  .info-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--grafite-dark);
    padding: 16px;
    z-index: 1;
  }

  .info-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%;
    color: var(--grafite-dark);
    padding: 16px;
    z-index: 1;
  }

  .info-1, .info-2 h3 {
    margin: 0;
    font-size: 1.3em;
  }

  .info-1, .info-2 p {
    margin: 5px 0 0;
    font-weight: bold;
  }

  /* Disposizione griglia */
  .product.top {
    grid-column: 1 / 3; /* occuperà entrambe le colonne */
    height: 300px;
  }

  .product.bottom {
    height: 250px;
  }

/* CellNess Info Style */
.cellness-section {
    min-height: 100vh;
    color: var(--grafite-light);
    background: var(--blue);
    padding: 50px 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    
}



.cellness-section .section-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.cellness-section .cellness-list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.cellness-section .cellness-list .cellness-item {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% / 5 - 50px);
}


.cellness-section .cellness-list .cellness-item .cellness-image {
    max-width: 83%;
    aspect-ratio: 1;
    margin-bottom: 15px;
    object-fit: contain;
    
}

#cellness-section-ii {
    /*min-height: 100vh;*/
    width: 100%;
    color: var(--dark);
    background: var(--white-dirty);
    padding: 10px 10px 100px;
    margin: 0;
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius: var(--border-radius-m);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;   

}

.cellness-item .buttons {
    display: flex;
    width: auto;
    gap: 10px;
}

.cellness-item .button {
    margin-top: 30px;
    padding: 8px 20px;
    border: 2px solid transparent;
    color: var(--grafite);
    border-radius: var(--border-radius-m);
    background-color: var(--green);
    font-weight: var(--font-weight-medium);
    transition: 0.4s ease;
}

.cellness-item .button:hover {
    color: var(--blue);
    border-color: var(--blue);
    background: transparent;
}

.cellness-section .cellness-info {
    padding-left: 20px;
    margin-top: 20px;
    max-width: 50%;
}

.cellness-section .cellness-info .text {
    padding: 20px;
}

.cellness-section .cellness-image-wrapper {
    max-width: 80%;
    height: 80%;
    padding-top: 80px;
}

.cellness-section .cellness-image-wrapper-piccolo {
    max-width: 40%;
    height: 40%;
    padding-top: 80px;
}

.cellness-section .cellness-image-wrapper .cellness-photo{
    border-radius: var(--border-radius-s);
}

.cellness-section .cellness-image-wrapper-piccolo .cellness-photo-piccola{
    border-radius: var(--border-radius-s);

}    

.cellness-info .section-subtitle {
    padding-bottom: 30px;
}

.cellness-info {
    color: var(--white);
    line-height: 30px;
}

.cellness-info-box {
    width: 70%;
    display: flex;
    gap: 30px;
    color: var(--white);
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    

}

.cellness-info-box .text {
    padding: 10px;
    border: 1px solid var(--grafite-light);
    margin: 10px;
    border-radius: var(--border-radius-s);
}

/* Prodotti Slider Style */
.prodotti-section {
    padding: 50px 0 100px;
    background: var(--white);
}

.prodotti-section .slider-wrapper {
    overflow: hidden;
    margin: 0 60px 50px;
}

.prodotti-section .prodotto {
    user-select: none;
    display: flex;
    padding: 35px;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.prodotti-section .prodotto .prodotto-image {
    width: 250px;
    height: 250px;
    object-fit:contain
    margin-bottom: 50px;
    /* border-radius: var(--border-radius-circle); */
}

.prodotti-section .prodotto .name {
    margin-bottom: 16px;
    font-size: var(--font-size-m);
}

.prodotti-section .prodotto .descrizione {
    line-height: 25px;
}

.prodotti-section .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    background: var(--grafite);
}

.prodotti-section .swiper-slide-button {
    margin-top: -50px;
    color: var(--grafite);
    font-weight: 600;
    transition: 0.3s ease;
}

.prodotti-section .swiper-slide-button:hover {
    color: var(--grafite-light);
}


/* Gallery Style */
.gallery-section {
    padding: 50px 0 100px;
    min-height: 100vh;
}

.gallery-section .gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.gallery-section .gallery-list .gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius-s);
    width: calc(100% / 3 - 32px);
}

.gallery-section .gallery-list .gallery-item .gallery-image {
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    transition: 0.3s ease;
}

.gallery-section .gallery-list .gallery-item:hover .gallery-image {
    transform: scale(1.3);
}


/* Contact Us Style */
.contact-section {
    padding: 50px 0 100px;
    background: var(--green-moduli);
    color: white;
    min-height: 100vh;
}

.contact-section .text {
    line-height: 9px;
    margin: 30px 0 30px;
    text-align: center;
    font-size: var(--font-size-n);
    font-weight: var(--font-weight-medium);
}

.contact-section .section-content {
    padding-top: 30px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-section .contact-info-list .contact-info {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}

.contact-section .contact-info-list .contact-info i {
    font-size: var(--font-size-m);
}

.contact-section .contact-form {
    max-width: 50%;
    text-align: center;
}

.contact-section .contact-form .form-input {
    width: 100%;
    height: 50px;
    padding: 0 12px;
    outline: none;
    margin-bottom: 16px;
    background: var(--white);
    border-radius: var(--border-radius-s);
    border: 1px solid var(--grafite-light);
}

.contact-section .contact-form .form-input:focus {
    border-color: var(--grafite);
}

.contact-section .contact-form textarea {
    height: 100px;
    padding: 12px;
    resize: vertical;
}

.contact-section .contact-form .submit-button {
    padding: 10px 26px;
    margin-top: 50px;
    color: var(--white);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    background: var(--green-moduli);
    border-radius: var(--border-radius-m);
    
    transition: 0.3s ease;
    border: 3px solid var(--green);
}

.contact-section .contact-form .submit-button:hover {
    color: var(--grafite);
    background: transparent;
}


/* Footer Style */
.footer-section {
    padding: 20px 0;
    background: var(--grafite);
}

.footer-section .section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-section .social-link-list {
    display: flex;
    gap: 25px;
}

.footer-section .social-link-list .social-link {
    font-size: var(--font-size-l);
}

.footer-section .social-link-list .social-link:hover,
.footer-section .policy-text .policy-link:hover {
    color: var(--white);
}

.footer-section .policy-text .separator {
    margin: 0 5px;
    color: var(--white);
}

.footer-section :where(.copyright-text, .social-link, .policy-link) {
    color: var(--grafite-light);
    transition: 0.2s ease;
}

/* Responsive max width 1051 px */
@media screen and (max-width: 1051px) {
    :root {
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;
    }
    
    .hero-section {
        min-height: 100vh;
        background: var(--grafite);
        background-image: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7)), url('img/img-render/TRIO.LIGHT.GOOD.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        opacity: 95%;
        
    }

    .poltrone-section .poltrone-list {
        /* flex-direction: column; */
        gap: 60px;
    }

    .poltrone-section .poltrone-list .poltrone-item {
        width: calc(100% / 3 - 60px);
    }

    body.show-mobile-menu header::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(0, 0, 0, 0.2);
    }

    .navbar :where(#menu-close-button, #menu-open-button) {
        display: block;
        font-size: var(--font-size-l);
    }

    .navbar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .navbar #menu-open-button {
        color: var(--green);
    }

    .navbar .nav-menu {
        display: block;
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        background: var(--white);
        transition: left 0.2s ease;
    }

    body.show-mobile-menu .navbar .nav-menu {
        left: 0 !important;
    }

    .navbar .nav-menu .nav-link {
        color: var(--grafite);
        display: block;
        margin-top: 17px;
        font-size: var(--font-size-l);
    }
    
    .landing-page .hero-details .buttons {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        width: 90%;
        gap: 20px;
    
    }
    .hero-section .section-content {
        gap: 50px;
        text-align: center;
        padding: 30px 20px 20px;
        flex-direction: column;
        justify-content: center;
    }

    .hero-section .hero-details :is(.subtitle, .description), .about-section .about-details, .contact-section .contact-form {
        max-width: 100%;
    }

    .hero-section .hero-details .buttons {
        justify-content: center;
    }

    .hero-section .hero-image-wrapper {
        max-width: 270px;
        margin-right: 0;
    }

    .design-section .section-content{
        gap: 70px;
        flex-direction: column;
        
    }
    
    .design-section .section-content .design-details {
        text-align: center;
    }
    .design-section .section-content .about-image-wrapper {
        width: 90%;
        text-align: center;
    }

    .design-section .section-content .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        /*max-width: 500px;*/
        /* aspect-ratio: 1; */
    }

    .design-section .design-details {
        width: 70%;
        font-size: var(--font-size-s);
    }

    .cellness-section {
        min-height: 100vh;
        color: var(--grafite-light);
        background: var(--blue);
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row; 
    }

    .cellness-section .section-content {
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }


    .cellness-section .section-content .cellness-info {
        padding: 0;
        margin: 0;
        max-width: 100%;
        font-size: var(--font-size-s);
        font-weight: var(--font-weight-light);
        text-align: center;
       
    }

    .cellness-section .section-content .cellness-image-wrapper {
        width: 90%;
        text-align: center;
    }


    .cellness-section .section-content .cellness-image-wrapper .cellness-photo{
        max-width: 100%;
        padding: 0;
        margin: 0;
        
    }

    .cellness-section .cellness-list {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
 
    }

    .cellness-section .cellness-list .cellness-item {
        display: flex;
        align-items: center;
        text-align: center;
        flex-direction: column;
        justify-content: space-between;
        width: calc(100% / 5 - 50px);
     
    }


    .cellness-section .cellness-list .cellness-item .cellness-image {
        width: 90%;
        aspect-ratio: 1.2;
        margin-bottom: 15px;
        object-fit: cover;
       
        
    }

    .cellness-section .section-content .cellness-image-wrapper {
        max-width: 90%;
        width: 50%;
        padding: 0;
        margin: 0;
        height: auto;
        margin-top: 30px;
        
    }

    .design-section .section-content .about-image-wrapper .about-image {
        
        width: 80%;
        height: auto;
        object-fit: cover;
        padding: 10px 10px 10px;

    }

    

    .about-section .section-content {
        gap: 70px;
        flex-direction: column;
    }

    .about-section .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
    }

    .poltrone-section .poltrone-list {
        flex-direction: column;
        gap: 30px;
    }

    .poltrone-section .poltrone-list .poltrone-item {
        width: calc(100% / 2 - 60px);
    }

    .poltrone-section .poltrone-list .poltrone-item .poltrone-image {
        max-width: 200px;
    }

    .cellness-section {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .cellness-section .cellness-image-wrapper {
        width: 400px;
        height: auto;
        max-width: 250px;
        
        /*padding-top: 50px;*/
    }

    .gallery-section .gallery-list {
        gap: 30px;
    }

    .gallery-section .gallery-list .gallery-item {
        width: calc(100% / 2 - 30px);
    }

    .contact-section .section-content {
        align-items: center;
        flex-direction: column-reverse;
    }
}


/* Responsive max width 800px */
@media screen and (max-width: 800px) {
    
    .cellness-section .section-content .cellness-image-wrapper {
        max-width: 80%;
        width: 80%;
        padding: 0;
        margin: 0;
        height: auto;
        margin-top: 30px;
    }

    .design-section .section-content .about-image-wrapper .about-image {
        
        width: 80%;
        height: auto;
        object-fit: cover;
        padding: 10px 10px 10px;

    }

    .cellness-section .cellness-list {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    .cellness-section .cellness-list .cellness-item {
        display: flex;
        align-items: center;
        text-align: center;
        flex-direction: column;
        justify-content: space-between;
        width: 60%;
        /*width: calc(100% / 5 - 50px);*/

    }
    
    .cellness-section .cellness-list .cellness-item .buttons{
        margin-bottom: 25px;
    }

    .cellness-section .cellness-list .cellness-item .cellness-image {
        object-fit: contain;
    }

    #cellness-section-ii {
        width: 60%;
        color: var(--dark);
        background: var(--white-dirty);
        padding: 10px 10px 10px;
        margin: 0;
        margin-top: 50px;
        margin-bottom: 50px;
        border-radius: var(--border-radius-m);
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
    }

}

/* Responsive max width 640px */
@media screen and (max-width: 640px) {
        .navbar :where(#menu-close-button, #menu-open-button) {
        display: block;
        font-size: var(--font-size-l);
    }
    
    .hero-section .section-content {
        min-height: 40vh;
    }
    
    .section-title {
        text-align: center;
        padding: 80px 0 5px;
        text-transform: uppercase;
        font-size: var(--font-size-l);
    }
    .thx-page .hero-details {
        margin-left: 50px;
        margin-right: 50px;
        margin-top: 60px;
        width: 100%;
        text-align: center;
    }

    .thx-page .hero-details .title {
        font-size: var(--font-size-xxl);
        
    }

    .thx-page .hero-details .subtitle {
        margin-top: 30px;
        max-width: 100%;
        font-size: var(--font-size-l);
        font-weight: var(--font-weight-normal);
        line-height: 1.8;
    }


    .hero-section .hero-details .buttons {
        display: flex;
        width: 100%;
        gap: 10px;
    }

    
   

    .landing-page .hero-details  {
        width: 100%;
        text-align: center;
        
    }

    .landing-page .hero-details .subtitle {
        margin-top: 8px;
        max-width: 100%;
        font-size: var(--font-size-xl);
        font-weight: var(--font-weight-semibold);
        text-align: center;
    }

    .landing-page .hero-details .description {
        max-width: 100%;
        margin: 0px 0 80px;
        text-align: center;
        font-size: var(--font-size-m);
    }

    .landing-page .hero-details .buttons {
        margin-top: 50px;
        display: flex;
        justify-content: space-around;
        flex-direction: row;
        width: 100%;
        gap: 20px;
    }

    .landing-page .hero-details .button {
        padding: 8px 10px;
        border: 2px solid transparent;
        color: var(--grafite);
        border-radius: var(--border-radius-m);
        background-color: var(--green);
        font-weight: var(--font-weight-medium);
        transition: 0.4s ease;
    }

    .landing-page .hero-details .button:hover,
    .landing-page .hero-details .contact-us {
        color: var(--white);
        border-color: var(--white);
        background: transparent;
    }

    .landing-page .hero-details .contact-us:hover {
        color: var(--grafite);
        border-color: var(--green);
        background: var(--green);
    }

    .hero-section .hero-details .description {
        gap: 0;
        width: 100%;
        padding: 0;

        margin-top: 10px;

        
    }

    .hero-section .hero-details {
        width: 100%;
        
        
    }

    .hero-section .hero-details .button {
        padding: 8px 50px;
        border: 2px solid transparent;
        color: var(--grafite);
        border-radius: var(--border-radius-m);
        background-color: var(--green);
        font-weight: var(--font-weight-medium);
        transition: 0.4s ease;
    }

    .hero-section .hero-details .button:hover,
    .hero-section .hero-details .contact-us {
        color: var(--white);
        border-color: var(--white);
        background: transparent;
    }

    .hero-section .hero-details .contact-us:hover {
        color: var(--grafite);
        border-color: var(--green);
        background: var(--green);
    }


    .poltrone-section .poltrone-list {
        /* flex-direction: column; */
        gap: 60px;
    }

    .poltrone-section .poltrone-list .poltrone-item,
    .gallery-section .gallery-list .gallery-item {
        width: 100%;
    }


    .cellness-section .section-content .cellness-image-wrapper {
        max-width: 80%;
        width: 80%;
        padding: 0;
        margin: 0;
        height: auto;
        margin-top: 30px;
        border-radius: var(--border-radius-m);        
    }

    
            
    
    .cellness-section .cellness-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        
    }
    
    .cellness-section .cellness-list .cellness-item .cellness-image {
        margin-top: 50px;
        width: 150%;
        max-width: 150%;
        margin-bottom: 5px;
        object-fit: cover;
        
        
    }


    .cellness-section .cellness-image-wrapper-piccolo {
        max-width: 40%;
        height: 40%;
        padding-top: 0px;
    }

    .design-section .section-content .about-image-wrapper {
        max-width: 80%;
        width: 75%;
        padding: 0;
        margin: 0;
        height: auto;
        margin-top: 30px;
    }

    .design-section .section-content .about-image-wrapper .about-image {
        
        width: 100%;
        height: auto;
        object-fit: cover;
        padding: 10px 10px 10px;

    }

    .prodotti-section .slider-wrapper {
        margin: 0 0 30px;
    }

    .prodotti-section .swiper-slide-button {
        display: none;
    }

    .footer-section .section-content {
        flex-direction: column;
        gap: 20px;
    }

    .grid-container {
      grid-template-columns: 1fr;
    }
    .product.top,
    .product.bottom {
      grid-column: auto;
      height: 250px;
    }

    .contact-section .text {
        line-height: 20px;
        margin: 10px 0 10px;
        text-align: center;
        font-size: var(--font-size-s);
        font-weight: var(--font-weight-light);
    }

}

