 :root {
     --emerald: #022c1d;
     --gold: #e7ab54;
     --white: #ffffff;
     --light-gray: #f5f5f5;
     --dark-gray: #333333;
     --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 }

 ::selection {
     background: #04612f;
     /* Цвет фона выделения */
     color: #ffffff;
     /* Цвет текста при выделении */
 }

 @font-face {
     font-family: "Montserrat";
     src:
         url("../fonts/Montserrat-Regular.ttf") format("truetype");
     font-weight: 400;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: "Montserrat";
     src:
         url("../fonts/Montserrat-Light.ttf") format("truetype");
     font-weight: 300;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: "Montserrat";
     src:
         url("../fonts/Montserrat-Medium.ttf") format("truetype");
     font-weight: 500;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: "Montserrat";
     src:
         url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
     font-weight: 600;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: "Montserrat";
     src:
         url("../fonts/Montserrat-Bold.ttf") format("truetype");
     font-weight: 700;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: "Montserrat";
     src:
         url("../fonts/Montserrat-ExtraBold.ttf") format("truetype");
     font-weight: 800;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: "Montserrat";
     src:
         url("../fonts/Montserrat-Black.ttf") format("truetype");
     font-weight: 900;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: "Geologica";
     src:
         url("../fonts/Geologica/GeologicaRegular.ttf") format("truetype");
     font-weight: 400;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: "Geologica";
     src:
         url("../fonts/Geologica/GeologicaLight.ttf") format("truetype");
     font-weight: 300;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: "Geologica";
     src:
         url("../fonts/Geologica/GeologicaMedium.ttf") format("truetype");
     font-weight: 500;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: "Geologica";
     src:
         url("../fonts/Geologica/GeologicaSemiBold.ttf") format("truetype");
     font-weight: 600;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: "Geologica";
     src:
         url("../fonts/Geologica/GeologicaBold.ttf") format("truetype");
     font-weight: 700;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: "Geologica";
     src:
         url("../fonts/Geologica/GeologicaExtraBold.ttf") format("truetype");
     font-weight: 800;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: "Geologica";
     src:
         url("../fonts/Geologica/GeologicaBlack.ttf") format("truetype");
     font-weight: 900;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: "Geologica";
     src:
         url("../fonts/Geologica/GeologicaThin.ttf") format("truetype");
     font-weight: 100;
     font-style: normal;
     font-display: swap;
 }


 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Geologica', sans-serif;
     font-style: normal;
 }

 img,
 video {
     display: block;
     ;
 }

 body {
     background-color: var(--white);
     color: var(--dark-gray);
     overflow-x: hidden;
 }

 /* Header Styles */
 header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     /* background-color: #2a432d; */
     /* border-bottom: 1px solid #e7ab548a; */
     /* backdrop-filter: blur(5px); */
     padding: 10px 0 5px;

     z-index: 1000;
     background: #fcfcfc;
     box-shadow: 0 4px 10px rgb(218 218 218);
 }

 .header-wrap {
     max-width: 1500px;
     margin: 0 auto;
     padding: 0 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .logo {
     font-size: 24px;
     font-weight: 700;
     color: var(--emerald);
     text-decoration: none;
     display: flex;
     align-items: center;
 }

 .logo span {
     color: var(--gold);
 }

 .logo img {
     width: 90px;
 }

 .burger-menu img {
     width: 27px;
 }

 nav ul {
     display: flex;
     list-style: none;
 }

 nav ul li {
     margin: 0 25px;
 }

 nav ul li a {
     text-decoration: none;
     color: #5f5f5f;
     font-weight: 300;
     transition: color 0.3s;
 }

 nav ul li a:hover {
     color: #087537;
 }

 .header-right {
     display: flex;
     align-items: center;
     /* margin-top: 5px; */
 }

 .cart-icon {
     position: relative;
     margin-right: 25px;
     cursor: pointer;
 }

 .cart-count {
     position: absolute;
     top: -8px;
     right: -8px;
     background-color: #da942e;
     color: var(--white);
     border-radius: 50%;
     width: 20px;
     height: 20px;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 12px;
     font-weight: 600;
 }

 .burger-menu {
     display: none;
     cursor: pointer;
     font-size: 24px;
 }

 /* Banner Styles */
 .banner {
     padding: 120px 0 100px;
     /* background: linear-gradient(rgb(0 71 54), rgb(251, 255, 254)); */
     /* background: linear-gradient(rgb(2 20 15 / 85%), rgb(0 15 13 / 82%)), url(../img/555.jpg) no-repeat center center / cover; */
     background: url(../img/banner-new-big.png) no-repeat center center / cover;
     /* background-size: cover;
     background-position: center; */
     color: var(--white);
     position: relative;
 }

 .banner-content {
     max-width: 800px;
     margin: 0;
     text-align: left;
     /* padding-left: 5%; */
 }

 .banner-wrap {
     max-width: 1500px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .banner-title {
     font-weight: 600;
     margin-bottom: 25px;
     font-size: 45px;
     color: black;
     line-height: 1.2;
     /* text-transform: uppercase; */
     /* text-shadow: 0 2px 4px rgb(3 52 35); */
 }

 .banner-subtitle {
     font-size: 20px;
     font-weight: 100;
     /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); */
     color: #8a8a8a;
     font-style: italic;
 }

 .banner-list {
     margin-bottom: 15px;
     text-align: left;
     display: inline-block;
 }

 .banner-list li {
     margin-bottom: 10px;
     padding-left: 22px;
     position: relative;
     text-shadow: 1px 1px 10px rgb(8 55 38);
     font-weight: 300;
 }

 .banner-list li span {
     color: #28635a;
     font-weight: 500;
 }

 .banner-list li:before {
     content: "✔";
     position: absolute;
     left: 0;
     color: #086135;
     font-size: 22px;
     text-shadow: none;
 }

 .advantages-box {
     padding-top: 0px;
     padding-bottom: 10px;
 }

 .btn {
     display: inline-block;
     background-color: #ffffff;
     color: #000000;
     padding: 12px 13px;
     border-radius: 2px;
     text-decoration: none;
     font-weight: 700;
     transition: all 0.3s;
     /* border: 3px solid #000000; */
     box-shadow: 2px 2px 9px #0d0d0d42;
     margin: 5px 0 10px;
     font-size: 15px;
 }

 .btn:hover {
     background-color: transparent;
     color: rgb(7, 123, 59);
     transform: translateY(-3px);
 }

 /* Advantages Slider */
 .advantages-slider {
     /* background-color: rgba(255, 255, 255, 0.15); */
     /* padding: 0 45px; */
     /* max-width: 350px; */
     margin: 0px auto 0;
     /* border: 1px solid rgba(255, 255, 255, 0.2); */
     position: relative;
     height: 150px;
     overflow: hidden;
     z-index: 100;
 }

 .banner-img-mans {
     position: absolute;
     top: 191px;
     left: 5px;
 }


 .banner-img-product img {
     width: 185px;
     margin-left: 175px;
     margin-top: 11px;
 }


 .banner-img-mans img {
     width: 208px;
 }


 .slide-text p {
     text-align: left;
     margin-left: 4px;
 }

 .advantage-slide {
     position: absolute;
     width: 190px;
     width: 200px;
     height: 100%;
     display: flex;
     align-items: center;
     /* flex-direction: column; */
     opacity: 0;
     transition: opacity 0.5s ease;
     padding: 0 0px;
     z-index: 9999;
 }

 .advantage-slide.active {
     opacity: 1;
 }

 .slide-icon {
     font-size: 32px;
     color: var(--gold);
     margin-top: 10px;
 }

 .slide-text {
     font-size: 18px;
     font-weight: 100;
     line-height: 1.2;
     color: #ececec;
 }

 /* Section Styles */
 section {
     padding: 50px 5%;
 }

 .section-title {
     text-align: center;
     font-size: 27px;
     font-weight: 400;
     color: #c88422cc;
     margin-bottom: 25px;
     position: relative;
     text-transform: uppercase;
 }

 .section-title:after {
     content: "";
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 3px;
     background-color: var(--gold);
 }

 /* About Section */
 /* .about-content {
     max-width: 1200px;
     margin: 0 auto;
     background-color: var(--light-gray);
     padding: 50px;
     border-radius: 15px;
     box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
 } */

 .about-content .about-img1 {
     border-radius: 8px;
     margin-bottom: 20px;
 }


 .about-content h3 {
     text-align: center;
     font-size: 23px;
     font-weight: 300;
     color: #c88422cc;
     margin-bottom: 35px;
     text-transform: uppercase;
     position: relative;
 }

 .about-content h3:after {
     content: "";
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 2px;
     background-color: var(--gold);
 }

 .about-text {
     margin-bottom: 30px;
     line-height: 1.4;
     font-weight: 300;
     font-size: 17px;
 }



 .advantages {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
     margin: 50px 0;
 }

 .advantage {
     text-align: center;
     padding: 10px 32px 20px;
     border-radius: 10px;
     background-color: var(--white);
     box-shadow: var(--shadow);
     transition: transform 0.3s;
 }

 .advantage p {
     font-weight: 100;
     font-size: 16px;
 }

 .advantage:hover {
     transform: translateY(-10px);
 }

 /* .advantage-icon {
     
 } */

 .advantage-title {
     font-size: 17px;
     font-weight: 400;
     color: #c88422cc;
     margin-bottom: 10px;
 }

 .process {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     margin: 20px 0 0px;
     gap: 5px;
 }

 .process-step {
     text-align: center;
     width: 97px;
     position: relative;
     margin-bottom: 40px;
 }



 .step-icon .strelka {
     color: #054d2073;
     font-size: 32px;
     margin-left: 15px;
 }

 .step-icon img {
     margin-right: 0px;
     margin-left: 43px;
 }

 .step-text {
     font-size: 13px;
     font-weight: 400;
     color: #202020;
 }

 .certificates {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-top: 40px;
     flex-wrap: wrap;
 }

 .certificate {
     padding: 15px 25px;
     background-color: var(--white);
     border-radius: 8px;
     box-shadow: var(--shadow);
     font-weight: 600;
     color: var(--emerald);
     border: 1px solid rgba(13, 92, 99, 0.2);
 }

 /* Catalog Section */
 .catalog {
     /* background-color: var(--light-gray); */
     /* background: linear-gradient(rgb(2 20 14 / 79%), rgb(2 20 14 / 81%)), url(../img/fon2222.jpg) repeat center center;  */
     padding: 20px 20px 55px;
     position: relative;
     overflow: hidden;
     display: flex;
     justify-content: center;
     margin: 0 auto;
     max-width: 1500px;
 }

 .products-grid {
     display: flex;
     /* flex-direction: column; */
     flex-wrap: wrap;
     justify-content: center;
     /* grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); */
     gap: 60px;
     max-width: 1600px;
 }

 .product-card {
     /* background-color: var(--white); */
     /* background: #012421; */
     border-radius: 0px;
     overflow: hidden;
     box-shadow: rgb(0 0 0 / 7%) 6px 6px 11px;
     display: flex;
     background: rgb(222 222 222 / 24%);
     /* border: 1px solid #0000003b; */
     display: flex;
     flex-direction: column;
     transition: transform 0.3s;
     position: relative;
     overflow: hidden;
     z-index: 1;
     width: 320px;
 }

 /* .catalog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background: rgba(255, 255, 255, 0.2); 
  backdrop-filter: blur(10px); 
  z-index: -1; 
} */

 .product-card:hover {
     transform: translateY(-10px);
 }

 .product-image {
     /* width: 120px; */
     margin: 25px auto 0;
     object-fit: cover;
     position: relative;
     height: 200px;
 }

 .add-to-cart {
     position: absolute;
     top: 10px;
     right: 10px;
     width: 40px;
     height: 40px;
     /* background-color: var(--white); */
     border: 2px solid #e7ab547a;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     color: #e7ab54;
     box-shadow: var(--shadow);
     transition: all 0.3s;
     z-index: 10;
 }

 .add-to-cart:hover {
     background-color: var(--emerald);
     color: var(--white);
 }

 .product-info {
     padding: 20px 15px;
     /* flex-grow: 1; */
     display: flex;
     flex-direction: column;
     /* margin-top: auto; */
 }

 .product-name {
     font-size: 16px;
     font-weight: 500;
     color: #1e1e1e;
     margin-bottom: 10px;
 }

 .product-desc {
     font-size: 13px;
     margin-bottom: 20px;
     font-weight: 300;
     font-weight: 300;
     color: #676767;
 }

 .product-buttons {
     display: flex;
     justify-content: space-between;

 }

 /* .btn-details {
    background-color: transparent;
    color: #dedede;
    font-style: oblique;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s;
    text-align: center;
    margin-right: 5px;
    text-decoration: underline;
 } */

 .btn-details:hover {
     /* background-color: var(--emerald); */
     color: #086a37;
 }


 .btn-details {
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 15px 5px;
     width: 290px;
     /* border-radius: 8px; */
     text-decoration: none;
     font-size: 18px;
     text-align: center;
     text-decoration: underline;
     font-weight: 400;
     transition: all 0.3s;
     color: #020202;
     position: relative;
     overflow: hidden;
     z-index: 1;
     background: #fff;
     /* border: 2px solid #de890a; */
     /* background: #D67E00;*/
 }

 .btn-details::before {
     content: "";
     position: absolute;
     top: -50%;
     left: -50%;
     width: 180%;
     height: 180%;
     background: linear-gradient(to bottom right, #ffffff24 45%, rgb(255 255 255 / 85%) 50%, #ffffff26 55%);
     animation: shine 3s infinite;
 }

 @keyframes shine {
     0% {
         transform: translateX(-100%) translateY(-100%) rotate(45deg);
     }

     100% {
         transform: translateX(100%) translateY(100%) rotate(45deg);
     }
 }






 .market-buttons {
     display: flex;
     flex-direction: column;
     gap: 8px;
     width: 100%;
     margin-top: 15px;
 }

 .market-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 15px 57px;
     border-radius: 8px;
     text-decoration: none;
     font-size: 13px;
     font-weight: 500;
     transition: all 0.3s;
     color: var(--white);
     position: relative;
     overflow: hidden;
     z-index: 1;
     border: 2px solid #ffb344;
 }

 .market-btn::before {
     content: "";
     position: absolute;
     top: -50%;
     left: -50%;
     width: 150%;
     height: 150%;
     background: linear-gradient(to bottom right,
             transparent 45%,
             rgba(245, 225, 126, 0.296) 50%,
             transparent 55%);
     animation: shine 3s infinite;
 }

 @keyframes shine {
     0% {
         transform: translateX(-100%) translateY(-100%) rotate(45deg);
     }

     100% {
         transform: translateX(100%) translateY(100%) rotate(45deg);
     }
 }

 .market-btn i {
     margin-right: 8px;
     font-size: 14px;
 }

 /* .wb-btn {
     background-color: #cd0aae;
 } */

 .ozon-btn {
     /* background-color: #005bff; */
     padding: 15px 88px;
 }

 .kaspi-btn {
     background-color: #F14635;
     padding: 10px 87px;
     font-size: 22px;
 }

 .kaspi21 {
     flex-direction: column;
 }



 .mmarket-btn img {
     width: 174px;
 }

 .kaspi-btn img {
     width: 110px;
 }

  .kaspi-btn.one img {
     width: 110px;
 }


 .market-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 }

 .catalog-btn {
     display: block;
     width: max-content;
     margin: 50px auto 0;
 }

 /* Accordion Styles */
 .accordion {
     margin: 3px 0 15px;
 }

 .accordion-item {
     border-bottom: 1px solid rgb(126 126 126 / 33%);
     /* border-radius: 5px; */

     overflow: hidden;
 }

 .accordion-header {
     padding: 3px 15px;
     background-color: rgb(255, 255, 255);
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 500;
     transition: all 0.3s;
     font-size: 13px;
 }

 .accordion-header:hover {
     background-color: rgba(129, 129, 129, 0.1);
 }

 .accordion-header.active {
     background-color: rgb(107 107 107 / 6%);
     color: #3b3b3b;
 }

 .accordion-content {
     padding: 0 15px;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease-out;
     font-size: 13px;
     font-weight: 300;
     color: #686868;
 }

 .accordion-content .doc {
     color: #757575;
     font-size: 13px;
 }

 .accordion-content .color {
     color: rgb(36 36 36);
     font-weight: 400;
 }

 .accordion-content.active {
     max-height: 500px;
     padding: 10px 15px;
 }

 .accordion-icon {
     transition: transform 0.3s;
     font-size: 20px;
 }

 .accordion-header.active .accordion-icon {
     transform: rotate(45deg);
 }

 #reviews {
     padding-top: 20px;
 }

 /* Reviews Section */
 .reviews-container {
     max-width: 477px;
     margin: 0 auto;
     position: relative;
 }

 .reviews-slider {
     display: flex;
     overflow: hidden;
     /* gap: 20px; */
     justify-content: center;
     position: relative;
     margin: 0 auto;
     height: 470px;
 }

 .review {
     min-width: calc(50% - 10px);
     background-color: var(--white);
     border-radius: 10px;
     padding: 0px;
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 0.5s ease;
     display: flex;
     justify-content: center;
     gap: 10px;
 }

 /* .review img {
    width: 173px;
} */

 .review.active {
     opacity: 1;
 }

 .review-header {
     display: flex;
     align-items: center;
     margin-bottom: 20px;
 }

 .review-avatar {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     object-fit: cover;
     margin-right: 15px;
 }

 .review-name {
     font-weight: 600;
     font-size: 18px;
     color: var(--emerald);
 }

 .review-rating {
     color: var(--gold);
     margin-top: 5px;
 }

 .review-text {
     line-height: 1.6;
 }

 .slider-nav {
     display: flex;
     justify-content: center;
     margin-top: 20px;
     margin-bottom: 20px;
     gap: 10px;
 }

 .slider-btn {
     width: 30px;
    height: 30px;
    font-size: 24px;
    line-height: 2;
    /* margin-bottom: 5px; */
    border-radius: 50%;
    background-color: rgb(247, 247, 247);
    color: #232323;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
 }


 /* Footer Styles */
 footer {
     background-color: rgb(236 236 236 / 34%);
     color: #565656;
     padding: 60px 5% 30px;
     font-weight: 300;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 50px;
     margin-bottom: 40px;
 }

 .footer-column h3 {
     font-size: 17px;
     margin-bottom: 15px;
     position: relative;
     padding-bottom: 10px;
     font-weight: 300;
 }

 .footer-column h3:after {
     content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     width: 50px;
     height: 2px;
     background-color: #252525;
 }

 .footer-contact {
     display: flex;
     align-items: center;
     margin-bottom: 20px;
     font-weight: 300;
     gap: 10px;
 }


 .social-icons {
     display: flex;
     gap: 10px;
     margin-top: 15px;
     flex-wrap: wrap;
 }

 .social-icon {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 18px;
     transition: all 0.3s;
     text-decoration: none;
     color: #d8d8d8;
 }



 .social-icon:hover {
     transform: translateY(-5px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
 }


 .contact-btn.tg {
     background-color: #29b6f6;
 }

 .contact-btn {
     display: flex;
     align-items: center;
     gap: 2px;
     padding: 2px 5px;
     background-color: var(--primary);
     border-radius: 8px;
     text-decoration: none;
     color: var(--light);
     font-weight: 500;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     z-index: 1;
     font-size: 12px;
     color: #fff;
     height: 33px;
 }

 .contact-btn.wb {
     background: #cd0aae;
 }

 .contact-btn.ozon {
     background: #005bff;
 }

 .contact-btn.kaspi {
     background: #f14635;
 }

 .contact-btn.wt {
     background-color: #29a71a;
 }

 .contact-btn.vib {
     background-color: #6f3faa;
     padding: 2px 20px;
 }

 .contact-btn.vib img {
     width: 26px;
 }

 .contact-btn.wt img {
     width: 25px;
 }

 .contact-btn.tg img {
     background-color: #29b6f6;
     width: 27px;
 }

 .footer-contact.market .contact-btn {
     padding: 5px 8px;
     height: 46px;
 }

 .footer-contact.market .contact-btn img {
     width: 130px;
 }

 .footer-contact.market .contact-btn.ozon img {
     width: 100px;
 }

 .social-icons .vk {
     width: 48px;
 }

 .social-icons .tg {
     width: 46px;
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .footer-links a {
     color: #777777;
     text-decoration: none;
     transition: all 0.3s;
 }

 .footer-links a:hover {
     color: rgb(7, 121, 57);
     padding-left: 5px;
 }

 .footer-bottom {
     border-top: 1px solid rgba(83, 83, 83, 0.41);
     padding-top: 20px;
     text-align: center;
     font-size: 14px;
     color: #888888;
 }

 /* Modal Styles */
 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgb(0 3 2 / 74%);
     z-index: 2000;
     justify-content: center;
     align-items: center;
     padding: 0 3%;
 }

 .modal-content {
     background-color: rgb(2 48 35);
     border-radius: 3px;
     border: 1px solid #dcdcdc;
     box-shadow: 0px 0px 10px #afafafb8;
     /* width: 90%; */
     max-width: 500px;
     max-height: 96vh;
     overflow-y: auto;
     position: relative;
     padding: 30px 20px;
     /* box-shadow: var(--shadow);*/
 }

 .close-modal {
     position: absolute;
     top: -1px;
     right: 8px;
     font-size: 20px;
     cursor: pointer;
     color: #8a8a8ac7;
     transition: all 0.3s;
 }

 .close-modal:hover {
     color: var(--emerald);
 }

 .product-modal {
     display: flex;
     gap: 1px;
     flex-direction: column;
 }

 .product-gallery {
     /* flex: 0 0 45%; */
     display: flex;
     justify-content: center;
 }

 .product-main-image {
     /* width: 100%; */
     display: block;
     border-radius: 3px;
     margin-bottom: 15px;
     height: 320px;
     margin: 0 8px 0 0px;
     object-fit: cover;
 }

 .product-thumbnails {
     display: flex;
     gap: 2px;
     /* justify-content: center; */
     flex-direction: column;
 }

 .product-thumb {
     /* width: 70px; */
     height: 62px;
     padding: 3px;
     border-radius: 5px;
     object-fit: cover;
     cursor: pointer;
     opacity: 0.7;
     transition: all 0.3s;
 }

 .product-thumb.active {
     opacity: 1;
     border: 2px solid var(--gold);
 }

 .product-details {
     flex: 0 0 55%;
 }

 .product-details .sertif {
     margin: 10px 0 2px;
     font-style: italic;
     color: #999999;
     font-weight: 300;
     font-size: 13px;
     text-align: center;
 }

 .product-details .sertif em {
     font-style: italic;
     text-align: center;
 }

 .modal-product-name {
     font-size: 17px;
     color: #000000;
     margin-bottom: 10px;
 }

 .product-description {
     margin-bottom: 20px;
     line-height: 1.7;
 }

 .product-certificates {
     display: flex;
     gap: 3px;
     margin: 10px 0;
     flex-wrap: wrap;
 }

 .certificate-badge {
     padding: 5px 5px;
     background-color: rgb(255, 255, 255);
     border-radius: 20px;
     font-size: 12px;
     font-weight: 600;
     color: #1c1c1c;
     border: 1px solid #e7ab54;
 }

 .modal-market-buttons {
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-top: 15px;
     background: linear-gradient(316deg, rgb(88 214 148 / 31%) 0%, rgb(38 238 132 / 10%) 100%);;
    padding: 17px 10px 7px;
    border-radius: 7px;
 }

 .modal-market-btn {
     display: flex;
     align-items: center;
     padding: 10px 50px;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s;
     color: var(--white);
     font-size: 14px;
     position: relative;
     overflow: hidden;
     z-index: 1;
     justify-content: center;
 }

 .modal.modal-product .modal-market-btn.wb-btn img {
     width: 205px;
 }

 .modal.modal-product .modal-market-btn.ozon-btn img {
     width: 130px;
 }

 .modal-market-btn.ozon-btn {
     padding: 11px 93px;
 }

 .modal-market-btn.kaspi-btn {
     padding: 8px 0px;
 }

 .modal-market-btn::before {
     content: "";
     position: absolute;
     top: -50%;
     left: -50%;
     width: 250%;
     height: 140%;
     background: linear-gradient(to bottom right,
             transparent 45%,
             rgba(255, 255, 255, 0.514) 50%,
             transparent 55%);
     animation: shine 3s infinite;
 }

 @keyframes shine {
     0% {
         transform: translateX(-100%) translateY(-100%) rotate(45deg);
     }

     100% {
         transform: translateX(100%) translateY(100%) rotate(45deg);
     }
 }

 .modal-market-btn i {
     margin-right: 8px;
     font-size: 14px;
 }

 .add-to-cart-modal {
     /* width: 100%; */
     background-color: #fff;
     color: #e7ab54;
     border: none;
     padding: 7px 10px;
     border-radius: 5px;
     border: 1px solid #e7ab54;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0px 0;
     transition: all 0.3s;
 }

 .add-to-cart-modal i {
     margin-right: 8px;
 }

 .add-to-cart-modal:hover {
     background-color: #03382d;
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 /* Cart Modal */
 .cart-modal-content {
     /* width: 90%; */
     max-width: 800px;
 }

 .cart-header {
     text-align: center;
     margin-bottom: 20px;
     font-weight: 400;
     font-size: 25px;
     color: #eda33cc7;
 }

 .cart-items {
     margin-bottom: 30px;
 }

 .cart-item {
     display: flex;
     align-items: center;
     padding: 15px 0;
     border-bottom: 1px solid #ffb34469;
 }

 .cart-item-image {
     width: 90px;
     /* height: 130px; */
     object-fit: cover;
     margin-right: 15px;
     cursor: pointer;
 }

 /* .cart-item-info {
     flex-grow: 1;
 } */

 .cart-item-name {
     font-weight: 300;
     color: #f0fffa;
     margin-bottom: 10px;
     cursor: pointer;
     font-size: 15px;
     width: 220px;
 }

 .cart-item-market {
     display: flex;
     flex-direction: column;
     gap: 8px;
     margin-top: 10px;
     justify-content: center;
 }

 .cart-item-market-btn {
     display: flex;
     align-items: center;
     padding: 15px 30px;
     border-radius: 5px;
     text-decoration: none;
     /* font-size: 12px; */
     color: var(--white);
     border: 2px solid #ffb344;
 }

 .cart-item-market-btn.wb-btn img {
     width: 200px;
 }

 .cart-item-market-btn.ozon-btn img {
     width: 160px;
 }

 .cart-item-market-btn.ozon-btn {
     padding: 12px 51px;
 }

 .cart-item-market-btn.kaspi-btn {
     padding: 12px 56px;
     font-size: 26px;
 }

 .cart-item-market-btn i {
     margin-right: 5px;
     font-size: 12px;
 }

 .cart-remove {
     color: #747474;
     cursor: pointer;
     font-size: 18px;
     transition: all 0.3s;
     padding: 10px;
 }

 .cart-remove:hover {
     transform: scale(1.2);
 }

 .empty-cart {
     text-align: center;
     padding: 40px;
     color: #9494948f;
     font-style: italic;
     font-size: 13px;
 }

 /* Mobile Menu */
 .mobile-menu {
     position: fixed;
     top: 0;
     right: -300px;
     width: 190px;
     height: 100%;
     background-color: #f7f7f7;
     z-index: 1500;
     padding: 65px 20px 20px;
     transition: right 0.3s;
     box-shadow: var(--shadow);
 }

 .mobile-menu.active {
     right: 0;
 }

 .mobile-menu ul {
     list-style: none;
 }

 .mobile-menu ul li {
     margin-bottom: 15px;
     border-bottom: 1px solid #b5b5b56e;
 }

 .mobile-menu ul li a {
     text-decoration: none;
     color: #383838;
     font-weight: 300;
     font-size: 16px;
     display: block;
     padding: 10px;
     border-radius: 5px;
     transition: all 0.3s;
     /* text-decoration: underline; */
 }

 .mobile-menu ul li a:hover {
     background-color: rgba(13, 92, 99, 0.1);
     color: var(--emerald);
 }

 .close-menu {
     position: absolute;
     top: 1px;
     right: 15px;
     color: #202020bd;
     font-size: 30px;
     cursor: pointer;
 }

 .modal-product .modal-content {
     background: #fff;
 }

 .modal.modal-product .modal-market-btn {
     color: #ffffff;
     font-size: 17px;
     font-weight: 300;
 }

 .modal.modal-product .modal-market-btn.kaspi21 {
     font-size: 18px;
     font-weight: 500;
 }


 .popup-overlay {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.7);
     z-index: 1000;
     display: none;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

 .popup-content {
     background: white;
     border-radius: 12px;
     padding: 25px;
     max-width: 480px;
     width: 100%;
     max-height: 80vh;
     overflow-y: auto;
     position: relative;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
 }

 .popup-close {
     position: absolute;
     top: 5px;
     right: 10px;
     background: none;
     border: none;
     font-size: 24px;
     cursor: pointer;
     color: #6f6f6f;
     padding: 5px;
 }

 .popup-trigger {
     text-decoration: underline;
     cursor: pointer;
     margin-bottom: 10px;
 }

 .popup-text {
     margin-top: 15px;
     color: #535353;
     font-size: 14px;
     font-weight: 300;
 }

 .popup-text h3 {
     margin-bottom: 10px;
 }

 /* Responsive Styles */

 @media (max-width: 1500px) {

     .banner-wrap,
     .header-wrap {
         max-width: 1100px;
     }
 }

 @media (max-width: 1120px) {

     .banner-wrap,
     .header-wrap {
         max-width: 730px;
     }

     nav ul li {
         margin: 0 15px;
     }

     nav ul li a {
         font-size: 14px;
     }

     .banner-title {
         font-size: 30px;
     }

     .banner-subtitle {
         font-size: 15px;
     }
 }




 @media (max-width: 992px) {
     /* .banner {
         padding-top: 120px;
     } */

     .section-title {
         font-size: 28px;
     }

     .process-step {
         margin-bottom: 20px;
     }

     .review {
         min-width: 100%;
     }

     /* .banner-title {
         font-size: 23px;
     } */

     /* .banner-subtitle {
         font-size: 17px;
        width: 330px;
     } */

     .product-modal {
         flex-direction: column;
     }

 }

 @media (max-width: 805px) {
     nav {
         display: none;
     }

     .burger-menu {
         display: block;
     }

     .advantages-slider {
         height: 60px;
     }

     .slide-text {
         font-size: 15px;
     }

     .footer-content {
         grid-template-columns: 1fr;
     }

     .banner {
         background: url(../img/banner-new-big-2.png) no-repeat center center / cover;
     }
 }

 @media (max-width: 740px) {
     .banner {
         background: url(../img/banner-new-big-2.png) no-repeat center center / cover;
     }

     .banner-wrap,
     .header-wrap {
         max-width: 430px;
     }

     .banner-title {
         font-size: 22px;
     }

     .banner-subtitle {
         font-size: 15px;
         width: 217px;
     }
 }



 @media (max-width: 576px) {

     .banner-wrap,
     .header-wrap {
         max-width: 360px;
     }


     .header-right {
         margin-left: auto;
     }


     .banner-title {
         font-size: 25px;
         line-height: 1.1;
         margin-bottom: 25px;
         width: 183px;
     }

     .banner-subtitle {
         font-size: 14px;
         width: 170px;
     }


     .banner {
         background: url(../img/banner-new.png) no-repeat center center / cover;
         height: 410px;
         padding-top: 130px;
         padding-bottom: 50px;
     }


     .section-title {
         font-size: 24px;
     }

     .about-content {
         padding: 30px 10px;
     }

     .certificate {
         width: 100%;
         text-align: center;
     }

     .modal-product .modal-content {
         background: #fff;
     }



     .modal.modal-product .modal-content {
         padding: 20px 12px;
     }

     .modal-market-buttons {
         flex-direction: column;
     }

     .modal-market-btn {
         justify-content: center;
     }


     .banner-list {
         width: 315px;
     }

     /* .catalog {
    background-color: var(--light-gray); 
     background: linear-gradient(rgb(2 20 15 / 85%), rgb(4 36 31 / 66%)), url('../img/img44.jpg') no-repeat center center / cover;
     padding-top: 30px;
     position: relative;
     overflow: hidden;
     height: 1000px; 
 }*/

     .products-grid {
         gap: 30px;
     }


     .reviews-slider {
         height: 380px;
     }
 }


 @media (max-width: 480px) {
     .cart-item-name {
         width: 190px;
         font-size: 17px;
     }

     .cart-item-market {
         width: 205px;
     }

     .cart-item-market-btn.ozon-btn {
         padding: 14px 51px;
     }

     .cart-item-market-btn.kaspi-btn {
         padding: 8px 35px;
         font-size: 21px;
     }

     .cart-modal-content {
         padding: 30px 14px;
     }

     .cart-item-image {
         width: 70px;
     }

     .reviews-slider {
         height: 320px;
     }
 }


 @media (max-width: 500px) {
     .banner-title {
         font-size: 25px;
         line-height: 1.1;
         margin-bottom: 25px;
         width: 183px;
     }

     .banner-subtitle {
         font-size: 14px;
         width: 170px;
     }


     .banner {
         background: url(../img/banner-new.png) no-repeat center center / cover;
         height: 360px;
         padding-top: 100px;
         padding-bottom: 50px;
     }
 }

 @media (max-width: 410px) {
     .banner {
         background: url(../img/banner-new.png) no-repeat center center / cover;
         height: 300px;
         padding-top: 90px;
         padding-bottom: 50px;
     }

     .banner-title {
         font-size: 23px;
         width: 173px;
         line-height: 1.1;
         margin-bottom: 16px;
     }

     .banner-subtitle {
         font-size: 13px;
         width: 137px;
     }


 }

 .cookie-banner {
     position: fixed;
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
     max-width: 1100px;
     width: calc(100% - 40px);
     background: #0b1f33;
     color: #fff;
     padding: 16px 20px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
     font-size: 14px;
     line-height: 1.4;
     z-index: 9999;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
 }

 .cookie-banner a {
     color: #4da3ff;
     text-decoration: underline;
 }

 .cookie-banner button {
     background: #e60000;
     color: #fff;
     border: none;
     border-radius: 4px;
     padding: 8px 14px;
     cursor: pointer;
     font-size: 14px;
     white-space: nowrap;
 }

 .cookie-banner button:hover {
     background: #c80000;
 }

 .site-footer {
     padding: 20px 15px 35px;
     font-size: 13px;
     color: #777;
     text-align: center;
 }

 .footer-inner {
     max-width: 480px;
     margin: 0 auto;
 }

 .footer-links {
     display: flex;
     flex-direction: column;
     margin-bottom: 10px;
 }

 .footer-links a {
     color: #555;
     text-decoration: none;
     margin: 0 6px;
 }

 .footer-links a:hover {
     text-decoration: underline;
 }

 .separator {
     color: #bbb;
 }

 .footer-copy {
     font-size: 12px;
     color: #999;
 }

 /* ====== MOBILE ≤ 600px ====== */
 @media (max-width: 600px) {
     .cookie-banner {
         flex-direction: column;
         align-items: stretch;
         padding: 12px 14px;
         gap: 10px;
         font-size: 12px;
         line-height: 1.35;
         bottom: 10px;
         border-radius: 10px;
     }

     .cookie-banner button {
         width: 100%;
         padding: 8px 0;
         font-size: 13px;
     }
 }


 .quantity-options {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.quantity-option {
    /* flex: 1; */
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 177px;
}
.quantity-option-wrap {
    border: 2.5px solid #ffffff;
    background: #fff;
    border-radius: 5px;
    padding: 5px 3px 5px 3px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.quantity-option.one {
    width: 150px;
    margin-top: 10px;
}
.option-content {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    margin-left: 12px;
}
.option-content.two {
    margin-left: 6px;
}
.option-img {
    width: 24px;
    margin-right: 7px;
}

.option-img.davl {
width: 27px;
}
.option-info {
    flex: 1;
}
.option-name {
    font-size: 13px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    color: rgb(30 106 65);
    text-align: left;
}
.option-capsules {
    font-size: 12px;
    color: #9f9f9f;
    font-weight: normal;
}
.option-benefit {
    font-size: 13px;
    color: #181818;
    font-weight: 800;
    display: flex;
    align-items: center;
    margin-top: 8px;
    margin-left: 2px;
}
.quantity-option-wrap.selected {
    border-color: rgb(22, 97, 57);
    background: #fff;
    padding: 13px 5px 7px;
}
.quantity-option-wrap.selected .option-name {
    font-size: 14px;
}
.best-price-label {
   position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(316deg, rgb(19 91 52) 0%, rgb(29 93 59) 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px 2px;
    letter-spacing: 0px;
    border-radius: 3px;
    white-space: nowrap;
    text-transform: uppercase;
}
.option-img.two {
    width: 65px;
    margin-right: 6px;
}

