/* Reset CSS Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
    font-weight: 300;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    background-color: #fff;
    color: #000;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}


/* Titoli */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 400;
    font-family: "Cormorant Garamond", serif;
}

h1 {
    font-size: 8em;
    line-height: 1;
    letter-spacing: 1;
}

h2 {
    font-size: 3.5em;
}

h3 {
    font-size: 2em;
}

h4 {
    font-size: 1.5em;
}

h5 {
    font-size: 1.25em;
}

h6 {
    font-size: 1.1em;
}
  
.h-parag {
    width: 70%;
    line-height: 1.1;
    margin-bottom: 15px;
}

@media (max-width: 998px) {

    .h-parag {width: 100%;}

    h2 {
        font-size: 2.5em;
    }
    
}

.p-parag {
    font-weight: bold;
    margin-bottom: 20px;
}

.text-parag {
    font-weight: 300;
    margin-bottom: 40px;
}

/* Griglia */
.grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap!important;
    flex-flow: row;
    padding: 0 15px;
    margin: 0 auto;
}

.col-20 { width: 20%;}
.col-25 { width: 25%;}
.col-30 { width: 30%;}
.col-33 { width: 33%;}
.col-40 { width: 40%;}
.col-45 { width: 45%;}
.col-50 {width: 50%;}
.col-60 { width: 60%;}
.col-70 { width: 70%;}
.col-80 {width: 80%; }
.col-90 {width: 90%;}
.col-100 {width: 100%;}

@media (max-width: 768px) {
    [class*='col-'] {width: 100%;}
}



/* Header generale */
header {
    padding: 30px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    
    z-index: 1000;
}

/* Logo */
.logo {
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo img {
    height: 50px;
}

/* Seconda riga dell'header */
.header-snd-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Links */
.links {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.links ul {
    list-style: none;
    display: flex;
    gap: 60px;
}

.links ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.links ul li a:hover {
    color: #e91e63;
}

.links ul li .link-active {color: #e91e63}

/* Icone profilo-carrello */
.icons {
    display: flex;
    gap: 20px;
}

.icons img {
    height: 25px;
}

/* Mobile menù */

.mobile-menu {
    position: fixed;
    top: 100px;
    right: -100%;
    width: 100%;
    height: calc(100% - 100px);
    background-color: #FDC7D0;
    transition: right 0.3s ease-in-out;
    z-index: 999;
}

.menu-content {
    padding: 70px 30px;
    display: flex;
    flex-flow: column;
    width: 100%;
    height: auto;
}

.menu-item {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.menu-item a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 25px;
    padding: 10px;
    transition: color 0.3s ease;
}

.menu-item:hover {
    background-color: #fff;
    transform: scale(1.05);
}

.menu-item:hover a {
    color: #FDC7D0;
}

.menu-item img {width: 40px; height: 40px;}


.hamburger {
    display: none;
    font-size: 2em;
    cursor: pointer;
}

.hamburger img {
    justify-self: center;
    min-width: 30px;
    max-width: 50px;
}

.mobile-active {
    background-color: #fff;
    transform: scale(1.05);  
}

.mobile-active a {
    color: #FDC7D0;
}

@media (max-width: 998px) {

    header {
        padding:20px 30px;
    }
    .logo {
        justify-content: space-between;
        align-items: center;
    }
    .logo img {
        height: 60px;
    }
    .header-snd-row {
        display: none;
    }
    .hamburger {
        display:flex;
    }

}

.mobile-menu.open {
    right: 0;
}

/* Footer */

.footer {
    width: 100%;
    padding: 70px 0px 70px 0px;
    
}

.footer .footer__row-1 {
    padding: 40px 120px;
    border-top: 5px solid #FDC7D0;
    border-bottom: 5px solid #FDC7D0;
    margin-bottom: 50px;
}

.footer__colonna {

    display: flex;
    flex-flow: column;
    justify-items: left;
    padding: 10px;
    gap: 20px;

}

.footer__colonna a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
}

.footer__colonna__items {

    display: flex;
    flex-flow: column;
    gap: 10px;

}

.footer .footer__row-2 {
    padding: 20px 120px;
    border-top: 5px solid #FDC7D0;
    border-bottom: 5px solid #FDC7D0;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
}

@media (max-width: 998px) {
    .footer [class*='col-'] {width: 100%;}

    .footer .footer__row-1 {padding: 40px 30px;}

    .footer .footer__row-2 {padding: 40px 30px;}

    .footer__logo {margin-bottom: 50px;}
}

/* Hero-Section-Home */
.hero {
    position: relative;
    text-align: center;
    color: #fff;
}

.hero-text {
    position: absolute;
    width: 100%;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 40px 120px;
}

.hero p {
    font-size: 1.2em;
    max-width: 30%;
    text-align: left;
}

.home-title {
    text-align: left;
}

.hero-image {
    position: relative;
}

.hero-image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4976584383753502) 100%);
}

