/*font-face*/

@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato-Regular.woff") format("woff"),
         url("../fonts/Lato-Regular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
    font-style: normal;
  }

@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato-Medium.woff") format("woff"),
         url("../fonts/Lato-Medium.woff2") format("woff2");
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato-Semibold.woff") format("woff"),
         url("../fonts/Lato-Semibold.woff2") format("woff2");
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "CormorantInfant";
    src: url("../fonts/CormorantInfant-Regular.woff") format("woff"),
         url("../fonts/CormorantInfant-Regular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
    font-style: normal;
  }

@font-face {
    font-family: "CormorantInfant";
    src: url("../fonts/CormorantInfant-Medium.woff") format("woff"),
         url("../fonts/CormorantInfant-Medium.woff2") format("woff2");
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: "CormorantInfant";
    src: url("../fonts/CormorantInfant-Semibold.woff") format("woff"),
         url("../fonts/CormorantInfant-Semibold.woff2") format("woff2");
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

/*font-face*/


/*common*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
    font-family: "Lato";
    font-weight: 400;
    line-height: 1.2;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color:#252525;
}

a:hover, 
a:focus {
    opacity: 0.8;
    transition: opacity 0.25s ease-in;
}


button {
    border: none;
    background: none;
    cursor: pointer;
}

button:hover, 
button:focus {
    opacity: 0.8;
    transition: opacity 0.25s ease-in;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
}

.section--top {
    margin-top: clamp(40px, 4vw, 60px);
}

.main-title {
    font-family: CormorantInfant;
    font-size: 74px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.22px;
    font-style: normal;
    text-transform: uppercase;
    /*text-align: center;*/
    margin-top: 0;
    margin-bottom:40px;
    color: var(--text_color); 
}

    @media(max-width: 768px) {
        .main-title {
            font-size: 36px;
            letter-spacing: 1.08px;
        }
    }

    @media(max-width: 543px) {
        .main-title {
            font-size: 20px;
            line-height: 30px;
            letter-spacing: 0.6px;
        }
    }

.main-title--alt {
    text-align: start;
}

.main-title--white {
    color: var(--white);
}

.section-title {
    font-family: CormorantInfant;
    font-size: 48px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    text-align: start;

    color: var(--text_color);  
}

    @media(max-width: 1280px) {
        .section-title {
            font-size: 36px;
            letter-spacing: 1.08px; 
        }
    }

    @media(max-width: 543px) {
        .section-title {
            font-size: 20px;
            line-height: 30px; 
            letter-spacing: 0.6px;
        }
    }


.main-text {
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: 30px;
    letter-spacing: 0.6px;
    text-align: center;

    color: var(--text_color);   
}

    @media(max-width: 1280px) {
        .main-text {
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0.48px;
        }
    }

    @media(max-width: 768px) {
        .main-text {
            font-size: 12px;
            line-height: 18px;
            letter-spacing: 0.36px;
        }
    }

.main-text--sm {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px; 
    letter-spacing: 0;
}

    @media(max-width: 768px) {
        .main-text--sm {
            font-size: 12px;
            line-height: 18px;
        }
    }

.main-text--white {
    color: var(--white);
}

.text-opacity {
    opacity: 0.5;
}

.section-text {
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 24px;
    text-align: start;

    color: var(--text_color);  
}

    @media(max-width: 768px) {
        .section-text {
            font-size: 12px;
            line-height: 18px;
        }
    }

img {
    width:100%;
    height:100%;
    object-fit: cover;
}

.woocommerce-breadcrumb {
    margin: 20px 0 0 0;
}

.woocommerce-breadcrumb span {
    position: relative;
    padding-right: 33px;
}

.woocommerce-breadcrumb span {
    opacity: 0.5;
}

.woocommerce-breadcrumb span:last-child {
    font-weight: 600;
}

.woocommerce-breadcrumb span::after {
    content: "";
    position: absolute;
    top: 2px;
    right: 8px;
    width: 17px;
    height: 17px;
    background: url('../img/arrow_select.svg') 0 0 / 100% no-repeat;
}


/*common*/

/*----------------------------------header---------------------------------*/

.header-container {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(37, 37, 37, 0.10);
}

    @media(max-width: 768px) {
        /*.header-container {*/
        /*    background-color: var(--add_color_light-gray);*/
        /*}*/
    }

.header {
    position: sticky;
    top: 0;
    min-height: 75px;
    display: flex;
    background-color: var(--white);
    z-index: 100;
}

.header-logo {
    display: flex;
}

.header-logo img {
    width: 162px;
    height: 47px;
}

