@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --font-main: "Manrope", sans-serif;

  --color-text: #f4eded;
  --color-bg-body: #372116;
  --color-primary: #a00405;
  --color-accent: #fc9d01;
  --color-accent-hover: #fec200;

  --wrapper-width: 1808px;
  --container-padding: 20px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #211108 #372116;
}

html::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

html::-webkit-scrollbar-track {
  background: #372116;
  border-radius: 3px;
}

html::-webkit-scrollbar-thumb {
  background-color: #211108;
  border-radius: 3px;
}

html::-webkit-scrollbar-thumb:hover {
  background-color: #fec200;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-body);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.wrapper {
  max-width: var(--wrapper-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

p {
  font-weight: 400;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent-hover);
}

img {
  max-width: 100%;
  display: block;
}

/* Header */

.header {
  padding: 8px 0;
  background-color: #372116;
  z-index: 99999;
  position: relative;
}

.header__top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.header__left {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.header__right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 60px;
}

.header__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 55px;
}

.btn-orange {
  background-color: var(--color-accent);
  border: none;
  border-radius: 100px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}

.btn-orange:hover {
  background-color: var(--color-accent-hover);
}

.btn-orange img {
  width: 28px;
  height: 28px;
}

.header__nav a {
  font-weight: 800;
  font-size: 20px;
}

.header__contacts a {
  font-weight: 800;
  font-size: 22px;
}

.header__contacts span {
  font-weight: 400;
  font-size: 16px;
  color: #8b716d;
}

.header__logo {
  margin-right: 40px;
}

/* Menu */

.header__menu.active {
  background-color: var(--color-accent-hover);
}

.header__menu.active .menu-icon {
  content: url("../image/close.svg");
  width: 20px;
}

.menu {
  width: 100%;
  background-color: #a00405;
  position: fixed;
  left: 0;
  top: 125px;
  padding: 50px 0;
  z-index: 100;

  opacity: 0;
  transform: translateY(-30px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu {
  max-height: calc(100vh - 125px);
  overflow-y: auto;
}

.menu::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.menu__categories {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-content: space-between;
}

.menu__item {

  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #f4eded;
}

.menu__item span {
  font-weight: 800;
  font-size: 28px;
}

.menu__item img {
  width: 205px;
  height: auto;
  border-radius: 12px;
}

.menu hr {
  margin: 50px 0;
  border: none;
  height: 1px;
  background-color: #aba29e;
}

.menu__bottom {
  display: flex;
  gap: 40px;
}

.menu__column {
  width: calc((100% - 80px) / 3);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu__column h4 {
  font-weight: 800;
  font-size: 28px;
}

.menu__column a,
.menu__column p {
  color: #d1d5dc;
  text-decoration: none;
  font-weight: 800;
  font-size: 22px;
}

.menu__column a:hover {
  color: var(--color-accent-hover);
}

/* Поиск */

input {
  outline: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}

.menu__search-inner {
  position: relative;

  width: 100%;
  max-width: 600px;
}

.menu__search {
  width: 100%;
  padding: 14px 20px 14px 58px;
  border: 1px solid #fc9d01;
  border-radius: 50px;
  background-color: #f4eded;
  color: #372116;
  font-size: 16px;
  display: none;
  box-sizing: border-box;
  max-width: 100%;
}

.menu__search.active {
  display: block;
  width: 600px;
}

.menu__search::placeholder {
  color: #aba29e;
}

.menu__search-btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-accent);
  border: none;
  border-radius: 100px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.header__nav.hidden {
  display: none;
}

/* Hero */
.hero {
  background: #fec200;
}
.hero__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.hero__wrapper a {
  all: unset;
  display: block;
  width: 25%;
}

.hero__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px ;
  color: #fff;
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
cursor: pointer;
   box-sizing: border-box; 
   height: 100%;
}

.hero__card:hover img {
  transform: scale(1.05); 
}

.hero__card:hover::before {
  opacity: 0.6; 
  width: 180px;
  height: 140px;
}


.hero__card img {
   transition: transform 0.3s ease;
  max-width: 65%; 
  z-index: 1;
}

a .hero__card img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero__card img {
  transition: transform 0.6s ease, filter 0.3s ease;
}


a:hover .hero__card img {
  transform: scale(1.01); 
  filter: drop-shadow(0 0px 10px rgba(0, 0, 0, 0.5)); 
}

.hero__card span {
  z-index: 1;
}

.hero__card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 100px;
  transform: translate(-50%, -50%);
  background: #fff;
  opacity: 0.8;
  filter: blur(85px);
  pointer-events: none;
  z-index: 0;
  transition: all 0.3s ease;
}

/* FOOTER */
.footer {
  padding: 50px 0;
  position: relative;
    z-index: 9999;
    background: #372116;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
}

.footer__left {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer__column h4 {
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 16px;
  color: var(--color-text);
}

.footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__column ul li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #d1d5dc;
  font-weight: 400;
}

.footer__column p {
  color: #d1d5dc;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer__right {
  width: 100%;
  max-width: 800px;
  text-align: right;
}

.footer__right p {
  color: #d1d5dc;
  font-weight: 400;
  font-size: 16px;
}

.footer__payments {
  display: flex;
  margin-top: 30px;
}

.footer__payments img {
  height: 40px;
  object-fit: contain;
}

footer hr {
  margin: 32px 0 15px;
  border: none;
  border-top: 1px solid #77635a;
  height: 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  color: #d1d5dc;
  font-size: 14px;
  font-weight: 400;
}

.footer__bottom-right {
  text-align: right;
}

.header__tel {
  display: none;
}

.plus, .minus{
  cursor: pointer !important;
}

@media (max-width: 1260px) {
  .header__logo {
    margin-right: 0px;
  }

  .header__left {
    gap: 30px;
  }

  .header__nav {
    gap: 30px;
  }

  .header__right {
    gap: 30px;
  }

  .footer__payments {
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
  }

  .footer__payments img {
    height: 55px;
  }
}

