@font-face {
    font-family: 'Montserrat-Medium';
    src:
        url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;


   
}
@font-face {
 font-family: 'Montserrat-Bold';
    src:
        url('../fonts/Montserrat-Bold.woff') format('woff');
    font-style: normal;
    font-display: swap;

}

body, html{
	height: auto;
    width: 100%;
    overflow-x: clip;

}

body{
	font-family: 'Montserrat-Medium';
	background: #FFFFFF;
    color: #333333;
}

a{
    text-decoration: none;
}

header {
    width: 100%;
    /*height: 70px;*/
    background: #F2E2CF;
    
}

.content-wrapper {
    width: 100%;
    position: relative;  
    box-sizing: border-box;
}
section{
    padding: 0 16px;
    box-sizing: border-box;
}

section.header {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    position: relative;
    z-index: 150;
}

section.header .logo{
    width: 172px;
    /*margin-left: 16px;*/
}

section.header .button-phone-header{
    display: flex;
    align-items: center;
    /*margin-right: 16px;*/
    box-sizing: border-box;
    display: none;

}

section.header .button-phone-header .cart-button{
    position: relative;
}
section.header .button-phone-header .cart-button span{
    color: rgb(84, 100, 34);
    background: rgb(255, 255, 255);
    border-radius: 50%;
    padding: 1px 6px;
    font-size: 11px;
    margin-left: 3px;
    position: absolute;
    top: 11px;
    right: 6px;
}

section.header .button-phone-header a.modal-link,
.button-nav-login a{
    background: #546422;
    border-radius: 20px;
    padding: 16px 32px;
    box-sizing: border-box;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
}
section.header .button-phone-header a.modal-link:hover,
.button-nav-login a:hover {
    background: #3E4C13;
    transition: all 0.5s ease;
}
.button-nav-login a{
    border-radius: 15px;
    padding: 15px 100px;
    font-size: 23px;
    margin-top: 20px;
    display: inline-block;
    text-align: center;
}
    

.header-menu-block.desktop-block {
    display: none;
}


.header-menu-block.sidebar-menu {
    display: flex;
}

.header-menu-block {
    height: 100%;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}








 /* ===== BURGER BUTTON ===== */
  .burger-btn {
    width: 40px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 4px;
    position: relative;
    z-index: 300;
  }
 
  .burger-btn span {
    display: block;
    height: 3px;
    background: #546422;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform-origin: center;
  }
 
  /* Burger → X animation */
  .burger-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .burger-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
 
  /* ===== OVERLAY MENU ===== */
  .nav-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #F2E2CF;
    z-index: 150;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0 20px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
    overflow-y: scroll;
    margin-top: 90px;
  }
 
  .img-money-block-nav{
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
  }
 
  .nav-overlay.open {
    transform: translateX(0);
  }
 
  /* Nav items */
  .nav-links {
    list-style: none;
    /*padding: 0 28px;*/
  }
 
/*  .nav-links li {
    overflow: hidden;
    transform: translateX(60px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .img-money-block-nav,
  .img-text-block-nav{
    overflow: hidden;
    transform: translateX(60px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
 
  .nav-overlay.open .nav-links li:nth-child(1) { transition-delay: 0.05s; transform: translateX(0); opacity: 1; }
  .nav-overlay.open .nav-links li:nth-child(2) { transition-delay: 0.10s; transform: translateX(0); opacity: 1; }
  .nav-overlay.open .nav-links li:nth-child(3) { transition-delay: 0.15s; transform: translateX(0); opacity: 1; }
  .nav-overlay.open .nav-links li:nth-child(4) { transition-delay: 0.20s; transform: translateX(0); opacity: 1; }
  .nav-overlay.open .nav-links li:nth-child(5) { transition-delay: 0.25s; transform: translateX(0); opacity: 1; }
  .img-money-block-nav { transition-delay: 0.30s; transform: translateX(0); opacity: 1; }
  .img-text-block-nav{transition-delay: 0.35s; transform: translateX(0); opacity: 1;}*/
 
  .nav-links li a {
    display: block;
    padding: 15px 0;
    color: #000;
    text-decoration: none;
    font-size: 24px;
    font-family: 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.2s, padding-left 0.2s;
    position: relative;
  }
 
 
  .nav-links li a:active,
  .nav-links li a:hover {
    color: #000;
    padding-left: 8px;
  }

 
  /* Currency selector in menu */
  .nav-footer {
    padding: 0 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
  }
 
  .nav-overlay.open .nav-footer {
    opacity: 1;
    transform: translateY(0);
  }
 
  .currency-row {
    display: flex;
    gap: 24px;
    align-items: center;
  }
 
  .currency-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    font-size: 15px;
    font-family: 'Georgia', serif;
    transition: color 0.2s;
  }
 
  .currency-btn.active { color: #000; }
 
  .currency-btn .radio-ring {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid #000;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s;
  }
  .currency-btn.active .radio-ring {
    border-color: #000;
  }

 























section.header-title{
    padding: 40px 16px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}


section.header-title .img-fitst-block{
    display: none;
}
section.header-title .title-top{
    /*font-weight: bold;*/
    font-size: 38px;
    line-height: 44px;
    color: #4F6117;
    text-align: left;
    position: relative;
    z-index: 20;
    /* Мобила: длинные русские слова ("Международный") не должны вылезать за вьюпорт. */
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    box-sizing: border-box;
}
section.header-title .title-top span{
    font-family: 'Montserrat-Bold';
    overflow-wrap: break-word;
    word-break: break-word;
}
section.header-title .title-top .title-top-text{
    font-size: 22px;
    line-height: 28px;
    padding-top: 15px;
    box-sizing: border-box;
    font-family: 'Montserrat-Bold';
    overflow-wrap: break-word;
    word-break: break-word;
}
section.header-title .title-top .title-top-description{
    font-size: 16px;
    line-height: 24px;
    color: #585858;
    padding-top: 30px;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}


section.header-title .title-top-button-des{
    display: none;
}
section.header-title .title-top-button-mob{
    display: block;
}
section.header-title .img{
    padding: 40px 0;
    overflow: hidden;
    border-radius: 35px;
}
section.header-title .img img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 35px;
}
section.header-title .title-top-button-mob a{
        display: block;
    }