.header-menu-group {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    @media(max-width: 768px) {
        .header-menu-group {
            display: none;
        }
    }


.nav {
    width: 100%;
    display: flex;
    align-items: center;
    margin-left: clamp(60px, 6vw, 100px);
    max-width: 260px;
    justify-content: center;
}
.navfooter {
    width: 100%;
    display: flex;
    align-items: center;
    max-width: 260px;
}

    @media(max-width: 768px) {
        .nav {
            margin-left: 0;
        }
    }

.header-menu-group.mobile-active {
    position: absolute;
    top: 100%;
    left: 0;
    max-width: 100%;

    display: flex;
    
    padding: 30px 20px;

    overflow: hidden;
    overflow-y: auto;
    
    background-color: var(--add_color_light-gray);

    margin: 0;

    z-index: 100;
    border-top: 1px solid rgba(37, 37, 37, 0.10);
  }

    @media(max-width: 543px) {
        .header-menu-group.mobile-active {
            flex-direction: column;
            height: auto;
        }
    }


.nav-list {
    width: 100%;
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
}
    @media(max-width: 768px) {
        .nav-list {
            margin: 0;
        }
    }

    @media(max-width: 543px) {
        .nav-list {
            flex-direction: column;
            gap: 40px;
            margin-bottom: 40px;
        }
    }

.nav-list-item:not(:last-child) {
    margin-right: 20px;
}

        @media(max-width: 543px) {
            .nav-list-item:not(:last-child) {
                margin-right: 5px;
            }
        }

.nav-list-item-link {
    position: relative;

    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 28px 5px;

    color: var(--text_color);  
}

    @media(max-width: 768px) {
        .nav-list-item-link {
            padding: 10px 5px;
        }
    }

.nav-list-item-link.active {
    border-bottom: 2px solid var(--text_color);
}

.nav-list-item-link::after {
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 5px;

    height: 1px;
    content: '';
    background-color: var(--text_color);
    /* transition: opacity .5s 0.3s ease-in; */
    
}

@keyframes firstAnimation {
    0% {
        width: 0;
    }

    100% {
        width: calc(100% - 10px); 
    }
}

.nav-list-item-link:focus::after,
.nav-list-item-link:hover::after {
    opacity: 1;
    animation: firstAnimation .5s .3s linear forwards;
}

.link-categories {
    display: none;
    margin: 20px;
}

.search-visible {
    display: flex;
    align-items: center;
    margin-left: auto;
    min-height: 36px;
}

    @media(max-width: 543px) {
        .search-visible {
            flex-direction: column;
            gap: 20px;
            margin-left: 0;
        }

        .link-categories {
            display: flex;
        }
    }

.search-visible > a > img {
    width: 24px;
    height: 24px;
}

.header__btn-group {
    display: flex;
    align-items: center;
}

    @media(max-width: 543px) {
        .header__btn-group {
            padding: 20px 0;
            border-top: 1px solid rgba(37, 37, 37, 0.10);
            border-bottom: 1px solid rgba(37, 37, 37, 0.10);
        }
    }

.header__btn-group img {
    width: 24px;
    height: 24px;
}

.search-visible-field {
    position: relative;
    width: 100%;
    max-width: 200px;
    display: none;
    margin-right: 15px;
}

.search-visible-field.active {
    display: flex;
}

.search-visible-field-img {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
}

.search-btn-close {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    width: 24px;
    height: 24px;
}

.header-search-input {
    width: 100%;
    padding: 8px 8px 8px 36px;
    border-radius: 3px;
    border: 1px solid rgba(37, 37, 37, 0.10);
}

.search-btn {
    display: flex;
    padding: 0;
    margin: 0 15px;
}

.search-btn.active {
    display: none;
}

.user-btn {
    display: flex;
    margin: 0 15px;
}

.whatsapp-btn {
    display: flex;
    margin: 0 15px;
}

/*----------------------------------burger---------------------------------*/

.burger {
    display: none;
    width: 40px;
    padding: 0;
    border: none;

    z-index: 101;
  }

  @media(max-width: 768px) {
    .burger {
        display: flex;
        flex-direction: column;
        align-items: end;
        margin-left: auto;
    }
}

  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text_color);
  }

  .burger-line--middle {
    display: block;
    width: 50%;
    margin: 12px 0;
  }

  .burger.active .burger-line--middle {
    display: none;
  }

  .burger.active .burger-line--top {
    transform: rotate(45deg);
    transform-origin: center;
  }

  .burger.active .burger-line--bottom {
    transform: rotate(-45deg);
    transform-origin: center;
    margin-top: -2px; /*temp !!!*/
  }

  

  /*----------------------------------burger-end---------------------------------*/



/*----------------------------------main---------------------------------*/

.visually-hidden {
    position: absolute;
    overflow: hidden;
    margin: -1px;
    border: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
}

.main-section {
    position: relative;
    width: 100%;
    margin-bottom: 44px;
}


.main-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: clamp(20px, 2vw, 40px);
    z-index: 1;
    text-align: start;

}

@media (max-width: 992px) {
    .main-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        bottom: clamp(60px, 2vw, 100px);
        text-align: center;
    }
}

.main-container h1 {
    font-family: CormorantInfant;
    max-width: 520px;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 1.08px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
  }

.main-container p {
    max-width: 440px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--white);
    line-height: 2;
    letter-spacing: 0.08px;
  } 

  /*----------------------------------intro---------------------------------*/

  .intro-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 18px;
    row-gap: 20px;
  }

    @media (max-width: 992px) {
        .intro-content {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .intro-content {
            row-gap: 25px;
        }
    }

    /* @media (max-width: 360px) {
        .intro-content {
            grid-template-columns: 1fr;
        }
    } */

  .intro-content-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
    width: 100%;
  }

  /*----------------------------------intro-end---------------------------------*/

/*----------------------------------video---------------------------------*/

.video-section {
    width: 100%;
    height: 780px;
    background-image: url('../img/vid.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

    @media (max-width: 1280px) {
        .video-section {
            height: 520px;
        }
    }
    @media (max-width: 768px) {
        .video-section {
            height: 360px;
        }
    }
    @media (max-width: 375px) {
        .video-section {
            height: 280px;
        }
    }

.video-section img {
    max-width: 107px;
    max-height: 107px;
}

/*----------------------------------video-end---------------------------------*/

/*----------------------------------questions---------------------------------*/
.questions{
    text-align: center;
}
.questions_block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 80px;
}

    @media (max-width: 1280px) {
        .questions_block {
            padding: 0;
        }
    }

.questions_block-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*align-items: center;*/
    padding: 21px 40px;
    border: 1px solid rgba(37, 37, 37, 0.10);
}
.questions_block-content-left {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    padding: 21px 40px;
    border: 1px solid rgba(37, 37, 37, 0.10);
}
.questions_block-content-left span.main-text{
    text-transform:uppercase;
}

        @media (max-width: 543px) {
            .questions_block-content {
                padding: 8px 12px;
            }
        }