@media (max-width: 1200px) {

  .menu__categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  justify-content: space-between;
}

  .header__contacts {
    display: none;
  }

  .header__tel {
    display: flex;
  }

  .header__tel.btn-orange img {
    width: 24px;
    height: 24px;
  }

  .hero__card span {
    font-size: 24px;
  }

  .menu__search.active {
    width: 320px;
  }
}

@media (max-width: 992px) {

  .hero__card::before {
    width: 50px;
    height: 80px;
  }

  .header__nav {
    display: none !important;
  }

  .hero__wrapper a {
    width: 33.3333%;
  }

  .menu__item span {
    font-size: 24px;
  }

  .menu__column h4 {
    font-size: 24px;
  }

  .menu__column a,
  .menu__column p {
    font-size: 18px;
  }
  .menu__item {
    width: calc((100% - 80px) / 2);
  }
}

@media (max-width: 786px) {
  .hero__card span {
    font-size: 22px;
  }

  .menu {
        padding:40px 0;
  }
  .menu__item {
        gap: 0px;
  }

      .menu__column h4 {
        font-size: 20px;
    }

    .menu__item img {
    width: 170px;
    }

        .menu__item span {
        font-size: 22px;
    }
}

@media (max-width: 690px) {

  .footer {
    padding: 40px 0;
  }

      .footer__payments {
        align-items: start;
    }

  .footer__wrapper {
    flex-direction: column;
}

.footer__right {
    text-align: left;
}

  .hero__wrapper a {
    width: 50%;
  }

  .menu__item img {
    width: 130px;
  }

  .menu__bottom {
    gap: 50px;
    justify-content: space-between;
}

.menu__bottom {
  flex-direction: column;
}

 .menu__categories {
    flex-direction: column;
  }

      .menu__item {
        width: 100%;
    }

        .menu__item {
        gap: 15px;
    }


    .menu__column {
    width: 100%;
    }

    .menu hr {
    margin: 30px 0;
    }
}


@media (max-width: 600px) {


  .hero__card::before {
        left: 50%;
    width: 50px;
  }

 footer__right {
      text-align: left;
 }

 .footer__payments {
  align-items: flex-start;
 }

}


@media (max-width: 520px) {

  .footer__left {
    gap: 20px;
  }


  .footer__bottom {
    flex-direction: column;
    gap: 10px;
  }


  .footer__bottom-right {
    text-align: left;
}
 
  .hero__card img {
    width: 90%;
  }

      .header__left {
        gap: 17px;
    }

        .header__right {
        gap: 17px;
    }

    .header__logo img{
      max-width: 90%;
    }


    .menu {
    top: 100px;
    }
}



@media (max-width: 440px) {
 .hero__card span {
        font-size: 18px;
    }

    .btn-orange {
      width: 44px;
    height: 44px;
    }


}


@media (max-width: 420px) {
    .order #mini-cart {
        top: 90px !important; 
	}
  
    .menu {
      top: 88px;
    }

 .hero__card span {


        font-size: 18px;
    }

        .header__logo img {
        max-width: 90px;
    }

    .wrapper {
      padding: 0 10px;
    }
  }


  @media (max-width: 360px) {
 .hero__card span {
        font-size: 16px;
    }

    .menu__item span {
      font-size: 20px;
    }
  }


  @media (max-width: 345px) {
     .btn-orange {
        width: 40px;
        height: 40px;
    }

    .btn-orange img {
    width: 24px;
    height: 24px;
}

    .header__tel.btn-orange img {
        width: 20px;
        height: 20px;
    }

        .menu {
        top: 80px;
    }
       
}


  @media (max-width: 335px) {
        .header__logo img {
        max-width: 80px;
    }
    }



      @media (max-width: 320px) {
           .header__right {
        gap: 10px;
    }

        .header__left {
        gap: 10px;
    }
    }
  








    /* Стили страницы товары категорий */