section.header-title .title-top-button,
section.header-title .title-top-button-des,
section.header-title .title-top-button-mob,
section.advantages .advantages-button{
    height: auto;
    margin: 0 auto;
}
section.header-title .title-top-button-mob{
    display: block;
    padding-top: 25px;
    box-sizing: border-box;
}
section.advantages .advantages-button{
    padding: 30px 0 70px 0;
}

section.header-title .title-top-button a,
section.header-title .title-top-button-des a,
section.header-title .title-top-button-mob a,
section.advantages .advantages-button a,
section.software-advantages .software-advantages-block .description-block .button a,
.modal-popup .modal-block .modal-item form button,
.modal-popup .modal-block .modal-item form .modal-close-link{
    background: #546422;
    border-radius: 15px;
    padding: 10px 30px;
    box-sizing: border-box;
    color: #fff;
    font-size: 18px; 
    font-weight: bold;
}
.modal-popup .modal-block .modal-item form .modal-close-link{
    background: #C1C1C1;
    width: 100%;
}
.modal-popup .modal-block .modal-item form button[type="submit"]{
    width: 100%;
    margin-bottom: 15px;
}
.modal-popup .modal-block .modal-item form button{
    border: none;
}
section.header-title .title-top-button a:hover,
section.header-title .title-top-button-des a:hover,
section.header-title .title-top-button-mob a:hover,
section.advantages .advantages-button a:hover,
section.software-advantages .software-advantages-block .description-block .button a:hover,
.modal-popup .modal-block .modal-item form button[type="submit"]:hover{
    background: #3E4C13;
    transition: all 0.5s ease;
}
    

section.header-title .title-top-button a{
    display: block;  
}
section.advantages .advantages-button a,
section.software-advantages .software-advantages-block .description-block .button a{
    display: inline-block;
    
}
section.advantages {
    text-align: center;
    position: relative;
    /*overflow-x: clip;*/
}
section.advantages .advantages-title{
    font-size: 32px;
    line-height: 37px;
    padding-bottom: 30px;
    box-sizing: border-box;
}
section.advantages .advantages-block{
    padding: 20px 0;
    box-sizing: border-box;
}
section.advantages .advantages-block .advantages-block-items{
    display: flex;
    box-sizing: border-box;
    flex-wrap: wrap;
   
}
section.advantages .advantages-block .advantages-block-items .img{
    /*width: 159px;*/
    margin: 0 auto;
    /*padding: 62px 0 50px 0;*/
    box-sizing: border-box;
    order: 2;
}
section.advantages .advantages-block .advantages-block-items .img img{
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    object-fit: cover;
    border-radius: 35px;
}
section.advantages .advantages-block .advantages-block-items .title{
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    /*padding-bottom: 30px;*/
    box-sizing: border-box;
    text-align: left;
}
section.advantages .advantages-block .advantages-block-items .title span{
    font-family: 'Montserrat-Bold';
    color: #4F6117;
    font-size: 40px;
    padding: 20px 0 30px;
    display: block;
}
section.advantages .advantages-block .advantages-block-items .title .description{
    padding-bottom: 30px;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 28px;
}

section.software-advantages{
    background: #F5F5F5;
}
section.software-advantages .software-advantages-block{
    padding: 22px 0 30px 0;
    box-sizing: border-box;
}
section.software-advantages .software-advantages-block .img{
    height: 267px;
}
section.software-advantages .software-advantages-block .img img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    overflow: hidden;
    border-radius: 5px;
}
section.software-advantages .software-advantages-block .description-block{
    padding-top: 22px;
    box-sizing: border-box;
}
section.software-advantages .software-advantages-block .description-block .title{
    font-size: 32px;
    line-height: 37px;
    padding-bottom: 20px;
    box-sizing: border-box;
}
section.software-advantages .software-advantages-block .description-block .description{
    font-size: 18px;
    line-height: 21px;
    color: #444444;
    padding-bottom: 30px;
}


.our-services-background-image{
    background-image: url(../images/Image_202603121.png);
    background-color: #000;
    color: #fff;
}
.our-services-background-image section.our-services{
    padding: 30px 16px;
}

.our-services-background-image section.our-services .title{
    font-size: 40px;
    font-family: 'Montserrat-Bold';
    padding: 20px 0 30px;
    text-align: center;
}
.our-services-background-image section.our-services .our-services-block{
    display: flex;
    flex-wrap: wrap;
}

.our-services-background-image section.our-services .our-services-block .our-services-block-items{
    width: 100%;
    background: rgba(17, 21, 19, 0.64);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    margin: 10px 0;
    padding: 10px;
    box-sizing: border-box;
}

.our-services-background-image section.our-services .our-services-block .our-services-block-items .our-services-block-items-title,
section.why-choose .why-choose-block .why-choose-block-text .why-choose-block-text-number .title-text{
    font-family: 'Montserrat-Bold';
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 15px;
    box-sizing: border-box;
}

.our-services-background-image section.our-services .our-services-block .our-services-block-items .our-services-block-items-description{
    font-size: 18px;
    line-height: 22px;
}

.our-services-background-image section.our-services .our-services-block .our-services-block-items .our-services-block-items-description p{
    padding-bottom: 10px;
    box-sizing: border-box;
}


.why-choose-content{
    background: #F2E2CF;
}

section.why-choose,
section.catalog-breakdown{
    padding: 30px 0;
}

section.why-choose .why-choose-block-img-mob{
    display: flex;
    justify-content: center;
    height: 300px;
}

section.why-choose .title,
section.catalog-breakdown .title,
section.explore-our-full-Catalog .explore-our-full-Catalog-block .title-block .title,
section.contact-us .title
{
    color: #4F6117;
    font-size: 40px;
    font-family: 'Montserrat-Bold';
    padding: 20px 16px 30px 16px;
}

section.catalog-breakdown .title{
    text-align: center;
}

section.why-choose .why-choose-block{
    display: flex;
    flex-wrap: wrap;
    padding: 0 16px;
}

section.why-choose .why-choose-block .why-choose-block-img {
    position: relative;
    width: 100%;
    display: none;
    

}

section.why-choose .why-choose-block .why-choose-block-img-mob{
    display: none;
}
 section.why-choose .why-choose-block .why-choose-block-img img{
    width: 100%;
}

section.why-choose .why-choose-block .why-choose-block-text {
    order: 2;
}
section.why-choose .why-choose-block .why-choose-block-img{
    order: 1;
}
section.why-choose .why-choose-block .why-choose-block-text .why-choose-block-text-number{
    padding: 15px 0;

}