.questions_block-content-btn {
    display: flex;   
    align-items: center;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
}

.questions_block-content-btn .main-text{
    margin-right: 30px;
    text-align: start;
}

        @media (max-width: 820px) {
            .questions_block-content-btn .main-text{
                font-size: 12px;
            }
        }

.questions_block-content-btn.active .main-text{
    color:  var(--main_blue_color);
}

        @media (max-width: 543px) {
            .questions_block-content-btn.active .main-text{
                padding-top: 11px;
            }
        }

.questions_block-content-answer {
    display: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.5;
    padding-right: 20px;
    margin-top: 32px; 
    color:  var(--text_color);
}

    @media (max-width: 1280px) {
        .questions_block-content-answer {
            font-size: 12px;
            line-height: 18px;
            margin-top: 20px;
        }
    }

    @media (max-width: 543px) {
        .questions_block-content-answer {
            margin-top: 12px;
        }
    }

.questions_block-content-answer.active {
    display: flex; 
    text-align:left;
}

.questions_block-content .main-text {
    text-transform: uppercase;
}

.questions_block-content-img {
    max-width: 17px;
    max-height: 17px;
    margin-left: auto;  
}
.bold-text {
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: 30px;
    letter-spacing: 0.6px;
    text-align: left;
    color: var(--text_color);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    border-bottom: 1px solid rgba(37, 37, 37, 0.10);
}

/*----------------------------------questions-end---------------------------------*/

/*-------------------------------------------- reviews --------------------------*/


.reviews-container {
    position: relative;
}


.reviews-section .main-title {
    margin-left: 8px;
    text-align: start;
}

    @media (max-width: 992px) {
        .reviews-section .main-title {
            margin-left: 0;
            text-align: center;
        }
    }

.reviews-slide {
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(37, 37, 37, 0.10);
}

.reviews-slide-img{
    max-width: 346px;
    max-height: 206px;
}

    @media (max-width: 543px) {
        .reviews-slide-img{
            max-width: 100%;
        }
    }

.reviews-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
}

    @media (max-width: 340px) {
        .reviews-content {
            padding: 16px;
        }
    }

.reviews-content .section-text {
    text-transform: uppercase;
}

    @media (max-width: 768px) {
        .reviews-content .section-text {
           font-size: 16px;
        }
    }

    @media (max-width: 340px) {
        .reviews-content .section-text {
           font-size: 14px;
        }
    }

.reviews-content .questions_block-content-btn {
    display: none;
    gap: 12px;
    margin: 10px 0;
    opacity: 0.7;
}

    @media (max-width: 543px) {
        .reviews-content .questions_block-content-btn {
            display: flex;
            text-transform: uppercase;
            padding: 0;
        }

        .reviews-content .questions_block-content-btn.active .main-text {
            padding-top: 0;
        }
    }

.reviews-content .questions_block-content-btn .main-text {
    margin: 0;
    letter-spacing: 0;
}

.reviews-content .questions_block-content-img {
    margin-left: 0;
}

.reviews-slide-stars {
    display: flex;
    gap: 3px;
}

/* .reviews-slide-stars .slider-stars-item:last-child {
    opacity: 0.5;
} */

.slider-stars-item {
    width: 17px;
    height: 17px;
}

.reviews-content .main-text {
    text-align: start;
    margin-top: 8px;
}

.reviews-slide.slick-slide {
    margin: 0 8px;
  }

  .reviews-slider .slick-arrow {
    position: absolute;
    z-index: 10;
    font-size: 0;
    width: 20px;
    height: 20px;
    border: none;
  }

    @media (max-width: 992px) {
        .reviews-slider {
            padding: 0 43px;
        }
    }


.reviews-slider .slick-arrow.slick-prev {
    top: -110px;
    right: 30px;
    background: url('../img/arrow_select.svg') 0 0 / 100% no-repeat;
    rotate: 180deg;
}

    /* @media (max-width: 1280px) {
        .reviews-slider .slick-arrow.slick-prev {
            top: -95px;
        }
    } */

    /* @media (max-width: 992px) {
        .reviews-slider .slick-arrow.slick-prev {
            top: -70px;
        }
    }

    @media (max-width: 768px) {
        .reviews-slider .slick-arrow.slick-prev {
            top: -50px;
        }
    } */

    @media (max-width: 992px) {
        .reviews-slider .slick-arrow.slick-prev {
            left: 0;
            top: 50%;
        }
    }

.reviews-slider .slick-arrow.slick-next {
    top: -110px;
    right: 0;
   background: url('../img/arrow_select.svg') 0 0 / 100% no-repeat;
  }

    /* @media (max-width: 1280px) {
        .reviews-slider .slick-arrow.slick-next {
            top: -95px;
        }
    } */

    /* @media (max-width: 992px) {
        .reviews-slider .slick-arrow.slick-next {
            top: -70px;
        }
    }

    @media (max-width: 768px) {
        .reviews-slider .slick-arrow.slick-next {
            top: -50px;
        }
    } */

    @media (max-width: 992px) {
        .reviews-slider .slick-arrow.slick-next {
            top: 50%;
            right: 0;
        }
    }