.title-cat{
  margin: 55px 0;
  text-align: center;
}
.content {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.products {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 25px;
}

.product-card {
  background: #A00405;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
   margin: 0; 
    padding: 0;
    border-radius: 12px;
	    height: 100%;
}
.product-card img {
   width: 100%;
  height: auto;
 display: block; 
  border-radius: 12px;
  box-shadow: -1px 6px 10px 0px #00000026;

}

.tovar{
  min-height: 700px;
  margin-bottom: 55px;
}

.tovar-cena{
  display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.product-info{
  padding: 20px;
  width: 100%;
	    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info span{
  font-size: 28px;
    font-weight: 800;
  border-radius: 12px;
}


.add-btn{
   all: unset;
  display: inline-block;
  background: #F4EDED;
  padding: 12px 27px;
  color: #372116;
  font-size: 20px;
  font-weight: 800;
border-radius: 56px;
	white-space: nowrap;
}


.add-btn:hover{
  cursor: pointer;
}



.order{
z-index: 99;
border-radius: 12px;
background: #211108;
max-width: 410px;
    width: 100%;
    height: 220px;
}

.menusite .wrapper {
  padding-right: 0;
}


.product-price {
  position: relative;
  display: inline-block;
  padding-top: 10px;
}
.product-info .product-price del span {
  font-size: 15px !important;
  font-weight: 400 !important;
}

del {
	text-decoration: none !important;
}

.product-info .product-price del span {
    text-decoration: none !important;
  text-decoration-line: line-through !important;
}

.product-price ins {
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
}


/* Хлебные крошки */


.menusite{
background: #211108;
}


.breadcrumbs {
   padding-top: 24px;
  margin-bottom: 45px;
  font-size: 16px;
  color: #ABA29E;
}
.breadcrumbs a {
  text-decoration: none;
  color: #ABA29E;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Категории */
.menusite__categories-wrapper{
  max-width: 1838px;
    margin: 0 0 0 auto;
}


.menusite__categories-wrapper {
  overflow-x: auto;         
  -webkit-overflow-scrolling: touch;
  width: 100%;
  padding-bottom: 30px;
  scroll-behavior: smooth;
   cursor: grab; 
}

.menusite__categories-wrapper:active {
  cursor: grabbing;
}

.menusite__categories {
  display: flex;
  flex-wrap: nowrap;
  position: relative;       
  left: 0;                  
  gap: 15px;               
  width: max-content;      
}


.menusite__categories::-webkit-scrollbar {
  height: 3px;
}
.menusite__categories-wrapper::-webkit-scrollbar-thumb {
  background: #77635A !important; 
  border-radius: 13px;
}
.menusite__categories::-webkit-scrollbar-track {
  background: #77635A ; 
  border-radius: 15px;
}

.menusite__categories-wrapper {
  scrollbar-width: thin;
  scrollbar-color: #77635A #211108;
}

.menusite__item {
 display: flex;
    flex-direction: row;
    gap: 0;
    margin-right: 40px;
  align-items: center;
}

.menusite__item img {
  max-width: 124px;
  height: 82px;
  object-fit: contain;
  border-radius: 8px; 
}

.menusite__item span {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
}

.product-card-img img {
  width: 100% !important;
  height: auto !important;     
  object-fit: contain !important; 
  max-width: 100% !important;
  cursor: pointer;
}


.product-name{
    cursor: pointer;
}

.product-card-img  {
  width: 100% ;
}

.price-btn{
  display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}



/* 404 */

.container-404{
display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap:32px;
    height: 50dvh;
    text-align: center;
    padding: 0 15px;
}

.h2-title-404{
  font-weight: 800;
  font-size: 44px;
  color: var(--color-text);
      line-height: 1;
}

.h1-title-404{
  font-weight: 800;
  font-size: 104px;
  color: var(--color-text);
      line-height: 1;
}

.p-404{
  font-weight: 800;
  font-size: 16px;
  color: var(--color-text);
}

.btn-orange-404{
  background: #FC9D01;
  color: var(--color-text);
  border-radius: 56px;
  padding: 12px 35px;
  font-weight: 800;
  font-size: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.btn-orange-404:hover{
  background: var(--color-accent-hover);
  color: var(--color-text);
}


@media(max-width:550px) {

  .container-404{
gap:20px;
  }

.h2-title-404{
 font-size: 22px;
}

.h1-title-404{
 font-size: 90px;
}

.p-404{
 font-size: 16px;
}

.btn-orange-404{
 font-size: 16px;
 width: 100%;
}

}



/* Текстовые страницы */


.page-template{
  background: #211108;
}

.container-text{
   width: 100%;
  max-width: 1121px;
  margin: 0 auto;
   margin-bottom: 55px;
}

.page-title{
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 55px;
  text-align: center;
  line-height: 1;
}

.page-content h4{
  font-size: 28px;
  margin-bottom: 12px;
   font-weight: 800;
     line-height: 1;
}

.page-content h4:not(:first-of-type) {
  margin-top: 30px;
}

.page-content p{
  font-size: 16px;
  margin-bottom: 12px;
   font-weight: 800;
}

 .page-content p.title-22 {
  font-size: 22px;
}

.page-content ul{
      padding-left: 30px;
      font-weight: 800;
      font-size: 16px;
}

.page-content ul li {
  margin-bottom: 10px;
}

.page-content ul li:last-child {
  margin-bottom: 0;
}

.page-content ol li {
  margin-bottom: 6px;
}

.page-content ol li:last-child {
  margin-bottom: 0;
}


.page-content ol {
  list-style-type: none;      
  margin: 0;
}


@media (max-width:560spx) {
  .page-title {
    font-size: 22px;
    margin-bottom: 20px;
  }


  .page-content h4 {
    font-size: 20px;
}


.page-content ul {
    font-size: 14px;
}

.page-content p {
    font-size: 14px;
}
}




/*Модальное окно товара*/
 .modal {
    position: fixed;
    z-index: 999999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .modal-content {
    max-width:1320px;
    width: 100%;
    background-color: #A00405;
    padding: 0px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:50px;
    margin: 0 30px;
    z-index: 999;
  }

  .modal-name{
    font-size:28px;
    font-weight:800;
  }
  .modal-content img {
    max-width: 100%;
    height: auto;
    border-radius:12px
  }
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
  }

  .modal-description{
    text-align: left;
    color:#D1D5DC;
    font-size: 20px;
  }


  .add-cart-mod{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
        align-items: center;
  }

  .modal-price{
    color:#F4EDED;
    font-weight:800;
    font-size:28px;
  }

   .modal-add-btn1{
    all: unset;
     box-sizing: border-box;
    padding: 0 0 0 25px;
    border-radius:56px;
    color:#372116;
    font-weight:800;
    font-size:20px;
    background: #F4EDEDCC;
    display: flex;
    gap:16px;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
        align-items: center;
        cursor: pointer;
  }

  .madal-info{
    flex:1;
        text-align: left;
        margin-right: 50px;
        width: 100%;
  }

  .add-text{
background: #F4EDED;
padding: 15px 25px;
   border-radius:56px;
  }


  @media(max-width:1250px) {
    .add-cart-mod{
      gap: 20px;
      margin-top: 25px;
    }

    .add-text {
    padding: 10px;
    }


    .modal-content {
    width: auto;
    flex-direction: column;
  }

      .modal-content img.modal-img {
        height: 400px !important;
    }

    .modal-content {
          align-items: flex-start;
              gap: 30px;
    }

    .madal-info{
      padding: 0 20px 20px;
    }

    .modal-content {
          gap: 20px;
    }

    .close {
    top: -34px;
    right: -35px;
    }


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


 @media(max-width:660px) {

.close {
    right: 0px;
 }

     .modal-content img.modal-img {
        height: 240px !important;
    }
 }



  @media(max-width:500px) {

.modal-name{
  font-size: 22px;
}

    .modal-price {
    font-size: 22px;
}

 }

   @media(max-width:450px) {
	   
	   .product-info span {
    font-size: 20px;
	   }
	   
    .cart-controls button, .cart-controls .qty-count {
        font-size: 16px;
    }
	   
	   .product-bottom {
    padding-top: 10px !important;
}
	   
	   .add-btn {
   font-size: 16px; 
	   }
	   
	   .hero__card{
		   padding: 10px !important;
	   }
	   
	   
	   .menusite__categories {
    gap: 0px !important;
	   }

.modal-name{
  font-size: 20px;
}

	   
	   .product-card .product-card-img {
    height: 250px !important; 
	   }

.modal-description {
    font-size: 14px;
}


.add-cart-mod {
  flex-direction: column;
  align-items: flex-start;
}


.modal-add-btn1 {
  width: 100%;
}

    .add-text {
        padding: 10px 35px;
    }

    .modal-content {
margin: 10px;
    }


    .modal-price {
    font-size: 20px;
}

 }

   @media(max-width:340px) {

     .add-text {
        padding: 10px 15px;
    }

  }



  /* Мини корзина */


  .mini-cart-item{
        display: flex;
        gap:10px;
  }


  .item-img {
    border-radius: 12px;
    box-shadow: -1px 6px 10px 0px #00000026;
        align-items: center;
        gap:10px;
  }


  .mini-cart-item .item-img {
  width: 110px;
  height: 70px;
  overflow: hidden;
}

.mini-cart-item .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mini-cart-item .item-info {
  display: flex;
  flex-direction: row;
    align-items: center;
	justify-content: space-between;
	width: 100%;
}

  .item-name{
    color: #F4EDED;
    font-size: 16px;
  }

  .item-price{
    font-weight: 800;
    color: #F4EDED;
  }

.mini-cart-item .item-img {
    width: 110px !important;
    height: 70px;
    overflow: hidden;
}

.mini-info{
	display: flex;
    flex-direction: column;
	justify-content: space-between;
}
  .item-quantity, .item-quantity-tools {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    gap: 10px;
    background: #F4EDED;
    color: #372116;
    padding: 6px 14px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 56px;
  }

  .item-quantity button{
       all: unset;
  color: #372116;
  cursor: pointer;
  }

  .item-quantity-tools button{
       all: unset;
  color: #372116;
  }

  .mini-cart-header h2{
    color: #F4EDED;
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 20px;
  }

 .mini-cart-item {
    padding-bottom: 10px;
        padding-top: 10px;
    border-bottom: 1px solid #77635A;
}


.item-tools{
  display: flex;
    justify-content: space-between;
    background: var(--color-text);
    border-radius: 56px;
    margin: 20px 0 10px;
}

.mini-cart-item .item-tools {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: #fff;
  color: #000;
  padding: 5px;
}

.tools-label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.delivery-content textarea{
  all: unset;
      width: 100%;
      color: #211108;
}


.item-tools {
    padding: 5px;
}
.mini-cart-item .item-tools .tools-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.tools-label img {
  width: 26px;
  
}

.tools-label span{
  z-index: 99;
    position: relative;
    color: #2D170C;
    font-size: 16px;
}

.item-tools{
  padding-left: 10px;
}

#cart-comment {
  width: 100%;
  background: var(--color-text);
  border-radius: 20px;
  font-size: 16px;
  font-weight: 400;
   font-family: 'Manrope';
  color: #211108;
  box-sizing: border-box;
  padding: 20px !important;
  margin-bottom: 32px;
  min-height: 42px;
  max-height: 42px;
  line-height: 16px;
  resize: none;
  overflow-y: auto;
  border: none;
  display: block;
  outline: none;
}

.delivery-tabs {
  display: flex;
  gap: 10px;
  background: var(--color-text);
  box-shadow: -1px 6px 10px 0px #00000026;
     border-radius: 57px;
     position: relative;
    z-index: 99999;

}


.delivery-tabs .tab {
  flex: 1;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 56px;
    font-size: 16px;
    font-weight: 400;
    color: #ABA29E;
	background: var(--color-text);
}

.delivery-tabs .tab.active {
  background: #77635A;
  color: var(--color-text);
  font-size: 16px;
}


.delivery-content {
  display: none;
  padding: 10px;
  background: var(--color-text);
  margin-top: -20px;
   border-radius: 0 0 20px 20px;
   color: #ABA29E;
   padding: 30px 12px 12px 12px;
}

.delivery-content.active {
  display: block;
}


.title-mini-cart {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 800;
}

#mini-cart {
  position: fixed;
  top: 0;
  right: -420px;
  width: 410px;
 max-height: 100vh;
    min-height: 210px;
  background: #211108;
  overflow-y: auto;
  transition: right 0.3s ease;
  z-index: 9999999;
  padding: 20px;
  border-radius: 12px;
}

#mini-cart.active {
  right: 0;
}

 .order #mini-cart {
  position: relative;
  right: 0;
  max-height: 950px; 
  overflow-y: auto;
  z-index: 999999;
}

 .order {
  position: relative;
  z-index: 999999;
  height: 100%;
}


.mini-cart-close{
   all: unset;
  cursor: pointer;
  position: absolute;
    top: 15px;
    right: 15px;
}

.mini-cart-close img {
  width: 20px;
  height: 20px;
  display: block;
}

.mini-cart-go-menu{
  background: var(--color-accent);
  color: var(--color-text);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  justify-content: center;
    align-items: center;
    border-radius: 56px;
    padding: 15px;
    margin-top: 32px;
    transition: background 0.3s ease, color 0.3s ease;
}

.mini-cart-go-menu:hover{
  background: var(--color-accent-hover);
  color: var(--color-text);
}

.order .mini-cart-close{
  display: none;
}


#prepare-time, #payment{
  background: var(--color-text);
  border-radius: 56px;
  padding: 12px 8px;
      width: 100%;
      font-size: 16px;
      margin: 10px 0 32px;
}

.mini-cart-phone{
 margin-bottom: 32px;
 display: flex;
    flex-direction: column;
}


.mini-cart input {
  all: unset;
    width: 100%;
    background: #F4EDED;
    border-radius: 56px;
    font-size: 16px;
    font-weight: 400;
    color: #211108;
    box-sizing: border-box;
    padding: 10px 15px;
}

.mini-cart-payment{
  display: flex;
  flex-direction: column;
}

#payment {
    margin: 0 0 32px;
}