section.why-choose .why-choose-block .why-choose-block-text .why-choose-block-text-number .num{
    background: #4F6117;
    color: #fff;
    padding: 5px 11px;
    border-radius: 20px;
    display: inline-block;
}

section.why-choose .why-choose-block .why-choose-block-text .why-choose-block-text-number .title-text{
    color: #4F6117;
    padding: 10px 0;
    box-sizing: border-box;
}

section.why-choose .why-choose-block .why-choose-block-text .button-nav-login a{
    padding: 20px 50px;
}











footer {
    background: #546422;
}
footer section.footer .footer-content .title{
    font-size: 24px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
    padding: 30px 0;
}
footer section.footer .footer-content form{
    position: relative;
    width: 100%;
    overflow: hidden;
}
footer section.footer .footer-content form input{
    border: none;
    background: #FFFFFF;
    border-radius: 5px 0px 0px 5px;
    padding: 15px;
    box-sizing: border-box;
    width: 65%;

}
footer section.footer .footer-content form button{
    background: #92E3A9;
    border-radius: 0px 5px 5px 0px;
    border: none;
    padding: 15px;
    color: #333333;
    position: absolute;
    box-sizing: border-box;
    width: 35%;
}
footer section.footer .footer-content form button:hover{
    background: #1D969A;
    color: #fff;
    transition: all 0.5s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}
footer section.footer .footer-content .contact-block{
    padding: 25px 0 25px 16px;
    box-sizing: border-box;
}
footer section.footer .footer-content .contact-block .logo{
    height: 40px;
    /*width: 142px;*/
/*    margin-bottom: 25px;*/
    
}
footer section.footer .footer-content .contact-block .logo img{
    height: 100%;
}
footer section.footer .footer-content .contact-block .email{
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    padding-bottom: 30px;
    box-sizing: border-box;
}
footer section.footer .footer-content .contact-block .email a{
    color: #fff;
}
footer section.footer .footer-content .contact-block .button a{
    background: #01414A;
    border-radius: 5px;
    padding: 16px 32px;
    box-sizing: border-box;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 21px;
    display: inline-block;
}
footer section.footer .footer-content .contact-block .button a:hover{
    background: #0E4F58;
    transition: all 0.5s ease;
}

footer section.footer .footer-content-bottom{
    font-size: 18px;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.53);
}
footer section.footer .footer-content-bottom ul{
    padding-bottom: 30px;
    box-sizing: border-box;

}
footer section.footer .footer-content-bottom ul li{
    padding-top: 25px;
    box-sizing: border-box;
}
footer section.footer .footer-content-bottom ul li a{
    color: rgba(255, 255, 255, 0.53);
}
footer section.footer .footer-content-bottom ul li:first-child{
    padding-top: 0px;
}

.modal-popup {
    position: fixed;
    display: none;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    z-index: 10151;
}