/*-------------------------------------------- reviews-end --------------------------*/


/*-------------------------------------------- about --------------------------*/

.main-about-section {
    margin-top: clamp(40px, 7vw, 60px);
}

.main-about-section .main-title {
    font-size: 74px;
    text-align: start;
}

    @media (max-width: 768px) {
        .main-about-section .main-title {
            font-size: 30px;
        }
    }

.about-feedback-container {
    display: flex;
    flex-direction: column;
    align-items: center;
} 

.about-feedback-container h2 {
    margin-bottom: 40px;
}    

    @media (max-width: 768px) {
        .about-feedback-container h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }    
    }

    @media (max-width: 543px) {
        .about-feedback-container h2 {
            font-size: 24px;
        }    
    }

    @media (max-width: 400px) {
        .about-feedback-container h2 {
            text-align: start;
        }    
    }

.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

   @media (max-width: 1280px) {
        .about-content {
            grid-template-columns: 5fr 3fr;
        }
    }
   @media (max-width: 1280px) {
        .about-content--alt {
            grid-template-columns: 3fr 5fr;
        }
    }

    @media (max-width: 992px) {
        .about-content {
            grid-template-columns: 1fr;
        }
    }

.about-content-img {
    max-width: 708px;
    max-height: 740px;
}

    @media (max-width: 992px) {
        .about-content-img {
            max-width: 100%;
            order: -1;
        }
    }

.about-content-fields {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-content-fields .main-text {
    width: 100%;
    max-width: 624px;
    text-align: start;
}

    @media (max-width: 992px) {
        .about-content-fields .main-text  {
            max-width: 100%;
        }
    }

.about-content-fields-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 344px;
    margin-top: auto;
    margin-left: auto;
}

.about-content-fields-item--alt {
    margin-top: 0;
    margin-left: 0;   
}

    @media (max-width: 992px) {
        .about-content-fields-item  {
            max-width: 100%;
            margin-top: 0;
            margin-left: 0;
        }
    }

.about-content-fields-item img {
    max-height: 382px;
}

    @media (max-width: 992px) {
        .about-content-fields-item img  {
            max-width: 100%;
            max-height: 600px;
        }
    }

.card-about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: clamp(16px, 5vw, 40px);
}

.card-about-content img {
    max-width: 100%;
    max-height: 672px;
    min-height: 250px;
}

.card-about-content .main-text {
    display: flex;
    width: 100%;
    max-width: 1050px;
    text-align: end;
}

    @media (max-width: 1280px) {
        .card-about-content .main-text {
            max-width: 800px;
        }
    }

.follow-about-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}   

    @media (max-width: 992px) {
        .follow-about-content {
            grid-template-columns: repeat(3, 1fr);
        } 

        .follow-about-content a:last-child {
            display: none;
        }   
    }

    @media (max-width: 768px) {
        .follow-about-content {
            grid-template-columns: repeat(2, 1fr);
        } 

        .follow-about-content a:last-child {
            display: flex;
        }   
    }

    @media (max-width: 543px) {
        .follow-about-content {
            gap: 16px;
        }     
    }

    .follow-about-content a {
        border-radius: 3px;
        overflow: hidden;
    }   
    
    .follow-about-content .text-shape {
        display: flex;
        flex-direction: column;
        padding: 20px;
        border-radius: 3px;
        overflow: hidden;
        border: 1px solid rgba(37, 37, 37, 0.05);
    } 

        @media (max-width: 543px) {
            .follow-about-content .text-shape {
                padding: 12px;
            }   
        }

        @media (max-width: 340px) {
            .follow-about-content .text-shape {
                padding: 10px;
            }   
        }

    .text-shape-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .text-shape-btn-content {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .text-shape-btn-content img {
        rotate: -90deg;
    }

    .text-shape-btn-content span {
        margin-bottom: 5px;
    }

    .text-shape span:first-child {
        text-align: start;
        max-width: 200px;
    }   

        @media (max-width: 1280px) {
            .text-shape span:first-child {
                font-size: 12px;
            }   
        }

        @media (max-width: 543px) {
            .text-shape span:first-child {
                max-width: 100%;
                line-height: 18px;
            }    
        }
    
    .text-shape span:last-child {
        text-transform: uppercase;
        margin-top: auto;
        margin-left: auto;
    }   

        @media (max-width: 543px) {
            .text-shape span:last-child {
                margin-left: 0;
                font-size: 12px;
            }   
        }
    
    .text-shape-btn-content-text {
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        letter-spacing: 0.48px;
        text-transform: uppercase;
        margin: 0 !important;
        color: var(--text_color)
    }

        @media (max-width: 1280px) {
            .text-shape-btn-content-text {
                font-size: 16px !important;
            }
        }

        @media (max-width: 543px) {
            .text-shape-btn-content-text {
                font-size: 15px !important;
            }
        }
    

/*-------------------------------------------- about-end --------------------------*/


/*-------------------------------------------- shop --------------------------*/

.cards-shop--section .main-title {
    margin: clamp(40px, 7vw, 60px) 0 20px 0;
    text-align: start;
}
#masthead {
    margin-bottom:40px;
}
.sort-section-btn-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 70px;
}

    @media (max-width: 543px) {
        .sort-section-btn-group {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }
    }

.sort-section-btn-group-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px;
    opacity: 0.5;
    border-bottom: 1px solid rgba(37, 37, 37, 0.50);
}

.sort-section-btn-group-item:focus {
  opacity: 0.5;
}