.hero-image img {
    width: 100%;
    min-height: 500px;
    max-height: 800px;
    height: auto;
    opacity: 0.8;
}

/* Media Queries */
@media (max-width: 1024px) {
    
    .home-title h1 {
        font-size: 4em;
        
    }

    .home-title h2 {
        font-size: 2em;
    }
    
}

@media (max-width: 998px) {
    .hero-text {
        flex-direction: column;
        padding: 20px 30px;
    }

    .hero p {
        font-size: 0.9em;
        max-width: 90%;
        text-align: center;
    }

    .home-title {
        text-align: center;
    }

    
}

@media (max-width: 480px) {
    .hero-text {
        padding: 10px 20px;
    }

    .hero p {
        font-size: 0.8em;
        max-width: 100%;
    }

    
}


/* Section-2-Home */

.sec-2 {
    position: relative;
    background-color: #fff;
    padding: 70px 120px 70px 0px;
}

.media-text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.left-column {
    max-width: 50%;
}
.right-column {
    width: 50%;
    padding-left: 50px;
}

.grd-container {
    position: absolute;
    left: 27%;
    bottom: -18%;
}

@media (max-width: 998px) {

    .sec-2 {padding: 70px 30px;}

    .grd-container {
        display: none;
    }
    .left-column {
        max-width: 100%;
        padding-left: 0px;
        margin-bottom: 50px;
    }
    .right-column {
        width: 100%;
        padding-left: 0px;
    }
}

/* Section-3-Home */

.sec-3 {
    background-color: #fff;
    padding: 70px 120px 70px 120px;
}

.imgs-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
    flex-wrap: nowrap;
}

.img-1{
    width: 40%;
}

.img-2{
    width: 40%;
}

@media (max-width: 998px) {
    .sec-3 {padding: 70px 30px;}
}

/* Section-4-Home */

.sec-4 {
    position: relative;
    background-color: #fff;
    padding: 70px 0px 70px 120px;
}

.left-column-1 {
    max-width: 50%;
    padding-right: 50px;
}

.right-column-1 {
    width: 50%;
}

.grd-container-1 {
    position: absolute;
    left: 28%;
    bottom: -5%;
}

@media (max-width: 998px) {

    .sec-4 {padding: 70px 30px;}

    .grd-container-1 {
        display: none;
    }
    .left-column-1 {
        max-width: 100%;
        padding-right: 0px;
        margin-bottom: 50px;
    }
    .right-column-1 {
        width: 100%;
        
    }
}

/* Section-text-effect */

.sec-5 {
    padding: 70px 120px 70px 120px;
    
}

.paragraph-section{
    width: 80%;
    margin: 0 auto;
}

.p-txt {
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    color: #000;
    letter-spacing: 0;
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    line-height: 50px;
    font-family: "Cormorant Garamond", serif;
}

.paragraph-section p.p-txt b {
    font-style: italic;
    font-weight: 500;
    position: relative;
}

.paragraph-section p.p-txt b::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #fae8e5;
    z-index: -1;
}

@media (max-width: 998px) {

    .sec-5 {padding: 70px 30px;}

    .p-txt{
        font-size: 22px;
        line-height: 32px;
    }

    .paragraph-section {width: 100%;}
}

/* Section-cards */

.sec-6 {
    padding: 70px 0px 70px 0px;
}

.cards-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.card {
    width: 50%;
    position:   relative;
}