.modal-popup .modal-bg {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    position: fixed;
    top: 0;
    bottom: 0;
}
.modal-popup .modal-block {
    width: 470px;
    max-width: 100%;
    z-index: 10152;
    /*padding: 20px;
    box-shadow: #080808 0 6px 50px;*/
    background: #fff;
    border-radius: 10px;
    color: #6d7276;
    box-sizing: border-box;
    margin: auto;
    position: relative;
}
.modal-popup .modal-block .modal-item .modal-item-text{
    background: #01414A;
    border-radius: 10px 10px 0px 0px;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 22px 57px;
    box-sizing: border-box;
}
.modal-popup .modal-block .modal-item form{
    padding: 30px;
    box-sizing: border-box;
}
.modal-popup .modal-block .modal-item form input{
    width: 100%;
    border: 1px solid #C4C4C4;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}





/*catalog-breakdown*/

section.catalog-breakdown,
section.carousel-section{
    padding: 30px 0;
    
}

section.catalog-breakdown .button-nav-login{
    text-align: center;
}
section.catalog-breakdown .catalog-breakdown-block{

}

section.catalog-breakdown .catalog-breakdown-block .catalog-breakdown-block-items{
    
}

section.catalog-breakdown .catalog-breakdown-block .catalog-breakdown-block-items{
        width: 25%;
        background: #F2E2CF;
        border-radius: 15px;
        padding: 20px;
        box-sizing: border-box;
    }


.catalog-breakdown-block-items .catalog-title{
    color: #4F6117;
    font-size: 24px;
    font-family: 'Montserrat-Bold';
    text-align: center;
    min-height: 58px;
}


section.carousel-section,
section.explore-our-full-Catalog{
    background: #F2E2CF;
}
/*.catalog-breakdown-block-items .catalog-item {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.catalog-breakdown-block-items .catalog-item .catalog-name{
    color: #fff;
    background: #4F6117;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 15px;
    font-size: 16px;

    width: 160px;
    height: 59px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px;
    box-sizing: border-box;

}*/

.catalog-breakdown-block-items .catalog-item .catalog-name span{
    font-size: 10px;
    text-align: right;
    display: block;
    width: 100%;
}



section.catalog-breakdown{
    padding: 30px 0;
}

@media (max-width: 700px) {
  .catalog-breakdown-block { display: none; }
  .catalog-breakdown .catalog-owl { display: block; }
}

@media (min-width: 701px) {
  .catalog-breakdown .catalog-owl { display: none !important; }
}

@media (max-width: 700px) {
  .catalog-breakdown .catalog-breakdown-block { display: none; }

  .catalog-breakdown .catalog-owl {
    position: relative;
    /*padding: 0 10px;*/
  }

  .catalog-breakdown .catalog-owl .catalog-breakdown-block-items {
    background: #F2E2CF;
    border-radius: 15px;
    padding: 20px;
  }

  .catalog-breakdown .catalog-owl .catalog-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .catalog-breakdown .catalog-owl .catalog-name {
    width: 100%;
    height: 59px;
    background: #4F6117;
    color: #fff;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    padding: 5px;
    box-sizing: border-box;
    flex-wrap: wrap;
  }

  .catalog-breakdown .catalog-owl .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #4F6117 !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 26px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .catalog-breakdown .catalog-owl .owl-nav button.owl-prev { left: 20px; }
  .catalog-breakdown .catalog-owl .owl-nav button.owl-next { right: 20px; }
  .catalog-breakdown .catalog-owl .owl-nav button.disabled { opacity: 0.25 !important; }

  .catalog-breakdown .catalog-owl .owl-dots { margin-top: 15px; text-align: center; }
  .catalog-breakdown .catalog-owl .owl-dot span {
    background: #ccc !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    margin: 0 4px !important;
  }
  .catalog-breakdown .catalog-owl .owl-dot.active span { background: #4F6117 !important; }
}

@media (min-width: 701px) {
  .catalog-breakdown .catalog-owl { display: none; }
}






 /*.carousel-section {
    width: 100%;
    max-width: 1300px;
    padding: 0 0;
  }
*/
  /* ── OUTER: clips only horizontally, allows vertical overflow for center scale ── */
  .catalog-breakdown .owl-outer {
    position: relative;
    /* clip only left/right so center slide can grow vertically */
    clip-path: inset(0 0 0 0);
  }

  /* ── NAV — outside the clipped area, positioned relative to outer ── */
  .catalog-breakdown .owl-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #4a6741;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: background .2s;
    box-shadow: 0 2px 12px rgba(0,0,0,.22);
  }
  .catalog-breakdown .owl-btn:hover { background: #3a5332; }
  .catalog-breakdown .owl-btn svg { pointer-events: none; }
  .catalog-breakdown .owl-prev { left: 30px; }
  .catalog-breakdown .owl-next { right: 30px; }

  /* ── CLIP WRAP: hides track overflow left/right ── */
  .catalog-breakdown .owl-clip {
    overflow: hidden;
    /* extra padding-top/bottom so scaled center slide isn't clipped vertically */
    padding: 30px 0;
    margin: -30px 0;
  }

  /* ── TRACK ── */
  .catalog-breakdown .owl-track {
    display: flex;
    align-items: center;
    transition: transform 0.55s cubic-bezier(.4,0,.2,1);
    will-change: transform;
  }

  /* ── SLIDES ── */
  .catalog-breakdown .owl-slide {
    flex: 0 0 auto;
    padding: 0 10px;
  }

  .catalog-breakdown .owl-slide img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    transition: height 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease;
  }

  /* ── CENTER SLIDE: bigger + shadow ── */
  .catalog-breakdown .owl-slide.is-center img {
    height: 320px;
    box-shadow: 0 16px 48px rgba(0,0,0,.18);
    transform: scale(1.02);
  }

  /* ── DOTS ── */
  .catalog-breakdown .owl-dots {
    display: none !important;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .catalog-breakdown .owl-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #d4b89a;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s;
  }
  .catalog-breakdown .owl-dot.active { background: #4a6741; }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    .catalog-breakdown .owl-btn { display: none !important; }
    .catalog-breakdown .owl-dots { display: flex; }

    .catalog-breakdown .owl-clip { padding: 10px 0; margin: -10px 0; }

    .catalog-breakdown .owl-slide img { height: 270px; border-radius: 24px; }
    .catalog-breakdown .owl-slide.is-center img {
      height: 270px;
      box-shadow: none;
      transform: none;
    }
  }

.our-full-Catalog,
.contact-us-wrapper{
     background: #F2E2CF;
    }

.contact-us-wrapper{
    padding-top: 20px;
    box-sizing: border-box;
}




section.explore-our-full-Catalog{
    padding: 0;
}

section.explore-our-full-Catalog .explore-our-full-Catalog-block{
    display: flex;
    flex-wrap: wrap;
}

section.explore-our-full-Catalog .explore-our-full-Catalog-block .title-block{
    width: 100%;
    text-align: center;
}


section.explore-our-full-Catalog .explore-our-full-Catalog-block .title-block .title{
    text-align: center;
    padding-bottom: 5px;
}

section.catalog-breakdown .link,
section.carousel-section .link{
    text-align: center;
}

section.carousel-section .link{
    padding-top: 20px;
}

section.explore-our-full-Catalog .explore-our-full-Catalog-block .title-block .link a,
section.carousel-section .link a,
section.catalog-breakdown .link a{
    border-radius: 15px;
    padding: 10px 30px;
    font-size: 23px;
    margin-top: 20px;
    display: inline-block;
    text-align: center;
    background: #546422;
    color: #fff;
}

section.explore-our-full-Catalog .explore-our-full-Catalog-block .title-block .link a:hover,
section.catalog-breakdown .link a:hover{
    background: #3E4C13;
    color: #fff;
    transition: all 0.5s ease;
}

section.explore-our-full-Catalog .explore-our-full-Catalog-block .icons-block{
    width: 100%;
    display: flex;
    border-top: 2px solid #546422;
    border-bottom: 2px solid #546422;
    margin: 20px 16px;

}

section.explore-our-full-Catalog .explore-our-full-Catalog-block .icons-block .icons-block-items{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5px;
    box-sizing: border-box;
}

section.explore-our-full-Catalog .explore-our-full-Catalog-block .icons-block .icons-block-items img{
    width: 42px;
}

section.explore-our-full-Catalog .explore-our-full-Catalog-block .icons-block .icons-block-items .description{
    font-size: 12px;
}



section.contact-us .title{
    text-align: center;
    padding-bottom: 30px;
}

section.contact-us .contact-us-block{
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

section.contact-us .contact-us-block .contact-tel{
    padding-bottom: 15px;
    box-sizing: border-box;
    color: #333333;
}

section.contact-us .contact-us-block .contact-icon a{
    display: inline-block;
    height: 100%;

}
section.contact-us .contact-us-block .contact-tel p{
    padding-bottom: 5px;
    box-sizing: border-box;
}
section.contact-us .contact-us-block .contact-tel p a{
    color: #333;
}

section.contact-us .contact-us-block .contact-icon a img{
    width: 50px;
    margin-right: 25px;
}

section.contact-us .contact-us-block .contact-icon{
    padding-bottom: 20px;
}


section.footer .footer-content .contact-block{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 16px;
}

section.footer .footer-content .contact-block .menu-footer{
    display: flex;
    /*justify-content: center;*/
    flex-wrap: wrap;
    gap: 8px 20px;
    width: 100%;
    padding-bottom: 20px;
    box-sizing: border-box;

}

section.footer .footer-content .contact-block .menu-footer a{
    color: #fff;
    white-space: nowrap;
}

section.footer .footer-content .contact-block .menu-footer{
    order: 1;
}

section.footer .footer-content .contact-block .link-menu-footer{
    width: 50%;
    order: 3;
    text-align: right;
    
}

section.footer .footer-content .contact-block .link-menu-footer a{
    color: #546422;
    border-radius: 15px;
    padding: 10px 30px;
    background: #fff;
    display: inline-block;
}

/* menu-link wrappers removed, links are direct children of menu-footer */

section.footer .footer-content .contact-block .logo{
    width: 50%;
    order: 2;
 }


 section.footer .footer-content .contact-block .menu-footer .menu-link a:hover{
        transition: all 0.5s ease;
        text-decoration: underline;
    }


section.advantages .background-image img{
    position: absolute;
    right: -27%;
    top: -133%;
    width: 350px;
    

}




/*calculator page*/

.calculator-content-wrapper{
        background: #F2E2CF;
        padding: 20px 0;
    }

    .calculator-content-wrapper .title{
      text-align: center;
      background: #546422;
      color: #fff;
      font-family: 'Montserrat-Bold';
      font-size: 24px;
      padding: 10px 0;
      box-sizing: border-box;
      margin-bottom: 20px;
    }
  .calculator-content-wrapper .app {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
  }
 
  /* ── CARD ── */
  .calculator-content-wrapper .card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
  }
 
  .calculator-content-wrapper .card-header {
    background: #7a9060;
    padding: 8px 14px;
  }
  .calculator-content-wrapper .card-header span {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
  }
 
  .calculator-content-wrapper .card-body {
    padding: 12px 16px 14px;
  }
 
  /* ── SELECT ROWS ── */
  .calculator-content-wrapper .select-row {
    display: flex;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid #f0ece0;
    gap: 8px;
  }
  .calculator-content-wrapper .select-row:last-of-type { border-bottom: none; }
 
  .calculator-content-wrapper .row-label {
    width: 96px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 400;
    color: #3a3a2a;
  }
 
  .calculator-content-wrapper .select-wrap {
    flex: 1;
    position: relative;
  }
  .calculator-content-wrapper .select-wrap select {
    appearance: none;
    width: 100%;
    padding: 7px 26px 7px 30px;
    border: 1.5px solid #c8c3a0;
    border-radius: 8px;
    background: #fafaf5;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #3a3a2a;
    cursor: pointer;
    outline: none;
  }
  .calculator-content-wrapper .select-wrap select:focus { border-color: #7a9060; }
 
  .calculator-content-wrapper .f-icon {
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    pointer-events: none;
  }
  .calculator-content-wrapper .chevron {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 11px;
    color: #5a7040;
    line-height: 1;
  }
 
  .calculator-content-wrapper .camera-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1.5px solid #c8c3a0;
    background: #fafaf5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 15px;
    color: #5a7040;
  }
 






  .up-btn {
    z-index: 10;
    position: fixed; /*Фиксированное позиционирование*/
    bottom: 20px; /*Снизу*/
    right: 16px; /*Справа*/
    cursor: pointer; /*«Рука» при наведении*/


    opacity: 0; /*Прозрачность 0%*/
    visibility: hidden; /*Видимость на странице*/

    transition: .3s all; /*Плавность изменения 3 миллисекунды*/
}

/*Активный класс*/
.up-btn.is-show {
    opacity: 1; /*Прозрачность 100%*/
    visibility: visible; /*Видимость на странице*/
}





.calculator-content-wrapper{
        background: #F2E2CF;
        padding: 20px 0;
    }
  .calculator-content-wrapper .app {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
  }

  /* ── CARD ── */
  .calculator-content-wrapper .card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
  }

  .calculator-content-wrapper .card-header {
    background: #7a9060;
    padding: 8px 14px;
  }
  .calculator-content-wrapper .card-header span {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
  }

  .calculator-content-wrapper .calculator-content-wrapper .card-body {
    padding: 0px 16px 0px;
  }

  /* ── SELECT ROWS ── */
  .calculator-content-wrapper .select-row {
    display: flex;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid #f0ece0;
    gap: 8px;
  }
  .calculator-content-wrapper .select-row:last-of-type { border-bottom: none; }

  .calculator-content-wrapper .row-label {
    width: 96px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 400;
    color: #3a3a2a;
  }

  .calculator-content-wrapper .select-wrap {
    flex: 1;
    position: relative;
  }
  .calculator-content-wrapper .select-wrap select {
    appearance: none;
    width: 100%;
    padding: 7px 26px 7px 30px;
    border: 1.5px solid #c8c3a0;
    border-radius: 8px;
    background: #fafaf5;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #3a3a2a;
    cursor: pointer;
    outline: none;
  }
  .calculator-content-wrapper .select-wrap select:focus { border-color: #7a9060; }

  .calculator-content-wrapper .f-icon {
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    pointer-events: none;
  }
  .calculator-content-wrapper .chevron {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 11px;
    color: #5a7040;
    line-height: 1;
  }

  .calculator-content-wrapper .camera-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1.5px solid #c8c3a0;
    background: #fafaf5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 15px;
    color: #5a7040;
  }

  /* ── INFO LIST ── */
  .calculator-content-wrapper .info-sep { height: 10px; }
  .calculator-content-wrapper .info-line {
    font-size: 14px;
    color: #3a3a2a;
    line-height: 1.9;
    font-weight: 400;
  }
  .calculator-content-wrapper .info-line b { font-weight: 800; }

  /* ── INPUT ROW (Cost Calculator) ── */
  .calculator-content-wrapper .input-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0ece0;
    gap: 8px;
  }
  .calculator-content-wrapper .input-row:last-child { border-bottom: none; }
  .calculator-content-wrapper .input-row .row-label { flex: 1; width: auto; }

  .calculator-content-wrapper .inp-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
  .calculator-content-wrapper .inp-wrap .f-icon { left: 7px; }
  .calculator-content-wrapper .inp-wrap input {
    width: 110px;
    padding: 7px 8px 7px 28px;
    border: 1.5px solid #c8c3a0;
    border-radius: 8px;
    background: #fafaf5;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #3a3a2a;
    outline: none;
  }
  .calculator-content-wrapper .inp-wrap input:focus { border-color: #7a9060; }
  .calculator-content-wrapper .inp-wrap input::placeholder { color: #b0a888; font-weight: 400; }

  .calculator-content-wrapper .btn-edit {
    background: #3d5028;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 7px 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.02em;
    transition: background 0.15s;
  }
  .calculator-content-wrapper .btn-edit:hover { background: #2e3d1e; }
  .calculator-content-wrapper .btn-edit:active { transform: scale(0.96); }

  /* ── DOLLAR ── */
  .calculator-content-wrapper .dollar {
    font-size: 18px;
    font-weight: 800;
    color: #3a3a2a;
    line-height: 1;
    flex-shrink: 0;
  }

  /* ── LOGISTICS ROW ── */
  .calculator-content-wrapper .log-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0ece0;
    gap: 8px;
  }
  .calculator-content-wrapper .log-row:last-child { border-bottom: none; }
  .calculator-content-wrapper .log-row .row-label { flex: 1; width: auto; }

  /* ── RESULT ROW ── */
  .calculator-content-wrapper .res-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0ece0;
    gap: 8px;
  }
  .calculator-content-wrapper .res-row:last-child { border-bottom: none; }
  .calculator-content-wrapper .res-row .row-label { flex: 1; width: auto; }

  .calculator-content-wrapper .res-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
  .calculator-content-wrapper .res-wrap .f-icon { left: 7px; }
  .calculator-content-wrapper .res-wrap input {
    width: 110px;
    padding: 7px 8px 7px 28px;
    border: 1.5px solid #c8c3a0;
    border-radius: 8px;
    background: #fafaf5;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #3a3a2a;
    outline: none;
    pointer-events: none;
  }

  /* ── ACTIONS ── */
  .calculator-content-wrapper .actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .calculator-content-wrapper .btn-action {
    background: #3d5028;
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 15px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.15s, transform 0.1s;
  }
  .calculator-content-wrapper .btn-action:hover { background: #2e3d1e; }
  .calculator-content-wrapper .btn-action:active { transform: scale(0.97); }

  /* ── PLUS/MINUS BUTTONS ── */
  .calculator-content-wrapper .btn-pm {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1.5px solid #c8c3a0;
    background: #3d5028;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s, opacity 0.15s;
    line-height: 1;
    padding: 0;
  }
  .calculator-content-wrapper .btn-pm:hover:not(:disabled) { background: #2e3d1e; }
  .calculator-content-wrapper .btn-pm:active:not(:disabled) { transform: scale(0.95); }
  .calculator-content-wrapper .btn-pm:disabled {
    background: #d0cdb8;
    border-color: #d0cdb8;
    color: #a8a48e;
    cursor: default;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 360px) {
    .calculator-content-wrapper .row-label { width: 80px; font-size: 13px; }
    .calculator-content-wrapper .inp-wrap input, .res-wrap input { width: 90px; }
    .calculator-content-wrapper .btn-edit { padding: 7px 10px; }
  }







   /*.content-wrapper{
            background: #F2E2CF;
        }*/
    /* Ensure no ancestor breaks sticky positioning */
    .content-wrapper, .content-wrapper > section { overflow: visible; }
    /*.content-wrapper > section { padding: 0; }*/

    /* ── PAGE ── */
    .market-wrap {
        background: #F2E2CF;
        min-height: 100vh;
        padding-bottom: 40px;
    }
    
    
    header .header .header-menu-block {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .market-title {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 28px;
        color: #4F6117;
        padding: 10px 0 0;
        margin: 0;
    }
    .sticky-toolbar {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 900;
        background: #F2E2CF;
        padding-bottom: 6px;
        isolation: isolate;
    }

    /* ── FILTERS (top bar) ── */
    .filters-bar {
        display: flex;
        gap: 10px;
        padding: 4px 0;
        flex-wrap: wrap;
        align-items: flex-end;
    }
    .filter-group {
        display: flex;
        flex-direction: column;
        gap: 4px;
        min-width: 150px;
        flex: 1;
        max-width: 240px;
    }
    .filter-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 3px;
        min-height: 20px;
    }
    .filter-chip {
        display: inline-flex;
        align-items: center;
        gap: 3px;
        padding: 1px 6px;
        background: #f5f0e6;
        border: 1.5px solid #546422;
        border-radius: 12px;
        font-family: 'Montserrat', sans-serif;
        font-size: 10px;
        font-weight: 500;
        color: #333;
        white-space: nowrap;
    }
    .filter-chip .chip-x {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 14px;
        height: 14px;
        background: #546422;
        color: #fff;
        border-radius: 50%;
        font-size: 9px;
        cursor: pointer;
        line-height: 1;
    }
    .filter-chip .chip-count {
        font-size: 9px;
        color: #888;
        font-weight: 400;
    }
    .filter-chip .chip-x:hover { background: #3d4c13; }
    .filter-chip-clear {
        font-family: 'Montserrat', sans-serif;
        font-size: 10px;
        color: #585858;
        background: none;
        border: none;
        cursor: pointer;
        padding: 1px 3px;
        align-self: center;
    }
    .filter-chip-clear:hover { color: #546422; }

    /* Multi-select field with floating label + inline search */
    .filter-field {
        position: relative;
        border: 2px solid #546422;
        border-radius: 10px;
        background: #fff;
        padding: 7px 28px 7px 12px;
        cursor: pointer;
        min-height: 22px;
        display: flex;
        align-items: center;
        transition: border-color 0.2s;
    }
    .filter-field:hover { border-color: #3d4c13; }
    .filter-field.active { border-color: #3d4c13; }
    .filter-field .filter-label {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        color: #888;
        pointer-events: none;
        transition: all 0.2s;
        background: #fff;
        padding: 0 4px;
    }
    .filter-field.has-value .filter-label,
    .filter-field.open .filter-label {
        top: 0;
        font-size: 9px;
        color: #546422;
    }
    .filter-field .filter-value {
        font-family: 'Montserrat', sans-serif;
        font-size: 11px;
        color: #333;
        font-weight: 500;
    }
    .filter-field .filter-search {
        border: none;
        outline: none;
        font-family: 'Montserrat', sans-serif;
        font-size: 11px;
        color: #333;
        background: transparent;
        width: 100%;
        display: none;
    }
    .filter-field.open .filter-search { display: block; }
    .filter-field.open .filter-value { display: none; }
    .filter-field .chevron {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        font-weight: 700;
        color: #546422;
        pointer-events: none;
        transition: transform 0.2s;
    }
    .filter-field.open .chevron { transform: translateY(-50%) rotate(180deg); }

    /* Dropdown */
    .filter-dropdown {
        display: none;
        position: absolute;
        top: calc(100% + 2px);
        left: 0;
        right: 0;
        background: #fff;
        border: 2px solid #546422;
        border-radius: 10px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        z-index: 5000;
        max-height: 220px;
        overflow-y: auto;
    }
    .filter-dropdown.show { display: block; }
    .filter-dropdown-item {
        padding: 5px 10px;
        font-family: 'Montserrat', sans-serif;
        font-size: 11px;
        color: #333;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .filter-dropdown-item.dd-hidden { display: none; }
    .filter-dropdown-item:hover { background: #f0ead6; }
    .filter-dropdown-item.selected { background: #e6e0c8; font-weight: 600; }
    .filter-dropdown-item .check-icon {
        width: 14px;
        height: 14px;
        border: 1.5px solid #a8a072;
        border-radius: 3px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 9px;
        color: #fff;
        flex-shrink: 0;
    }
    .filter-dropdown-item.selected .check-icon {
        background: #546422;
        border-color: #546422;
    }

    .filter-clear-all {
        font-family: 'Montserrat', sans-serif;
        font-size: 11px;
        color: #546422;
        background: #fff;
        border: 2px solid #546422;
        border-radius: 10px;
        padding: 7px 16px;
        cursor: pointer;
        min-height: 22px;
        display: flex;
        align-items: center;
        font-weight: 500;
        transition: all 0.2s;
        white-space: nowrap;
    }
    .filter-clear-all:hover { background: #f0ead6; }

    /* ── SEARCH BAR (removed, kept button style) ── */
    .search-bar input {
        flex: 1;
        padding: 6px 12px;
        border: none;
        border-radius: 10px 0 0 10px;
        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        outline: none;
        background: #fff;
    }
    .search-bar button {
        padding: 6px 12px;
        background: #546422;
        border: none;
        border-radius: 0 10px 10px 0;
        cursor: pointer;
    }
    .search-bar button i { color: #fff; font-size: 14px; }

    /* ── TABLE CONTAINER ── */
    .table-container {
        margin: 0;
        background: #C5CAB4;
        border-radius: 16px;
        padding: 0 12px 12px;
        overflow: visible;
        position: relative;
        z-index: 1;
    }
    @media (max-width: 768px) {
        .table-container { margin: 0; }
    }

    /* ── TABLE ── */
    .cat-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 4px;
        table-layout: fixed;
    }
    .cat-table th {
        font-family: 'Montserrat', sans-serif;
        font-size: 11px;
        font-weight: 700;
        color: #000;
        text-align: center;
        padding: 8px 4px;
        white-space: nowrap;
        background: #C5CAB4;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .cat-table thead th {
        position: sticky;
        top: 0;
        z-index: 10;
        background: #C5CAB4;
    }
    .cat-table th.sortable {
        cursor: pointer;
        user-select: none;
        padding-right: 16px;
    }
    .cat-table th.sortable:hover { background: #b8bfa6; }
    .cat-table th .sort-arrow {
        font-size: 10px;
        margin-left: 2px;
        opacity: 0.3;
    }
    .cat-table th.sort-asc .sort-arrow,
    .cat-table th.sort-desc .sort-arrow { opacity: 1; }
    /* Variety column — takes remaining space, ellipsis if overflow */
    .cat-table .td-variety {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .cat-table td {
        background: #fff;
        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        font-weight: 500;
        color: #000;
        text-align: center;
        padding: 6px 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .cat-table tr td:first-child {
        border-radius: 10px 0 0 10px;
    }
    .cat-table tr td:last-child {
        border-radius: 0 10px 10px 0;
    }

    /* ── ROW PHOTO with hover preview ── */
    .photo-cell {
        position: relative;
        display: inline-block;
    }
    .row-photo {
        width: 36px;
        height: 36px;
        background: #D9D9D9;
        border-radius: 50%;
        display: inline-block;
        vertical-align: middle;
        object-fit: cover;
        cursor: pointer;
    }
    .row-photo.no-img {
        object-position: -9999px;
    }
    .photo-preview.no-img {
        display: none !important;
    }
    .photo-placeholder {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: linear-gradient(135deg, #d4dbb8 0%, #a8b07a 100%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        vertical-align: middle;
        cursor: default;
    }
    .photo-placeholder i {
        color: #fff;
        font-size: 16px;
        opacity: 0.7;
    }
    /* Lightbox no-photo */
    .lb-no-photo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #d4dbb8 0%, #a8b07a 100%);
        border-radius: 16px;
    }
    .lb-no-photo i {
        font-size: 48px;
        color: #fff;
        opacity: 0.6;
        margin-bottom: 12px;
    }
    .lb-no-photo span {
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        color: #fff;
        opacity: 0.8;
        text-align: center;
        line-height: 1.4;
    }

    /* ── PRICE TOOLTIP ── */
    .price-cell {
        position: relative;
        cursor: default;
        font-weight: 600;
        color: #333;
    }
    .price-tooltip {
        display: none;
        position: fixed;
        background: #f9f5ec;
        border: 2px solid #546422;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        padding: 12px 16px;
        z-index: 7000;
        pointer-events: none;
        min-width: 220px;
        font-family: 'Montserrat', sans-serif;
    }
    .price-tooltip .pt-title {
        font-size: 12px;
        font-weight: 700;
        color: #4F6117;
        margin-bottom: 8px;
        border-bottom: 1px solid #c5cab4;
        padding-bottom: 6px;
    }
    .gdc-discount-badge { display: inline-block; background: #e8452e; color: #fff; padding: 1px 5px; border-radius: 5px; font-size: 10px; font-weight: 700; margin-left: 4px; vertical-align: middle; letter-spacing: 0.03em; }
    .price-tooltip .pt-discount {
        font-size: 12px;
        font-weight: 700;
        color: #c0392b;
        margin-bottom: 6px;
    }
    .price-tooltip .pt-row {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: #444;
        padding: 2px 0;
    }
    .price-tooltip .pt-row b { color: #222; }
    .price-tooltip .pt-total {
        margin-top: 6px;
        padding-top: 6px;
        border-top: 2px solid #546422;
        font-size: 13px;
        font-weight: 700;
        color: #4F6117;
        display: flex;
        justify-content: space-between;
    }

    /* ── HOVER PREVIEW (floating big photo) ── */
    .photo-hover-preview {
        display: none;
        position: fixed;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        overflow: hidden;
        background: #D9D9D9;
        box-shadow: 0 8px 32px rgba(0,0,0,0.35);
        z-index: 10000;
        pointer-events: none;
        border: 3px solid #fff;
    }
    .photo-hover-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .photo-hover-preview .hover-counter {
        position: absolute;
        bottom: 18px;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        font-size: 11px;
        background: rgba(0,0,0,0.45);
        padding: 1px 8px;
        border-radius: 8px;
        font-family: 'Inter', sans-serif;
    }

    /* ── PHOTO LIGHTBOX (click to open, swipe through photos) ── */
    .photo-lightbox {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.7);
        z-index: 10000;
        align-items: center;
        justify-content: center;
    }
    .photo-lightbox.active { display: flex; }
    .photo-lb-inner {
        position: relative;
        width: 400px;
        height: 400px;
        border-radius: 16px;
        overflow: hidden;
        background: #D9D9D9;
    }
    .photo-lb-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .photo-lb-close {
        position: absolute;
        top: 8px; right: 8px;
        width: 32px; height: 32px;
        background: rgba(0,0,0,0.5);
        color: #fff;
        border: none;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .photo-lb-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px; height: 36px;
        background: rgba(0,0,0,0.4);
        color: #fff;
        border: none;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .photo-lb-prev { left: 8px; }
    .photo-lb-next { right: 8px; }
    .photo-lb-counter {
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        font-size: 12px;
        background: rgba(0,0,0,0.4);
        padding: 2px 10px;
        border-radius: 10px;
    }
    @media (max-width: 500px) {
        .photo-lb-inner { width: 90vw; height: 90vw; }
    }

    /* ── QTY +/- ── */
    .qty-wrap {
        display: inline-flex;
        align-items: center;
        gap: 0;
        background: #F3F5F6;
        border-radius: 4px;
        overflow: hidden;
    }
    .qty-btn {
        width: 26px;
        height: 26px;
        border: none;
        background: #F3F5F6;
        font-size: 14px;
        font-weight: 700;
        color: #24394D;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .qty-btn:disabled {
        color: #bbb;
        cursor: default;
    }
    .qty-wrap.qty-disabled {
        opacity: 0.4;
        pointer-events: none;
    }
    .qty-val {
        width: 28px;
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 500;
        color: #24394D;
    }

    /* ── ADD TO CART ── */
    .cart-cell {
        display: inline-flex;
        align-items: center;
        gap: 0;
        white-space: nowrap;
    }
    .btn-cart {
        padding: 6px 14px;
        background: #8E986B;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-family: 'Montserrat', sans-serif;
        font-size: 11px;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
        transition: background 0.15s;
    }
    .btn-cart:hover { background: #546422; }

    /* In-cart state: [-] qty [+] [cart total] */
    .cart-cell .qty-wrap {
        border-radius: 4px 0 0 4px;
    }
    .cart-total-badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 4px 10px;
        background: #8E986B;
        color: #fff;
        border: none;
        border-radius: 0 6px 6px 0;
        font-family: 'Montserrat', sans-serif;
        font-size: 11px;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
        transition: background 0.15s;
        box-sizing: border-box;
        line-height: 1.3;
        text-decoration: none;
    }
    .cart-total-badge:hover { background: #546422; }
    .cart-total-badge i { font-size: 12px; }
    .cart-total-badge span { display: inline-block; line-height: 1.3; }
    .qty-mode-btn {
        padding: 4px 6px;
        background: #F1F1F5;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-family: 'Montserrat', sans-serif;
        font-size: 10px;
        font-weight: 600;
        color: #546422;
        cursor: pointer;
        white-space: nowrap;
        text-transform: uppercase;
    }
    .qty-mode-btn:hover { background: #e0e0e0; }

    /* ── DELIVERY SELECTOR ── */
    .delivery-bar {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0 16px 10px;
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
    }
    .delivery-bar label {
        font-weight: 600;
        color: #333;
        white-space: nowrap;
    }
    .delivery-bar input {
        padding: 6px 10px;
        border: 1.5px solid #bbb;
        border-radius: 8px;
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        outline: none;
        background: #fff;
        transition: border-color 0.2s;
    }
    .delivery-bar input:focus { border-color: #6B2FA0; }
    .delivery-bar input {
        width: 80px;
        text-align: center;
    }
    .delivery-bar .delivery-unit {
        font-size: 13px;
        color: #000;
        font-weight: 600;
    }
    @media (max-width: 768px) {
        .delivery-bar { flex-wrap: wrap; padding: 0 8px 8px; }
    }

    /* ── NO RESULTS ── */
    .no-results {
        text-align: center;
        padding: 30px;
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        color: #888;
    }

    /* ── MOBILE CARDS ── */
    @media (max-width: 768px) {
        .table-container { padding: 8px; margin: 0; }
        .cat-table { display: none; }
        .mobile-cards { display: flex; flex-direction: column; gap: 8px; }
        .market-title { font-size: 22px; }
        /*.market-inner { padding: 0 10px; }*/
        .filters-bar {
            padding: 4px 0;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 6px;
        }
        .filter-group {
            max-width: calc(50% - 3px);
            min-width: calc(50% - 3px);
            flex: 0 0 calc(50% - 3px);
        }
        .filter-chips { min-height: 0; }
        .filter-field { padding: 4px 24px 4px 8px; min-height: 18px; }
        .filter-field .filter-label { font-size: 10px; left: 8px; }
        .filter-field.has-value .filter-label,
        .filter-field.open .filter-label { font-size: 8px; }
        .filter-field .filter-value { font-size: 10px; }
        .filter-clear-all { margin-top: 0; align-self: center; }
        .cat-table thead th { position: static; }
        .table-container { position: relative; z-index: 1; }
        .sticky-toolbar { z-index: 900; position: sticky; top: 0; background: #F2E2CF; }
    }
    @media (min-width: 769px) {
        .mobile-cards { display: none; }
    }

    /* ── MOBILE CARD ── */
    .m-card {
        background: #fff;
        border-radius: 12px;
        padding: 10px 12px;
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }
    .m-card-photo {
        width: 50px;
        height: 50px;
        background: #D9D9D9;
        border-radius: 10px;
        flex-shrink: 0;
        object-fit: cover;
    }
    .m-card-body { flex: 1; min-width: 0; }
    .m-card-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: #000;
        margin-bottom: 3px;
    }
    .m-card-sub {
        font-family: 'Montserrat', sans-serif;
        font-size: 11px;
        color: #979797;
    }
    .m-card-sub b { color: #000; font-weight: 500; }
    .m-card-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 6px;
        gap: 8px;
    }
    .m-card-price {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: #000;
    }