.mini-cart-total {
  width: 100%;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 32px;
}

.mini-cart-total-row, .mini-cart-total-row2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mini-cart-checkout {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 22px;
  border-radius: 56px;
  background: var(--color-accent);
  color: var(--color-text);
  font-size: 20px;
  font-weight: 800;
  border: none;
  cursor: pointer;
   margin-bottom: 32px;
   font-family: 'Manrope';
}

.mini-cart-checkout:hover {
  background: var(--color-accent-hover);
}

.checkout-price {
  font-weight: 900;
}


.mini-cart-agreement label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
}

/* убираем стандартный вид */
.mini-cart-agreement input[type="checkbox"] {
    all: unset;
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 18px;
    border: 2px solid #ff7a00;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

/* состояние checked */
.mini-cart-agreement input[type="checkbox"]:checked {
    background-color: #ff7a00;
}

/* галочка */
.mini-cart-agreement input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 14px;
    left: 3px;
    top: -1px;
}

.mini-cart-info{
  font-size: 16px;
color: var(--color-text);
font-weight: 800;
margin-top: 32px;
}

.mini-cart-header h2{
  margin-bottom: 10px;
}

.order #mini-cart {
  scrollbar-width: thin;          
  scrollbar-color: #8B716D #211108; 
}













/*О Компании*/