.sort-section-btn-group-item .main-text {
    font-size: 18px;
    text-transform: uppercase;
}

.cards-shop--content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

    @media (max-width: 768px) {
        .cards-shop--content {
            grid-template-columns: repeat(2, 1fr);
            row-gap: 22px;
        }  
    }

.cards-shop--content-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cards-shop--content-item-img {
    margin-bottom: 12px;
}

    @media (max-width: 1280px) {
        .cards-shop--content-item-img  {
            margin-bottom: 8px;
        }  
    }

    @media (max-width: 992px) {
        .cards-shop--content-item-img  {
            height: 220px;
        }  
    }

    @media (max-width: 768px) {
        .cards-shop--content-item-img  {
            height: 100%;
        }  
    }

.cards-shop--content-item .main-text--sm {
    opacity: 0.3;
    color: var(--text_color);
}

    @media (max-width: 768px) {
        .cards-shop--content-item  .section-text--alt  {
            line-height: 30px;
        }  
    }

.cards-shop--text-group {
    display: flex;
    width: 100%;
}

.section-text--alt {
    font-family: CormorantInfant;
    display: none;
    height: 50px;
    font-size: 20px;
}

    @media (max-width: 768px) {
        .section-text--alt {
            display: flex;
        }
    }

.cards-shop--text-group-item {
    display: flex;
    width: 200px;
}

    @media (max-width: 992px) {
        .cards-shop--text-group-item {
            flex-direction: column;
            width: 150px;
        }  

        .cards-shop--text-group-item--alt {
            flex-direction: row;
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .cards-shop--text-group-item {
            flex-direction: row;
            width: 100%;
        }  
    }

.cards-shop--text-group-item {
    display: flex;
    flex-wrap: wrap;
}

.cards-shop--text-group .shop-text {
    font-family: CormorantInfant;
    margin-left: auto;
}

    @media (max-width: 768px) {
        .cards-shop--text-group .shop-text {
            display: none;
        }
    }


.shop-feedback-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-feedback-container--alt {
    align-items: flex-start;
}

.shop-feedback-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 1075px;
}
    @media (max-width: 1280px) {
        .shop-feedback-form {
            max-width: 640px;
        }
    }

.shop-feedback-form .main-text {
    text-align: start;
}

.shop-feedback-form-input {
    width: 100%;
    height: 72px;
    padding: 24px 40px;
    border: 1px solid rgba(37, 37, 37, 0.10);
}

.shop-feedback-form-input-visibled {
    display: none;
}

.shop-feedback-form-input-visibled.active {
    display: flex;
}


.shop-feedback-form input::placeholder {
    color: var(--text_color);
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.48px;
    text-transform: uppercase;
}

.shop-feedback-form-btn {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 24px 40px;
    border: none;
    text-transform: uppercase;
    background-color: var(--text_color);
    color: var(--white);
    justify-content: space-between;
}

.shop-feedback-form-btn:hover, 
.shop-feedback-form-btn:focus {
    opacity: 1;
    background-color: var(--main_blue_color);
}

.shop-feedback-form-btn-visibled.active {
    background-color: #D0D5DD;
}

    @media (max-width: 543px) {
        .shop-feedback-form-btn-visibled  {
            /* flex-direction: column; */
            padding: 24px 12px;
            justify-content: space-between;
            gap: 10px;
        }
    }

.shop-feedback-form-img {
    margin-left: auto;
    width: 17px;
    height: 17px;
    transform: rotate(0deg) !important;
}

    @media (max-width: 543px) {
        .shop-feedback-form-btn-visibled .shop-feedback-form-img  {
            margin-left: 0;
        }
    }


/*-------------------------------------------- shop-end --------------------------*/


/*-------------------------------------------- card --------------------------*/