.card__title {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.btn-position {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {

    .cards-container {
        flex-direction: column;
    }

    .cards-container .card {
        width: 100%;
    }

    .card .btn-card {padding: 10px 30px;}
}

/* Section-CTA */

.sec-7 {
    padding: 70px 120px 70px 120px;
    background-color: #C66C95;
}

.sec-7 h2 {

    margin-bottom: 50px;
}

.sec-7 p {

    width: 70%;
    font-size: 20px;
}

.CTA-left {
    display: flex;
    flex-direction: column;
    justify-items: left;
    text-align: left;

}

.CTA-right {
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
}

@media (max-width: 998px) {

    .sec-7 {padding: 70px 30px;}

    .sec-7 [class*='col-'] {width: 100%;}

    .sec-7 h2 {
        margin-bottom: 30px;
    }

    .CTA-left {
        
        justify-items: center;
        text-align: center;
    
    }

    .CTA-left p {
        align-self: center;
        font-size: 16px;
    }

    .CTA-right {

        justify-content: center;
        margin-top: 30px;

    }

}

/* Hero-Chi-Siamo */

.hero-chi-siamo {
    width: 100%;
    position: relative;
    text-align: center;
    color: #fff;
}

.hero-text-chi {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 40px 120px;
}

.hero-text-chi h2 {
    margin: 0;
    padding: 20;
    text-rendering: optimizeLegibility;
    color: #fff;
    letter-spacing: 0;
    margin-bottom: 0;
    font-size: 6rem;
    font-weight: 600;
    text-align: center;
    line-height: 50px;
    font-family: "Cormorant Garamond", serif;
    position: relative;
}

.hero-text-chi h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FDC7D0;
    z-index: -1;
}

.hero-chi-img {
    position: relative;
}

.hero-chi-img::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4976584383753502) 100%);
}

.hero-chi-img img {
    width: 100%;
    min-height: 500px;
    max-height: 800px;
    height: auto;
    opacity: 0.8;
}

@media (max-width: 998px) {
    .hero-text-chi h2 {
        font-size: 4rem;
    }

    .hero-text-chi h2::after {
        height: 90%;
        bottom: -8px;
    }
}

/* Section-2-Chi */

.sec-2-chi {
    position: relative;
    background-color: #fff;
    padding: 70px 120px 70px 120px;
}

.media-text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.left-column{
    max-width: 50%;
}
.right-column {
    width: 50%;
    padding-left: 50px;
}

.grd-container {
    position: absolute;
    left: 27%;
    bottom: 0%;
}

@media (max-width: 998px) {

    .sec-2-chi {padding: 70px 30px;}

    .grd-container {
        display: none;
    }
    .left-column {
        max-width: 100%;
        padding-left: 0px;
        margin-bottom: 50px;
    }
    .right-column {
        width: 100%;
        padding-left: 0px;
    }
}

/* Section-4-Chi */

.sec-4-chi {
    padding: 70px 120px 70px 120px;
    width: 100%;
    background-color: #fff;
    position: relative;
}



.sec-4-chi .bg-sec-4-chi::before {
    display: block;
    position: absolute;
    top: 0%;
    width: 70%;
    content: "";
    left: 0;
    bottom: 0;
    background-color: #fae8e5;
    z-index: 0;
    
}


.sec-4-chi .col-50 {
    padding-left: 50px;
}

@media (max-width: 998px) {
    .sec-4-chi [class*='col-'] {width: 100%;}
    .sec-4-chi {padding: 70px 30px;}
    .sec-4-chi .col-50 {
        padding-left: 0px;
        margin-top: 50px;
    }
    .sec-4-chi .grid > .col-50:first-child {
        order: 2;
    }
    .sec-4-chi .grid > .col-50:last-child {
        order: 1;
    }
    .sec-4-chi .bg-sec-4-chi::before {
        top: 250px;
        width: 100%;
    }
}


/* Section-hero-contatti */
.sec-hero-contatti {
    width: 100%;
    padding: 0px
}

.sec-hero-contatti .grid {
    padding: 0px;
}

.maps-container {
    padding: 70px 120px 70px 50px;
    background-color: #FDC7D0;
    height: 100%;
    display: flex;
    flex-flow: column;
    gap: 35px;
}


.contatti-info {
    display: flex;
    flex-flow: row;
    
    align-content: center;
    padding: 10px;
    gap: 10px;
}