.about__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
   margin-bottom: 55px;
}

.about__item{
  background: #77635A;
  border-radius: 12px;
  padding: 30px;
}

.about__title{
  color: var(--color-text);
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 20px;
}

.about-text-22{
   font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 55px;
 text-align: center;
}

.about__text{
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
}


.text-p-28{
   font-size: 28px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 40px; 
  text-align: center;
}


.about-stats {
  display: flex;
  justify-content: space-evenly;
    flex-direction: row;
    align-items: center;
    margin-bottom: 55px;
      gap: 30px;
}


.about-stats__item {
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}


.about-stats__number{
  color: var(--color-accent);
  font-weight: 800;
  font-size: 44px;
  gap: 0px;
}


.about-stats__text{
  font-weight: 800;
  font-size: 22px;
}


@media(max-width:835px) {
  .about-text-22 {
    font-size: 20px;
     margin-bottom: 40px;
}

.about__grid {
    display: flex;
            flex-direction: column;
    gap: 20px;
}

.about-stats {
    display: flex;
    flex-direction: column;
}

.page-title {
    font-size: 35px;
    margin-bottom: 25px;
}

.about-text-22 {
    font-size: 20px;
}

.about__item {
    padding: 20px;
}

.text-p-28 {
  font-size: 24px;
}
}


@media(max-width:460px) {
 .page-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.about-text-22 {
    font-size: 18px;
}

.text-p-28 {
  font-size: 20px;
  margin-bottom: 20px;
}

.about__item {
    padding: 10px;
    gap: 12px;
}

.about__title {
    margin-bottom: 10px;
}

.about-stats__number{
  font-size: 22px;
}

.about-stats__text{
   font-size: 18px;
}

.about__title{
  font-size: 20px;
}

.about__text{
    font-size: 14px;
}

.about__grid {
    margin-bottom: 30px;
}

.about-text-22 {
        margin-bottom: 20px;
    }
}


.kont__grid{
  display: flex;
    flex-direction: row;
    gap: 20px;
    flex: 1;
    margin-bottom: 25px;
}


.kont__item img{
  width: 36px;
}

.kont__item{
 display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    background: #77635A;
    font-weight: 800;
    color: var(--color-text);
    border-radius: 12px;
    flex: 1;
    padding: 25px;
}


.map-wrapper {
  width: 100%;
  height: 570px;        
  border-radius: 12px;  
  overflow: hidden;    
  margin-bottom: 55px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


.kont__title{
font-size: 20px;
font-weight: 800;
color: var(--color-text);
}

.kont__text{
  font-size: 28px;
font-weight: 800;
color: var(--color-text);
}


.info-wrapper{
  border-radius: 12px;
  padding: 32px;
  width: 100%;
  max-width: 891px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  background: #77635A;
  margin: 0 auto;
  margin-bottom: 55px;
}

.info-wrapper h4{
  color: var(--color-text);
  font-size: 28px;
  font-weight: 800;
}



.info-wrapper p{
  color: var(--color-text);
  font-size: 16px;
  font-weight: 800;
}

.info-wrapper span{
  color: var(--color-text);
  font-size: 22px;
  font-weight: 800;
}

@media(max-width:1440px) {
  .kont__text {
    font-size: 22px;
  }

}

@media(max-width:1200px) {
  .kont__text {
    font-size: 20px;
  }

  .kont__title {
    font-size: 19px;
  }


  .kont__grid {
    display: grid;
     grid-template-columns: repeat(2, 1fr);
  }

  .info-wrapper h4 {
    font-size: 24px;
}

.info-wrapper {
    padding: 22px;
}

.info-wrapper span {
    font-size: 20px;
}
}

@media(max-width:640px) {
  
  .menu__categories{
display: flex;
flex-direction: column;
  }

 .kont__grid {
    display: flex;
    flex-direction: column;
    padding: 15px;
  }

  .kont__item img {
    width: 30px;
}

.map-wrapper {
    margin-bottom: 32px;
    height: 370px;
}
}


@media(max-width:460px) {
  
 .kont__grid {
    padding: 10px;
  }

.map-wrapper {
    margin-bottom: 20px;
    height: 340px;
}

    .info-wrapper h4 {
        font-size: 20px;
    }

    .info-wrapper p {
   font-size: 14px;
}

    .info-wrapper span {
   font-size: 18px;
}

    .info-wrapper {
        padding: 10px;
    }
    .kont__item {
       padding: 10px;
    }
}




/*Страница спасибо */

.wrapper-thank{
display: flex;
    flex-direction: column;
    align-items: center;
    gap:32px;
    margin-bottom: 85px;
}


.h2-title-thankyou{
  color: var(--color-text);
  font-size: 44px;
  font-weight: 800;
  text-align: center;
}

.wrapper-thank .text-p-28{
  margin-bottom: 0;
}


@media(max-width:630px) {
  .h2-title-thankyou{
   font-size: 38px;
}

}


@media(max-width:460px) {

  .wrapper-thank{
gap: 20px;
}

  .h2-title-thankyou{
   font-size: 22px;
}

.img-thankyou{
  width: 78px;
}

}


/*Поиск*/
.menu__search-inner {
  position: relative;
}

.menu__search-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  border-radius: 12px;
  margin-top: 8px;
  max-height: 300px;
  overflow-y: auto;
  display: none;
}