.card-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

    @media (max-width: 1280px) {
        .card-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .card-container {
            grid-template-columns: 1fr;
          }
    }

  .card-desc-group {
    display: none;
    flex-direction: column;
  }  

  .card-desc-group .section-title {
    margin: 0;
    margin-bottom: 10px;
  }

    @media (max-width: 768px) {
        .card-container .card-desc-group {
            display: flex;
          }
    }


  .card-content {
    padding: 0 20px 0 40px;
  }

    @media (max-width: 768px) {
        .card-content {
            padding: 0;
          }
    }

  .card-content .card-desc-group {
    display: flex;
  }

    @media (max-width: 768px) {
        .card-content {
          order: 3;
        }

        .card-content .card-desc-group {
            display: none;
        }
    }

  .card-content .main-text--sm {
    opacity: 0.5;
  }

  .card-content .section-title {
    margin: 0 0 30px 0;
  }

  .card-info-content {
    padding: 17px 0;
    border: none;
    border-bottom: 1px solid rgba(37, 37, 37, 0.10);
  }

  .card-info-content .questions_block-content-answer {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
  }

    @media (max-width: 768px) {
        .card-info-content .questions_block-content-answer {
            margin-top: 5px;
          }
    }

  .card-info-content .questions_block-content-btn {
    padding: 0;
  }

  .card-info-content-img {
    width: 20px;
    height: 20px;
    margin-left: auto;
    rotate: -90deg;
  }

  .questions_block-content-btn.active .card-info-content-img{
    rotate: 90deg;
  }

  .card-amount-content {
      position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    /* border-top: 1px solid rgba(37, 37, 37, 0.03); */
    border-left: 1px solid rgba(37, 37, 37, 0.03);
    border-right: 1px solid rgba(37, 37, 37, 0.03);
    border-bottom: 1px solid rgba(37, 37, 37, 0.03);
    background: var(--add_color_light-gray);
  }

    @media (max-width: 768px) {
        .card-amount-content {
            order: 2;
        }

        .card-amount-content-desc {
            text-align: center;
        }
    }

    @media (max-width: 390px) {
        .card-amount-content {
            align-items: center;
        }
    }

  .card-amount-content-title {
    display: flex;
    align-items: center;
      gap:20px;
  }

    @media (max-width: 1400px) {
        .card-amount-content-title {
            flex-direction: column;
            align-items: flex-start;
          }
    }

    @media (max-width: 768px) {
        .card-amount-content-title {
            align-items: center;
          }
    }

    @media (max-width: 390px) {
        .card-amount-content-title {
           width: 100%;
           max-width: 200px;
          }
    }

  .card-amount-content-title .section-title {
    margin: 0;
  }

  .card-amount-content-title .main-text--sm {
    margin-left: auto;
    opacity: 0.5;
  }

    @media (max-width: 1400px) {
        .card-amount-content-title .main-text--sm {
            margin-left: 0;
          }
    }

  .card-amount-content-quantity {
    display: flex;
    align-items: center;
    padding-bottom: 2px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(37, 37, 37, 0.10);
  }

    @media (max-width: 390px) {
        .card-amount-content-quantity {
        width: 100%;
        max-width: 200px;
        }
    }

  .card-amount-content-quantity .main-text {
    text-transform: uppercase;
  }

  .card-amount-content-quantity-count {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-left: auto;
  }

  .quantity-count-btn {
    font-size: 20px;
    opacity: 0.5;
  }

  .card-amount-content-quantity-btn,.single_add_to_cart_button,.woocommerce-button{
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    padding: 12px;
    margin-bottom: 20px;
    background-color: var(--text_color);
    color: var(--white);
  }

        @media (max-width: 390px) {
            .card-amount-content-quantity-btn {
            width: 100%;
            max-width: 200px;
            }
        }

  .card-amount-content-quantity-btn:hover,
  .card-amount-content-quantity-btn:focus {
    opacity: 1;
    background-color: var(--main_blue_color);
  }

/*-------------------------------------------- card-end --------------------------*/

/*-------------------------------------------- card-swiper --------------------------*/

  .slider-swiper {
    height: 420px;
    overflow: hidden;
  }

    @media (max-width: 1280px) {
        .slider-swiper {
            grid-column: 1 / 3;
            margin: 20px 0;
            height: 500px;
            order: 2;
          }
    }
    @media (max-width: 1070px) {
        .slider-swiper {
            height: auto;
            grid-column: auto;
            order: 1;
            z-index: 1;
          }
    }

  .slider-swiper .swiper-container {
    width: 100%;
    height: 100%;
  }

  .slider__flex {
    display: flex;
    align-items: flex-start;
  }

    @media (max-width: 1280px) {
        .slider__flex {
            justify-content: center;
          }   
    }

    @media (max-width: 1070px) {
        .slider__flex {
          flex-direction: column-reverse;
        }
    }

  .slider__col {
    display: flex;
    flex-direction: column;
    width: 77px;
    margin-right: 20px;
  }

        @media (max-width: 1280px) {
            .slider__col {
                display: flex;
                flex-direction: column;
                width: 135px;
                margin-right: 20px;
              }
        }

        @media (max-width:1050px) {
            .slider__col {
                flex-direction: row;
                align-items: center;
                margin-right: 0;
                margin-top: 24px;
                width: 100%;
              }
        }

  .slider__prev,
  .slider__next {
    cursor: pointer;
    text-align: center;
    font-size: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }


  .slider__prev:focus,
  .slider__next:focus {
    outline: none;
  }

  .slider__prev {
    width: 20px;
    height: 20px;
    background: url(../img/arrow_select.svg) 0 0 / 100% no-repeat;
    rotate: 270deg;
    margin-bottom: 20px;
  }

  .slider__next {
    width: 20px;
    height: 20px;
    background: url(../img/arrow_select.svg) 0 0 / 100% no-repeat;
    rotate: 90deg;
    margin-top: 20px;
  }


    @media (max-width: 768px) {

        .slider__next {
            rotate: 0deg;
            margin-top: 0;
        }
        .slider__prev {           
            rotate: 180deg;
            margin-bottom: 0;
        }
    }

  .slider__thumbs {
    overflow: hidden;
    height: calc(400px - 96px);
  }

    @media (max-width: 1280px) {
        .slider__thumbs {
            height: 420px;
          }
    }
    @media (max-width: 768px) {
        .slider__thumbs {
            height: 100px;
            width: calc(100% - 200px);
            margin: 0 16px;
          }
          .test-container{
            padding: 0 !important;
          }
    }

    @media (max-width: 543px) {
        .slider__thumbs {
            width: calc(100% - 150px);
            height: 70px;
          }
    }

    @media (max-width: 420px) {
        .slider__thumbs {
            width: calc(100% - 50px);
            height: 60px;
          }
    }

  .slider__thumbs .slider__image {
    transition: 0.25s;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.5;
  }

  .slider__thumbs .slider__image:hover {
    opacity: 1;
  }

  .slider__thumbs .swiper-slide-thumb-active .slider__image {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
  }

  .slider__images {
    height: 400px;
  }

    @media (max-width: 1280px) {
        .slider__images {
            height: 500px;
          }
    }

    @media (max-width: 1070px) {
        .slider__images {
           width: 100%;
          }
    }

    @media (max-width: 543px) {
        .slider__images {
            height: 310px;
          }
    }

    @media (max-width: 370px) {
        .slider__images {
            height: 280px;
          }
    }

  .slider__images .slider__image img {
    transition: 3s;
  }

  .slider__images .slider__image:hover img {
    transform: scale(1.1);
  }

  .slider__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .slider__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  /*-------------------------------------------- card-swiper-end --------------------------*/