.contatti-info-1 {
    display: flex;
    flex-flow: row;
    align-content: center;
    padding: 10px;
    gap: 10px;
}

.contatti-info-1 p {
    width: 100%;
}

.contatti-info p {
    width: 60%;
}

.contatti-info img {max-width: 25px;}
.contatti-info-1 img {max-width: 25px;}
.maps img {
    width: 100%;
    height: 100%;
}



@media (max-width: 998px) {
    .sec-hero-contatti [class*='col-'] {width: 100%;}
    .sec-hero-contatti {
        padding: 0;
        height: auto;
    }

    .maps-container {
        padding: 70px 30px;
        gap: 25px;
    }
    .maps img {aspect-ratio: 1;}
    
}

/* Sction-form-contatti */

.sec-2-con {
    width: 100%;
    padding: 70px 120px;
}

.form {
    display: flex;
    flex-flow: column;
    gap: 15px;
    margin-bottom: 30px;
    
}

.form p {font-weight: 600;}

.form .grid {gap: 10px; flex-wrap: nowrap!important;padding: 0px;}

.form .col-100 {height: 100px;}

.border {border: 1px solid #000; border-radius: 10px; height: 50px;}

@media (max-width: 998px) {
    .sec-2-con [class*='col-'] {width: 100%;}
    .sec-2-con {
        padding: 70px 30px;
    }
    .hero-text-con h2 {

        font-size: 4rem;
      
    }
    
}

/* Section-repeater-Shop */

.sec-repeater {
    width: 100%;
    padding: 70px 120px;
}

.repeater-container {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    gap: 50px;
}

.repeater-btns {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
}

.btns__sorting {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sorting-btn {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 10px;
    border: 1px solid #000;
}

.sorting-btn img {
    width: 16px;
}

.repeater-nav {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.nav__btn {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    cursor: pointer;
}

.nav__btn p {
    font-weight: 600;
    font-size: 22px;
}

.nav__btn--active {
    background-color: #FDC7D0;
    color: #fff;
    border: 0px;
}

.pg {display: none;}

.pg--open {display: flex;}

.sec-repeater .grid {
    justify-content: space-between;
    padding: 0px;
    row-gap: 40px;
}

.repeater__card {
    position: relative;
}

.description-container {
    position: absolute;
    bottom: 0%;
    left: 0%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    width: 100%;
    height: 0%;
    z-index: 1;
    background: rgba(255,255,255,0.8);
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    overflow: hidden;
    
    
}
.description-container--open{
    height: 30%;
    
}

.card__title {
    padding: 0px 20px;
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #000;
}

.card__title p {font-weight: 600;}

.card__btn {
    display: flex;
    flex-flow: row;
    align-items: center;
    width: 100%;
    gap: 10px;
    justify-content: left;
    padding: 0px 20px;
}
.card__btn img {width: 20px;}
.card__btn a {color: #000;text-decoration: none;}

.card__price {
    display: flex;
    flex-flow: row;
    justify-content: left;
    align-items: center;
    padding: 0px 20px;
}


@media (max-width: 1024px) {
    .sec-repeater [class*='col-'] {width: 45%;}   
}

@media (max-width: 998px) {
    .sec-repeater [class*='col-'] {width: 100%;}
    .sec-repeater {
        padding: 70px 30px;
    }
    
    
}

@media (max-width: 768px) {
    .repeater-btns {flex-flow: column;}
    .btns__sorting {
        justify-content: left;
        width: 100%;
        margin-bottom: 25px;
    }
    .repeater-nav {
        justify-content: left;
        width: 100%;
    }
    .sorting-btn {gap: 15px;}
    
    
}


/* Section-1-single */

.sec-1-prd {
    width: 100%;
    padding: 70px 120px;
}

.prd-container {
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 50px;
}

.breadcrumb {
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: left;
    align-items: center;
    gap: 10px;
}
.breadcrumb img {width: 20px;height: 16px;}
.breadcrumb a {
    font-size: 16px;
    padding: 5px;
    color: #000;
    text-decoration: none;
}

.prd-container .grid {
    justify-content: space-between;
    padding: 0px;
}

.reviews-stars {
    display: flex;
    flex-flow: row;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.prd-container .col-50 .reviews-stars p {
    font-size: 20px;
    text-wrap: nowrap;
    margin-bottom: 0px;
}

.stars-container {
    width: 100%;
    display: flex;
    flex-flow: row;
    align-items: center;
    gap: 5px;
}

.taglia-container {
    display: flex;
    flex-flow: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.prd-container .col-50 .taglia-container p {font-weight: 600;margin-bottom: 0px;}

.taglia__btn {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
    margin-right: 20px;
    border: 1px solid #000;
}
.taglia__btn p {margin-bottom: 0px;}

.prd-container .col-50 h4 {margin-bottom: 30px;}
.prd-container .col-50 p {margin-bottom: 30px;}

.cat-container {
    width: 100%;
    display: flex;
    flex-flow: row;
    align-items: center;
    gap: 5px;
}
.prd-container .col-50 .cat-container p {margin-bottom: 0;}
.cat-container a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 998px) {
    .sec-1-prd [class*='col-'] {width: 100%;}
    .sec-1-prd {
        padding: 70px 30px;
    }
    
    
}

@media (max-width: 768px) {
    .breadcrumb img {width: 16px;height: 14px;}
    .prd-container .col-50 .reviews-stars p {font-size: 16px;}
    .reviews-stars {gap: 15px;}
    .stars-container img {width: 18px;}
}


/* Section-2-single */

.sec-2-prd {
    width: 100%;
    padding: 70px 120px;
}
.sec-2-prd .grid {
    padding: 0px;
    gap: 30px;
}

.sec-2-prd .col-50 h3 {margin-bottom: 30px;line-height: 1;}

.descr-btn {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    gap: 30px;
}

.descr-btn--active {
    border: 1px solid #FDC7D0;
    border-left: 0px;
}

.chev-none {display: none;}
.chev--block {display: block;}

@media (max-width: 998px) {
    .sec-2-prd [class*='col-'] {width: 100%;}
    .sec-2-prd {
        padding: 70px 30px;
    }
    
    
}

/* Section-cart */

.sec-cart {
    width: 100%;
    padding: 70px 120px;
}

.sec-cart .grid {padding: 0px;column-gap: 30px;}

.cart-container {
    width: 100%;
    padding: 20px;
  }

  .cart-title {width: 100%; border-bottom: 1px solid #FDC7D0;}
  .cart-title h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .cart-item {
    display: flex;
    flex-flow: column;
    gap: 20px;
    padding: 20px 0px;
    margin-bottom: 20px;
  }
  .cart-item .col-20 {padding: 0px 20px 70px 0px;}
  .cart-item .col-20 img {object-fit: cover;width: 100%;}

  .cart-prod {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5px;
  }

  .cart-description {
    display: flex;
    flex-flow: column;
    gap: 20px;
  }
  .cart-description a {color: #000;font-weight: 600;}
  .cart-description p {font-size: 14px;}

  .prd-cost {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
  }
  .prd-cost p {font-weight: 500;}


  .cart-resume {
    display: flex;
    flex-flow: column;
    gap: 20px;
    padding: 20px 0px;
  }
  
  
  .product-pricing {
    padding-bottom: 5px;
    margin-bottom: 20px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: left;
    border-bottom: 1px solid #FDC7D0;
  }
  
  .quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  
  .quantity-btn {
    background-color: #e91e63;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
  }
  
  .cart-summary {
    text-align: left;
    padding: 10px 0;
  }
  
  .cart-summary p {
    font-size: 1.2em;
    
  }
  .cart-summary h4 {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
  }
  
  .checkout-button {
    display: block;
    width: 100%;
    background-color: #e91e63;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1.2em;
    cursor: pointer;
    text-align: center;
  }
  
  @media (max-width: 998px) {
      .sec-cart [class*='col-'] {width: 100%;}
      .sec-cart {
         padding: 70px 30px;
        }
      .sec-cart .grid {row-gap: 0px; column-gap: 0px;}
       .cart-prod {display: none;}
       .cart-item .col-20 {padding: 0px; max-height: 70%;}
      .cart-item .col-20 img {height: 100%;}
      .product-pricing p {font-weight: 600;}
    
    
    }


/* Section-checkout */
.sec-checkout {
    width: 100%;
    padding: 70px 120px;
}
.container {
    width: 100%;
    display: flex;
    flex-flow: column;
    padding: 50px 0px;
}
.container h3 {
    font-weight: 600;
    margin-bottom: 10px;
}
.container p {margin-bottom: 20px;}

.sec-checkout .grid {
    padding: 0px;
    justify-content: space-between;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    width: 100%;
}
input[type='text'],
input[type='email'],
input[type='number'] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
input[type='number'] {
    width: 100%;
}
input[type='submit'] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
input[type='submit']:hover {
    background-color: #0056b3;
}

.summary {
    padding: 50px 0px;
}

.accordion {
    width: 100%;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
}

.accordion-item {
    border-bottom:1px solid #000;
}
.accordion-item .col-20 img {
    width: 100%;
    object-fit: cover;
}
.accordion-item .cart-description p {font-size: 14px;}

.accordion-title {
    cursor: pointer;
    padding: 15px;
}
.accordion-title p {
    font-weight: 600;
    font-size: 22px;
}

.accordion-content {
    max-height: 0px;
    overflow: hidden;
}
.accordion-content--open {
    max-height: 400px;
    padding: 10px;
    border-top: 1px solid #000;
}

@media (max-width: 998px) {
    .sec-checkout [class*='col-'] {width: 100%;}
    .sec-checkout {
       padding: 70px 30px;
    }
    .sec-checkout .accordion-item .col-20 {
        width: 20%;
    }
    .sec-checkout .accordion-item .col-70 {
        width: 70%;
    }
    .container {
        padding:50px 0px 0px 0px;
    }
    
}

/* Section-Profilo */

.sec-profilo {
    width: 100%;
    padding: 70px 120px;
}
.sec-profilo .grid {
    padding: 50px 0px;
    justify-content: space-between;
}

#tabs {
    width: 100%;
    display: flex;
    flex-flow: column;
}
#tabs li {
    list-style: none;
    float: left;
    width: 100%;
    height: auto;
}

#tabs li a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    height: auto;
    display: block;
    float: left;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #FDC7D0;
    border-left: 1px solid #FDC7D0;
    border-right: 1px solid #FDC7D0;
}

#tabs li a:hover,
#tabs li a:active {
    background-color: #FDC7D0;
}


#container {
    clear: both;
}

.content {display: none;}
.tab-content--open {display: block;}

@media (max-width: 998px) {
    .sec-profilo [class*='col-'] {width: 100%;}
    .sec-profilo {
       padding: 70px 30px;
    }
    .sec-profilo .col-33 {order: -1;}
    .sec-profilo .grid {
        padding:50px 0px 0px 0px;
        gap: 50px;
    }
}



/* Helpers */

.bt-rosa {border-top: 1px solid #FDC7D0;}
.bb-rosa {border-bottom: 1px solid #FDC7D0;}
.black { background-color: #000;}

.button {
    display: inline-block;
    border: 1px solid #000;
    border-radius: 15px;
    padding: 5px 50px;
}
  
.button a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: center;
}
  
.button .arrow-icon {
    margin-right: 10px;
    max-width: 50px;
}

@media (max-width: 768px) {
    
    .button a {text-align: center;}

    .button .arrow-icon {display: none;}
}
  

.btn-card {
    display: inline-block;
    padding: 10px 50px;
    background-color: #C66C95;
    color: #000;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-card:hover {
    background-color: #a05a7a;
    transform: scale(1.1);
    color: #fff;
}

.img-res {
    width: 100%;
    height: 100%!important;
    object-fit: cover;
}

.aspect-1 {
    aspect-ratio: 1;
}

.aspect-3-4 {
    aspect-ratio: 3/4;
}

.aspect-2-3 {
    aspect-ratio: 2/3;
}

.aspect-custom-1 {
    aspect-ratio: calc(1.8/1);
}

.aspect-16-9 {
    aspect-ratio: 16/9;
}

.w-30 {

    width: 30%;

}

.w-40 {

    width: 40%;

}

.w-50 {

    width: 50%;

}

.mb-10 {
    margin-bottom: 10px;
}

.z-1 {
    z-index: 1;
}

.z-10 {
    z-index: 10;
}

.z-100 {
    z-index: 100;
}