#cart-comment {
  width: 100%;
  min-height: 40px;
  max-height: 300px;
  resize: none;
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
}

.delivery-content {
  display: none;
}
.delivery-content.active {
  display: block;
}


@media(max-width:460px) {
  #mini-cart {
    top: 100px;
    width: 100%;
  }

  .mini-cart-header h2{
    font-size: 22px;
  }

  .mini-cart-go-menu {
    padding: 10px;
  }
}

@media(max-width:425px) {
  #mini-cart {
    top: 90px;
  }
}


@media(max-width:340px) {
  #mini-cart {
    top: 80px;
  }

  .mini-cart-checkout{
flex-direction: column;
  }
}


.mini-cart-time {
  position: relative;
  display: inline-block;
}

.mini-cart-time select {
  padding-left: 30px; 
   font-family: 'Manrope', sans-serif
}

select {
   font-family: 'Manrope', sans-serif
}

.mini-cart-time .select-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  pointer-events: none; 
}

.mini-cart-time{
  width: 100%;
  height: 63px;
  margin-bottom: 32px;
}


#prepare-time, #payment {
  padding-left:  44px;
}


/* ==================== Десктоп ==================== */
.order #mini-cart {
  position: relative;
  right: 0;
  overflow-y: auto;
  z-index: 999999;
}

/* ==================== Мобильный ==================== */
@media (max-width: 1500px) {
  .order #mini-cart {
    position: fixed !important;
    top: 120px !important;
    right: -420px !important; /* скрыта справа */
    width: 410px !important;
    max-height: calc(100vh - 140px);
    min-height: 210px !important;
    background: #211108 !important;
    overflow-y: auto !important;
    transition: right 0.3s ease !important;
    z-index: 9999999 !important;
    padding: 20px !important;
    border-radius: 12px !important;
  }


    .order #mini-cart {
    position: fixed !important;
    top: 120px !important;
    }
	
	.content {
    display: flex;
    flex-direction: column;
}

    .order .mini-cart-close {
    display: block; 
}

.order {
    background: none;
}

  .order #mini-cart.active {
    right: 0 !important; 
  }


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


@media (max-width: 717px) {

.products {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 360px) {

   .title-cat{
    font-size: 22px;
    margin-bottom: 24px;
   }
  
}


@media (max-width: 460px) {
   .order #mini-cart {
        top: 100px !important;
        width: 100% !important;
        right: -460px !important;
    }
}




.custom-select {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  border-radius: 56px;
  background: var(--color-text);
  cursor: pointer;
  width: 100%;
  position: relative;
  margin: 10px 0 32px;
}

.select-header {
  padding: 12px;
}

.select-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 200px; 
  overflow-y: auto;  
  background: var(--color-text);
  border-radius: 16px;
  z-index: 10;
  padding: 10px;
  margin-top: 0px;
}

.dropdown-grid {
  display: flex;
  grid-template-columns: 1fr 1fr; 
  gap: 10px;
  color: var(--color-bg-body);
}

.column.days .day-option,
.column.times .time {
  padding: 10px;
  cursor: pointer;
  border-radius: 16px;
  transition: background 0.2s;
  color: var(--color-bg-body);
}



.column.days .day-option:hover,
.column.times .time:hover {
  font-weight: 600;
}

.column.times span {
  opacity: 0.3;
  pointer-events: none;
}

.column.times.active span {
  opacity: 1;
  pointer-events: auto;
}

.select-header{
  color: var(--color-bg-body);
}


span.time{
  color: var(--color-bg-body);
}


.custom-select .icon-t{
  display: flex;
      flex-direction: row;
    align-items: center;
    padding: 0 10px;
    justify-content: space-between;
}

.time-b{
  display: flex;
      flex-direction: row;
    align-items: center;
}
.mini-cart-phone .phone-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.mini-cart-phone .phone-icon {
  position: absolute;
  left: 28px; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-cart-phone .phone-icon img {
  width: 26px;
}

.mini-cart-phone input#phone {
  padding: 25px 0 25px 40px;
  width: 100%;
  height: 40px;
  border-radius: 56px;
  border: 1px solid #ccc;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
}


.custom-select-wrapper{
  display: flex;
  font-weight: 18px;
}

.icon-left{
  position: absolute;
}


.icon-right{
  padding: 24px;
  position: absolute;
  right: 0;
    margin-right: 10px;
}


.custom-select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border-radius: 56px;
  border: 1px solid #ccc;
  padding: 12px 40px 12px 40px; 
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  cursor: pointer;
}


 #payment {
    padding: 16px 15px 16px 44px;
 }

 .custom-select-wrapper select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 56px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  cursor: pointer;
}


.custom-select-wrapper .icon-right img {
  transition: transform 0.3s ease;
}


.custom-select-wrapper.open .icon-right img {
  transform: rotate(180deg); /* переворачиваем вниз/вверх */
}

.cart-icon {
  position: relative;
  display: inline-block;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: white;
  color: black;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
    background: var(--color-text);
    color: #77635A;
    font-size: 14px;
    font-weight: 800;
}