/*-------------------------------------------- feedback --------------------------*/


.feedback-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feedback-container form {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1075px;
}

    @media (max-width: 1280px) {
        .feedback-container form {
            max-width: 640px;
        }
    }

.feedback-container form input {
    width: 100%;
    height: 100%;
    padding: 24px 40px;
    border: 1px solid rgba(37, 37, 37, 0.10);
}

.feedback-container form input::placeholder {
    color: var(--text_color);
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.48px;
    text-transform: uppercase;
}

.feedback-container form button {
    position: absolute;
    top: 10px;
    right: 25px;
    padding: 16px;
}

.feedback-container form button img {
    transform: rotate(-90deg);
}

/*-------------------------------------------- feedback-end --------------------------*/


/*-------------------------------------------- footer --------------------------*/

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 20px;
    border-top: 1px solid rgba(37, 37, 37, 0.10);
    border-bottom: 1px solid rgba(37, 37, 37, 0.10);
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-info small {
    margin-top: auto;
    opacity: 0.5;
}

    @media(max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
        }

        .footer-info {
            align-items: center;
            margin-bottom: 40px;
        }
    }

.footer-logo {
    display: flex;
    margin-bottom: clamp(24px, 4vw, 46px);
}

.footer-logo img {
    display: flex;
    width: 242px;
    height: 70px;
}

    @media(max-width: 1280px) {
        .footer-logo img {
            width: 162px;
            height: 47px;
        }
    }

.footer-nav {
    width: 100%;
    display: flex;
    align-items: flex-start;
    max-width: 260px;
}

    @media(max-width: 1280px) {
        .footer-nav {
            max-width: 100%;
        }
    }


.footer-nav-list {
    width: 100%;
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

    @media(max-width: 1280px) {
        .footer-nav-list {
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-nav-list li:not(:last-child) {
            margin-bottom: 30px;
        }
    }


.contacts-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}    

    @media(max-width: 1920px) {
        .contacts-container {
            align-items: flex-start;
        }    
    }

    @media(max-width: 1440px) {
        .contacts-container {
            align-items: center;
        }    
    }

    @media(max-width: 1280px) {
        .contacts-container .main-title {
            width: 100%;
            display: flex;
            flex-direction: column;
        }

        .contacts-container .main-title span:first-child {
            margin-right: auto;
        }

        .contacts-container .main-title span:last-child {
            margin-left: auto;
        }
    }

    @media(max-width: 768px) {
        .contacts-container {
           align-items: flex-start;
        }    

        .contacts-container .main-title {
            flex-direction: row;
            gap: 10px;
            font-size: 24px;
            text-align: start;
        }

        .contacts-container .main-title span:first-child {
            margin-right: 0;
        }

        .contacts-container .main-title span:last-child {
            margin-left: 0;
        }
    }

    @media(max-width: 425px) {
        .contacts-container .main-title {
            font-size: 20px;
        }
    }

    @media(max-width: 370px) {
        .contacts-container .main-title {
            font-size: 17px;
        }
    }

.contacts-list-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}    

.contacts-list-item .section-title {
    font-size: clamp(20px, 4vw, 24px);
    opacity: 0.3;
    margin-bottom: 24px;
}    

.footer-nav-list-item:not(:last-child) {
    margin-right: auto;
}

    @media(max-width: 1280px) {
        .footer-nav-list-item:not(:last-child) {
            margin-right: 0;
        }
    }

.footer-nav-list-item a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 5px;

    color: var(--text_color);  
}

.contacts-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
}

    @media(max-width: 768px) {
        .contacts-list {
            padding: 0;
        }
    }

.contacts-list--alt {
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
}

    @media(max-width: 650px) {
        .contacts-list--alt {
            flex-direction: column;
        }
    }

.contacts-list li:not(:last-child){
  margin-bottom: 30px;
}

.contacts-list li a {
    position: relative;
    padding-left: 36px;
}

.contacts-list li a::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);

    content: '';

    width: 24px;
    height: 24px;
}