.mini-cart-agreement a:hover{
  text-decoration: underline;
  color: var(--color-text);
}

.modal-add-btn1 .add-text {
  transition: color 0.3s ease;
}

.modal-add-btn1 .add-text:hover {
  color: #e0b100;
}

.qty-decrease,
.qty-increase {
  transition: transform 0.2s ease, color 0.2s ease;
}

.qty-decrease:hover,
.qty-increase:hover {
  transform: scale(1.3);
  color: var(--color-bg-body);
}

.delivery-content.active {
    display: flex;
    flex-direction: row;
    gap: 10px;
    color: #211108;
}


.phone-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.phone-prefix {
  width: 50px;
  text-align: center;
  background: #F4EDED;
  border-radius: 10px;
  border: none;
  color: #211108;
  font-weight: 500;
}

#payment option {
  font-family: 'Manrope', sans-serif;
  border-radius: 12px !important;
  padding: 5px 10px;
}


.icon-left, .icon-right {
  pointer-events: none; 
}


input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: none; 
}


.added_to_cart.wc-forward{
display: none;
}



.product-bottom{
      display: flex;
    align-items: center;
    justify-content: space-between;
    align-content:center;
    padding-top: 20px;
}


.modal-content {
  display: flex;
  flex-direction: row; 
  gap: 20px; 
  align-items: stretch; 
  margin: auto;
}

.madal-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  padding:50px ;
}


@media(max-width:1200px) {
  .close {
        top: -44px;
        right: -3px;
    }

    .modal-content {
     margin: 0 20px;
}


.madal-info {
    padding: 30px;
}
}


@media(max-width:920px) {
  .close {
        top: -44px;
        right: -3px;
    }


    .modal-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    }


    .madal-info{
          width: auto;
    gap: 20px;
    margin-right: 0px;
    }


    .modal-description ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

  }


  @media(max-width:520px) {
  .madal-info {
    padding: 20px;
    gap: 10px;
}
  }



  @media (max-width: 450px) {
    .add-text {
        padding: 6px 25px;
    }
	  
	      .add-btn {
     padding: 9px 27px !important;
    }
	  
	  
	 
	  
	  
	  .footer-mob .btn-or {
    padding: 10px 22px;
	  }
	  
	   .footer-mob{
		  padding: 10px !important;
	  }
  }



  .product-bottom .item-quantity{
    padding: 6px 29px;
  }

  .cookie-notice-container{
      font-family: "Manrope" !important;
      font-weight: 400;
      font-size: 14px;
    color: var(--color-text);
    position: relative;
    z-index: 9999999999;
  }

  #cn-refuse-cookie{
    background: var(--color-text);
    border: 1px solid #fc9d01;
     font-weight: 400;
    font-size: 14px;
    color: var(--color-accent);
       cursor: pointer;
  }



   #cn-refuse-cookie{
     font-weight: 400;
    font-size: 14px;
    color: var(--color-accent);
    cursor: pointer;
  }


  #cookie-notice{
        z-index: 9999999999;
  }


#cn-notice-text a {
    color: var(--color-accent) !important; 
    text-decoration: underline !important; 
    font-family: 'Manrope' !important; 
    font-weight: 400 !important;
    font-size: 14px !important;
}



#cn-notice-buttons .cn-button {
    font-family: 'Manrope' !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    padding: 8px 16px !important;
    cursor: pointer !important;
}

#cn-accept-cookie {
    background-color: #fc9d01 !important;
    color: var(--color-text) !important;
}

#cn-refuse-cookie {
    background-color: var(--color-text) !important;
    color: #fc9d01 !important;
    border: 1px solid #fc9d01 !important;
}


.select-dropdown {
  display: none; 
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 300px;
  background: var(--color-text);
  border-radius: 16px;
  padding: 10px;
  z-index: 10;
}

.dropdown-grid {
  display: flex; /* две колонки */
  gap: 10px;
}

.column.calendar {
  flex: 2; /* календарь шире */
}

.column.time-wheel {
  width: 80px;
  max-height: 250px;
  overflow-y: auto; 
  border-left: 1px solid #ddd;
  padding-left: 10px;
}

.time-option {
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  text-align: center;
  transition: background 0.2s;
}

.time-option:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Убираем скролл в Firefox */
.column.time-wheel {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

/* Убираем скролл в Chrome, Edge, Safari */
.column.time-wheel::-webkit-scrollbar {
  display: none;
}

.date-picker {
  cursor: pointer;
  pointer-events: auto;
  background-color: #fff;
}

.date-picker::-webkit-calendar-picker-indicator {
  cursor: pointer;  
}

.date-picker:focus {
  outline: none;
}

.add-btn:hover{
color: var(--color-accent);
}

.qty-count{
  font-size: 16px;
}


.qty-minus:hover{
color: var(--color-accent);
}


.qty-plus:hover{
color: var(--color-accent);
}


.single-datetime-picker {
  position: relative;
  font-family: 'Manrope', sans-serif;
  color: var(--color-bg-body);
  margin: 15px 0 32px;
}

/* Заголовок селекта во всю ширину с закруглением */
.single-datetime-picker.full-width .picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
 padding: 11px 14px 11px 11px;
  border: 1px solid #ccc;
  border-radius: 50px;
  background: var(--color-text);
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

/* Иконка слева + текст */
.picker-icon-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-icon {
  width: 24px;
  height: 24px;
}

/* Стрелка справа */
.arrow-icon {
  width: 16px;
  height: 16px;
}

/* Дропдаун */
.picker-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--color-text);
  border: 1px solid #ccc;
  display: none;
  margin-top: 6px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 10;
}

.picker-dropdown.active {
  display: block;
}

/* Сетка календарь + время */
.picker-grid {
  display: flex;
  gap: 10px;
  padding: 12px;
}