.contacts-list-item--location::before {
    background-image: url("../img/icon_location.svg");
    background-size: contain;
    background-repeat: no-repeat;
}
.contacts-list-item--email::before {
    background-image: url("../img/icon_email.svg");
    background-size: contain;
    background-repeat: no-repeat;
}
.contacts-list-item--phone::before {
    background-image: url("../img/icon-phone.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.footer-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.footer-content-btn {
    display: none !important;
    width: 100%;
    display: flex;
    opacity: 0.3;
    margin-bottom: 20px;
}

.footer-content-btn:hover,
.footer-content-btn:focus {
    opacity: 0.3;
}

.footer-content-btn  .main-title {
    font-size: 20px;
    line-height: 30px; 
    letter-spacing: 0.6px;
}


    @media(max-width: 768px) {
        .footer-content-btn {
            display: flex !important;
        }

        .footer-content-list {
            display: none;
            padding-left: 11px;
        }

        .footer-content-list.active {
            display: flex;
            padding-left: 11px;
        }
    }

.footer-container-bottom {
    display: flex;
    padding: 20px;
}  

    @media(max-width: 768px) {
        .footer-container-bottom {
            flex-direction: column;
            gap: 16px;
            align-items: flex-start;
        }  
    }

.footer-container-bottom a:not(:first-child) {
    margin-left: auto;
    text-align: start;
}

    @media(max-width: 768px) {
        .footer-container-bottom a:not(:first-child) {
            margin-left: 0;
        }  
    }

.footer-container-bottom a:first-child {
    opacity: 0.5;
}

.footer-container-bottom a:last-child {
    position: relative;
    padding-left: 30px;
}

.footer-container-bottom a:last-child::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);

    content: '';

    width: 24px;
    height: 24px;
    background-image: url("../img/icon-insta.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

/*-------------------------------------------- footer-end --------------------------*/
/*!*-------------------------------------------- modal --------------------------*!*/

/*.modal {*/
/*    display: none;*/
/*    position: fixed;*/
/*    z-index: 1;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    overflow: auto;*/
/*    background-color: rgba(0,0,0,0.7);*/
/*}*/

/*.modal.active {*/
/*    display: flex;*/
/*}*/

/*.modal .card-amount-content {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    max-width: 470px;*/
/*    margin-top: 50px;*/
/*    overflow-y: auto;*/
/*    max-height: 80%;*/
/*    padding: 50px 30px;*/
/*}*/

/*.modal .section-title {*/
/*    font-weight: 400;*/
/*    font-size: 36px;*/
/*    line-height: 44px;*/
/*    letter-spacing: 0.03em;*/
/*    text-transform: uppercase;*/
/*    color: var(--text_color);*/
/*}*/

/*.main-text-modal {*/
/*    font-style: normal;*/
/*    font-weight: 400;*/
/*    font-size: 14px;*/
/*    line-height: 21px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    color: var(--main_blue_color);*/
/*}*/

/*.modal-pagination {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*}*/

/*.modal-pagination span {*/
/*    opacity: 0.5;*/
/*}*/

/*.modal-pagination span.active {*/
/*    opacity: 1;*/
/*}*/

/*.modal-cards {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    width: 100%;*/
/*    margin: 20px 0;*/
/*}*/

/*.modal .questions_block-content-answer {*/
/*    opacity: 1;*/
/*}*/

/*.modal .questions_block-content {*/
/*    border: none;*/
/*}*/

/*.modal-arrow-prev {*/
/*    width: 20px;*/
/*    height: 20px;*/
/*}*/

/*.modal-arrow-next {*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    rotate: 180deg;*/
/*}*/

/*.modal .card-amount-content-quantity-btn {*/
/*    margin-bottom: 0;*/
/*}*/

/*!*-------------------------------------------- modal-end --------------------------*!*/
.shop-feedback-form-but-visibled {
    display: none;
}

.shop-feedback-form-but-visibled.active {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 24px 40px;
    border: none;
    text-transform: uppercase;
    background-color: var(--text_color);
    color: var(--white);
}

/**** ------------------------------------------------ checkout payment -------------------------------------------------*******************/
/* Horizontal layout for payment methods */
ul.payment_methods {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
  --s: 1em; /* control the size */
  --g: 10px; /* the gap */
  --c: #009688; /* the active color */
  display: flex;
  flex-direction: row;
  gap: 20px;
  position: relative;
}

li.payment_method {
    margin-right: 20px; /* Adjust as needed */
    display: flex;
  flex-direction: row;
  align-items:center;
}

/* Style for payment method labels */
label.payment_method_label {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Style for radio buttons */
input.input-radio {
    margin-right: 5px;
}

/* Style for payment box */
.payment_box {
    display: none; /* Hide payment box by default */
    margin-top: 10px; /* Adjust as needed */
}

/* Style for Stripe payment box */
.payment_method_stripe .payment_box {
    display: block; /* Display Stripe payment box when selected */
}

/* Style for form rows */
.form-row {
    margin-bottom: 10px; /* Adjust as needed */
}

/* Style for buttons */
.button {
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px; /* Adjust as needed */
    cursor: pointer;
    border-radius: 5px;
}

/* Style for terms and conditions wrapper */
.woocommerce-terms-and-conditions-wrapper {
    margin-top: 20px; /* Adjust as needed */
}

/* Style for privacy policy text */
.woocommerce-privacy-policy-text {
    font-size: 14px;
}

/* Style for links in privacy policy text */
.woocommerce-privacy-policy-link {
    color: #007bff;
    text-decoration: none;
}

/* Style for form errors */
.stripe-source-errors {
    color: red;
    margin-top: 5px;
}
#customer_details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 30px;
    grid-column-gap: 200px;
}
@media (max-width: 768px) {
    #customer_details {
        grid-template-columns: 1fr;
        
    }
    .woocommerce_checkout_place_order, .woocommerce-checkout #place_order.button {
        width:100%!important;
    }
}
@media (max-width: 850px) {
   #customer_details{ grid-column-gap: 80px;}
}


select.orderby * {
    padding: 40px 0;
}
.toggle-button{
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 70px;
}
.toggle-button > span {
    text-transform: uppercase;
}

.review-text {
    display: block;
    max-height: 61px; /* Adjust this value to determine how much of the text is initially visible */
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    transition: max-height 0.3s ease;
}
.review-text.expanded {
    max-height: none; /* Remove the height restriction when expanded */
    white-space: normal;
}
.expanded-img{
    transform: rotate(180deg);
}
@media (max-width: 400px) {
    .main-container h1 {
        font-size: 32px;
    }
    .review-text {
        max-height: 56px;
    }
}


/****************** ----------------------------------- payment -------------------------------------------*****************************/

/****************** ----------------------------------- end payment -------------------------------------------*****************************/