/* Календарь */
.picker-calendar input {
  width: 140px;
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Время */
.picker-times {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 220px;
  overflow-y: auto;
  flex: 1;
}

.time-option {
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.time-option:hover {
  background: var(--color-text);
  color: var(--color-accent);
}


.picker-times {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 220px;
  overflow-y: auto;
  flex: 1;

  /* Скрыть скроллбар */
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* IE/Edge */
}

.picker-times::-webkit-scrollbar {
  display: none;              
}


.menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 99999999;
}

/* CSS */
#menu {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto; /* скролл только меню */
  display: none; /* по умолчанию скрыто */
}

#menu.active {
  display: block;
}

/* при открытом меню страница не скроллится */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}


.header {
  position: relative; 
  z-index: 1000;
}


.picker-arrow img {
  transition: transform 0.3s ease;
}


.picker-header.open .picker-arrow img {
  transform: rotate(180deg); 
}


.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 1200px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
	
	.content {
    display: flex;
    flex-direction: column;
}
}

@media (max-width: 768px) {
  .products {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.header.fixed-menu {
  position: fixed;   /* фиксируем только при открытом меню */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999991000;
 
}

.header {
  width: 100%;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999999999;
}


/* Показываем кнопку только на мобильных */
@media (max-width: 786px) {
  .mobile-cart-button {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: #ff6600; /* можно менять */
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 9999;
    cursor: pointer;
  }

  .mobile-cart-button .cart-total {
    font-weight: bold;
  }

  .mobile-cart-button .cart-text {
    margin-left: 10px;
  }
}


#mini-cart.active {
	  z-index: 99999999999;  
}

/* Мобильный поиск поверх всего */
@media (max-width: 768px) {

  .menu__search {
    display: none;           /* скрыт по умолчанию */
    position: absolute;      /* поверх всех элементов */
    top: 50px;               /* чуть ниже шапки */
    left: -60px;
    width: 90%;
    max-width: 500px;
    margin: 0 5%;
    z-index: 9999;
    background: #fff;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  /* Когда активен (например, через :focus или класс active) */
  .menu__search:focus,
  .menu__search.active {
    display: block;
  }
}


@media (max-width: 568px) {

 .menu__search:focus, .menu__search.active {
        display: block;
    }
	

	
}

@media (max-width: 501px) {
		  .menu__search {
    left: -100px;
	}
	
	    .menu__search.active {
        width: 270px;
    }
	
	#mini-cart {
    right: -520px;
	}
	
}

@media (max-width: 340px) {
	
	
	 .menu__search {
    left: -130px;
	}
	
	
    .menu__search.active {
        width: 270px;
    }
}

.product-card .product-card-img {
  width: 100%;
  height: clamp(180px, 30vw, 310px);
  overflow: hidden;
}

.product-card .product-card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

.menusite__categories{
	overflow-x: auto;
overflow-y: hidden !important;
}


/* Контейнер */
.custom-select-wrapper {
  position: relative;
  width: 250px;
  width:100%;
	margin-bottom: 34px;
}

/* Главное поле */
.custom-select-selected {
     padding: 13px 14px 13px 55px;
  background:#f4eded;
	border: 1px solid #ccc;
    border-radius: 50px;
  cursor: pointer;
  position: relative;
	width: 100%;
	color:#372116;
}

/* Левая иконка */
.icon-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
	    z-index: 9;
}

.icon-left {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Стрелка */
.icon-right {
  position: absolute;
     right: -21px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.icon-right img {
  width: 14px;
  height:8px;
  transition: transform 0.3s ease;
}

/* Переворот стрелки при открытом списке */
.custom-select-wrapper.open .icon-right img {
  transform: rotate(180deg);
}

/* Список вариантов */
.custom-select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

margin-top: 6px;
    border-radius: 10px;
  background: #f4eded;
  display: none; 
  z-index: 10;
	color: var(--color-bg-body);
}

/* Отображение при открытом состоянии */
.custom-select-wrapper.open .custom-select-items {
  display: block;
}

/* Элементы списка */
.custom-select-items div {
  padding: 10px 10px;
  cursor: pointer;
}

.custom-select-items div:hover {
  background: #f0f0f0;
}



.btn-or{
	padding: 15px 22px;
    border-radius: 56px;
    background: var(--color-accent);
	  display: flex; 
	    width: 100%;
    justify-content: space-between;
	color: var(--color-text);
	border: none;
    display: flex;
    align-items: center;
	font-family:"Manrope", sans-serif;
	font-weight:600;
	font-size:16px;
}

 .footer-mob {
   display:none;
}

@media (max-width: 786px) {
  .footer-mob {
   display:block;
	  background:#372116;
	   position: fixed;    
	   bottom: 0;
    left: 0;
	   padding: 15px 20px;
    width: 100%;
    z-index: 999;
	  z-index: 9999;
	}
	
}

@media (max-width: 420px) {
    .order #mini-cart {
        top: 90px !important; 
	}
}

@media (max-width: 420px) {
    .order #mini-cart {
        top: 80px !important; 
	}
}

.cart-step{
display:none;
}

.cart-step.active{
display:block;
}

.mini-cart-total.step{
	display:none !important;
}

.step2-back{
  all: unset;
	    width: 30px;
    padding: 10px 0px;
}

/* ПК */
@media (min-width:1500px){

.cart-step{
display:block !important;
}

.mobile-next-step,
.mobile-prev-step{
display:none;
}
.step2-back{
	display:none;
background:none;
border:none;
padding:0;
margin-bottom:20px;
cursor:pointer;
}

.step2-back img{
width:22px;
height:auto;
}
	
}

@media (max-width:1500px){
		div.mini-cart-total.step{
	display:flex !important;
}
	

}

.mobile-next-step{
	text-align:center;
}


.btn-or.mobile-next-step {
    justify-content: center; 
}


@media (max-width: 768px) {
  .picker-grid {
    grid-template-columns: 1fr;
	  
  }
	
	.picker-calendar input {
    width: 140px !important; 
	}

	
	.calendar-input {
  appearance: none;
  -webkit-appearance: none;
}
}