@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

:root{
    --yellow: #C5AF93;
    --b-yel: #F6F0E9;
    --black: #303030;
    --light-blck: #6B6B6B;
}

body{
    direction: ltr;
    font-family: 'Urbanist', sans-serif !important;
    font-size: 14px;
    margin: 0;
    padding: 0px;
}

ul{
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  word-break: break-all;
}

.button-1 {
  padding: 18px 25px;
  border: unset;
  border-radius: 8px;
  color: #212121;
  z-index: 1;
  background: rgb(149, 145, 145);
  position: relative;
  font-weight: 700;
  font-size: 13px;
  -webkit-box-shadow: 4px 8px 18px -3px rgba(0,0,0,0.27);
  box-shadow: 4px 8px 18px -3px rgba(0,0,0,0.27);
  transition: all 250ms;
  overflow: hidden;
 }
 
 .button-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 8px;
  background-color: rgb(183, 159, 134);
  z-index: -1;
  -webkit-box-shadow: 4px 8px 18px -3px rgba(0,0,0,0.27);
  box-shadow: 4px 8px 18px -3px rgba(0,0,0,0.27);
  transition: all 250ms
 }
 
 .button-1:hover {
  color: #e8e8e8;
 }
 
 .button-1:hover::before {
  width: 100%;
 }

.button-2 {
  font-size: 13px;
  padding: 11px 25px;
  border: transparent;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  background: rgb(183, 159, 134);
  color: black;
  border-radius: 8px;
 }
 
 .button-2:hover {
  background: rgb(2,0,36);
  background: linear-gradient(90deg, rgb(183, 159, 134) 0%, rgba(160, 146, 131, 0.724) 100%);
 }
 
 .button-2:active {
  transform: translate(0em, 8px);
 }

.button-3 {
  font: inherit;
  background-color: #f0f0f0;
  border: 0;
  color: #242424;
  border-radius: 8px;
  font-size: 13px;
  padding: 11px 25px;
  font-weight: 600;
  text-shadow: 0 2px 0 #fff;
  box-shadow: inset 0 2px 0 0 #f4f4f4, 0 2px 0 0 #efefef,
    0 0.125em 0 0 #ececec, 0 3px 0 0 #e0e0e0, 0 0.3125em 0 0 #dedede,
    0 0.375em 0 0 #dcdcdc, 0 0.425em 0 0 #cacaca, 0 0.425em 0.5em 0 #cecece;
  transition: 0.15s ease;
  cursor: pointer;
}
.button-3:active {
  translate: 0 3px;
  box-shadow: inset 0 0.03em 0 0 #f4f4f4, 0 0.03em 0 0 #efefef,
    0 2px 0 0 #ececec, 0 0.125em 0 0 #e0e0e0, 0 0.125em 0 0 #dedede,
    0 0.2em 0 0 #dcdcdc, 0 3px 0 0 #cacaca, 0 3px 0.375em 0 #cecece;
}


.button-4 {
  transition: all 0.3s ease-in-out;
}

.button-4  {
  padding: 18px;
  border-radius: 50px;
  background-image: linear-gradient(135deg,  rgb(183, 159, 134) 0%,  rgb(98, 87, 76) 100%);
  box-shadow: 0 18px 25px -8px rgba(143, 131, 118, 0.707);
  outline: none;
  cursor: pointer;
  border: none;
  color: white;
}

.button-4:hover {
  transform: translateY(3px);
  box-shadow: none;
}

.button-4:active {
  opacity: 0.5;
}

.button-5 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-weight: 700;
  padding: 11px 25px;
  border: 2px solid rgb(143, 131, 118);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 2px 11px rgb(143, 131, 118), 0 3px 8px rgba(143, 131, 118, 0.707);
  color: rgb(47, 19, 32);
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
}

.button-5:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: rgb(72, 67, 62);
  z-index: -1;
}

.button-5:hover, .button-5:focus {
  color: white;
}

.button-5:hover:before, .button-5:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.button-5:active {
  transform: scale(0.9);
}


.l-r--container{
  margin: 0 18px;
}

.t-b--container{
  padding: 79px 0;
}

.block--nav{
    padding: 11px;
}
.tel--basket{
display: flex;
justify-content: space-between;
align-items: center;
}

.tel--nav-top a{
color: var(--yellow);
}

.wrapper--nav-items{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 11px 0 30px 0;
}
.wrapper--nav-items li {
    list-style: none;
}
.wrapper--nav-items li a{
    color: rgb(24, 24, 24);
}
.wrapper--nav-items li a:hover{
  color: var(--yellow);
}

.site--logo-items{
    display: flex;
    align-items: center;
    justify-content: center;
}

.site--title{
    color: var(--black);
}
.logo--image{
    width: 79px;
    margin: 11px;
}
.block--main {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: auto; 
    background: url('pics/bg_GX0.webp') no-repeat center center/cover; 
    position: relative;
    box-sizing: border-box;
}
.main--image-text{
    display: flex;
    flex-direction: row-reverse;
}
.content--text {
    background-color: var(--b-yel); 
    padding: 79px;
    color: var(--light-blck);
    width: 43%;
    text-align: center;
}

.content--text h1 {
    margin: 0;
}

.about--wrap{
    padding: 50px;
    display: flex;
}

.about--title{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.about--text{
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
}
.about--text h2{
    font-size: 40px;
    color: var(--black);
}
.about--text p{
    line-height: 1.2;
}
.about--text span {
    display: block;
    width: 50px; 
    height: 3px; 
    background-color: var(--b-yel); 
    margin: 0 18px;
}
.about--img{
    width: 335px;
    flex: 1;
    object-fit: cover;
    border: 8px solid var(--b-yel);
}
.title--order h2{
  border-top: 2px solid var(--b-yel);
  text-align: center;
  font-size: 40px;
  padding: 18px;
  color: var(--black);
}
.howorder--items{
  display: flex;
    justify-content: space-around;
    gap: 21px;
    flex-wrap: wrap;
}

.card--howorder{
  width: 335px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--b-yel);
  padding: 18px;
  border-radius: 18px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 11px;
}
.card--howorder div{
  padding: 18px;
  margin: 11px;
  border-radius: 98px;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -21px 21px 0px inset, rgba(0, 0, 0, 0.15) 0px -30px 25px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 30px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 18px 8px, rgba(0, 0, 0, 0.09) 0px 30px 18px;
}
.howorder--text{
  color: var(--light-blck);
  text-align: center;
}
.block--catalog{
  background-color: var(--b-yel);

}
.product-list--wrapper{
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.product-list--title{
  display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 18px 0 25px;
}
.product-list--title span{
  display: block;
    width: 79px;
    height: 2px;
    background-color: var(--yellow);
    margin: 0 18px;
}
.product-list--title h2{
  text-align: center;
  color: var(--black);
  font-size: 40px;
}
.product-list--box{
  width: 279px;
}
.product-list--list{
  display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding-top: 18px;
    border-top: 2px solid var(--yellow);
}
.product-list--picture img{
  width: 279px;
    height: 279px;
    object-fit: cover;
}

.prod--code span{
  padding-top: 11px;
  color: #867560;
}

.prod--name{
  color: #6B6B6B;
}

.prod--info {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  margin: 11px 0 0 0;
}
.cat--read-more{
  padding: 0 0 18px;
}
.cat--read-more a{
  color: var(--yellow);
}
.cat--price{
  padding: 0 0 18px;
}
.cat--price span{
  font-size: 28px;
  color: var(--black);
}

.block--discount {
  position: relative;
  padding: 18px;
  background-image: url('pics/bg_GX1.webp');  
  background-size: cover;
  background-attachment: fixed; 
  background-position: center;
}

.number--discount {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex: 1;
  color: white;
}

.number--discount p {
  font-size: 40px;
  margin: 0 11px;
}

.block--discount::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.gallery--items{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.gallery--items img{
  width: 318px;
  height: 279px;
  object-fit: cover;
}
.g--title{
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
.g--title span{
  display: block;
    width: 79px;
    height: 2px;
    background-color: var(--b-yel);
    margin: 0 18px;
}
.g--title h2{
  text-align: center;
  color: var(--black);
  font-size: 40px;
}
.gallery--w-a p{
  text-align: center;
  font-size: 28px;
  padding: 25px 0;
  color: var(--light-blck);
}

.block--coments{
  background-color: var(--b-yel);
}

.coment--ava img{
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 98px;
}
.feedback--items{
  display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap:  25px;
}

.feedback--item{
  width: 335px;
  background-color: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.coment--name{
  font-size: 18px;
  color: var(--yellow);
  margin: 18px;
  text-align: center;
}

.feedback--item span{
  display: block;
  width: 25px;
  height: 1px;
  background-color: var(--yellow);
  margin: 0 18px;
}

.com--message,
.coment--date p{
  color: #6B6B6B;
  margin: 18px 0;
}
.coment--date p{
  font-size: 13px;
  font-style: italic;
}
.feedback--tit{
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  margin: 25px 0;
}

.feedback--tit h2{
  font-size: 40px;
  color: var(--black);
}

.feedback--tit p{
  color: var(--black);
  font-size: 28px;
  line-height: 1.2;
}

.feedback--tit span {
  display: block;
  width: 50px; 
  height: 3px; 
  background-color: var(--yellow); 
  margin: 0 18px;
}

.feedback--trust p{
  text-align: center;
  font-size: 28px;
  padding: 25px 0;
  color: var(--light-blck);
}

.form--discount{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.container {
  width: 80%;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(244, 247, 251) 100%);
  border-radius: 10px;
  padding: 25px 30px;
  border: 3px solid var(--yellow);
  box-shadow: var(--b-yel) 0px 25px 25px -18px;
  margin: 18px;
  position: relative;
  z-index: 3;
}

.container--discount {
  width: 80%;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(244, 247, 251) 100%);
  border-radius: 10px;
  padding: 25px 30px;
  border: 3px solid var(--yellow);
  box-shadow: var(--b-yel) 0px 25px 25px -18px;
  position: relative;
  flex: 1;
  z-index: 3;
}

.heading {
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  color: var(--black);
}
.form--span{
  display: flex;
  align-items: center;
  justify-content: center;
}

.heading span{
  display: block;
    width: 79px;
    height: 2px;
    background-color: var(--yellow);
    margin: 0 18px;
}
.form {
  margin-top: 20px;
}
.wrap--form-cont{
  display: flex;
  justify-content: center;
}

.input-input-section_section {
  width: 90%;
  background: white;
  border: none;
  padding: 18px;
  border-radius: 10px;
  margin: 8px 8px 18px;
  box-shadow: var(--b-yel) 0px 11px 11px -8px;
  border-inline: 2px solid transparent;
}

.textarea-input-section_section{
  width: 90%;
  background: white;
  border: none;
  padding: 18px;
  border-radius: 10px;
  margin: 5px 15px;
  box-shadow: var(--b-yel) 0px 11px 11px -8px;
  border-inline: 2px solid transparent;
}
.wrap--form{
  display: flex;
  justify-content: center;
}

.form label {
  display: flex;
  flex-direction: column;
}

.form label input{
  background: white;
  border: none;
  padding: 18px;
  border-radius: 10px;
  margin: 18px;
  box-shadow: var(--b-yel) 0px 11px 11px -8px;
  border-inline: 2px solid transparent;
}
.form label textarea{
  background: white;
  border: none;
  padding: 18px;
  border-radius: 10px;
  margin: 18px;
  box-shadow: var(--b-yel) 0px 11px 11px -8px;
  border-inline: 2px solid transparent;
}

.form label span{
  color: var(--light-blck);
}

.form .input::-moz-placeholder {
  color: rgb(170, 170, 170);
}

.form .input::placeholder {
  color: rgb(170, 170, 170);
}

.form .input:focus {
  outline: none;
  border-inline: 2px solid var(--yellow);
}

.form .forgot-password {
  display: block;
  margin-top: 11px;
  margin-left: 11px;
}

.form .forgot-password a {
  font-size: 12px;
  color: var(--yellow);
  text-decoration: none;
}
.form--check{
  margin: 18px;
}
.form--check a{
  color: #675947;
}

.checkbox--cont{
  display: flex;
    flex-direction: row;
    margin: 18px 0;
    align-items: center;
}

.checkbox-wrapper:hover .check {
  stroke-dashoffset: 0;
}

.checkbox-wrapper {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
}

.checkbox-wrapper .background {
  fill: var(--black);
  transition: ease all 0.6s;
  -webkit-transition: ease all 0.6s;
}

.checkbox-wrapper .stroke {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 2px;
  stroke-dashoffset: 100;
  stroke-dasharray: 100;
  transition: ease all 0.6s;
  -webkit-transition: ease all 0.6s;
}

.checkbox-wrapper .check {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  stroke-dashoffset: 22;
  stroke-dasharray: 22;
  transition: ease all 0.6s;
  -webkit-transition: ease all 0.6s;
}

.checkbox-wrapper input[type=checkbox] {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  margin: 0;
  opacity: 0;
  -appearance: none;
  -webkit-appearance: none;
}

.checkbox-wrapper input[type=checkbox]:hover {
  cursor: pointer;
}

.checkbox-wrapper input[type=checkbox]:checked + svg .background {
  fill: var(--black);
}

.checkbox-wrapper input[type=checkbox]:checked + svg .stroke {
  stroke-dashoffset: 0;
}

.checkbox-wrapper input[type=checkbox]:checked + svg .check {
  stroke-dashoffset: 0;
}
.btn--form{
  text-align: center;
}
.footer--wrap{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-around;
}

.wrap--logo-bot{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrap--menu{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wrap--footer-cat ul li{
  list-style: none;
}
.priv--t {
  padding: 18px 0;
}

.priv--p li p {
  padding: 8px 0;
}

.col--text-menu{
  line-height: 2;
  color: var(--black);
}
.col--text-menu:hover{
  color: var(--yellow);
}

.wrap--priv{
  overflow: hidden;
  word-break: break-all;
  padding: 18px;
  margin: 0 18px;
}

.wrap--priv-footer{
  display: flex;
  flex-direction: column;
}

.wrap--card{
  display: flex;
  flex-direction: row;
  border-top: 2px solid var(--b-yel);
  padding: 18px;
  margin: 0 18px;
  align-items: center;
  justify-content: space-evenly;
}

.card--items-log{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.product-list--box-page{
  display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
}

.product-list--picture-page{
  text-align: center;
  margin: 0 0 18px;
}

.product-list--picture-page img{
  width: 55%;
  object-fit: contain;
}

.product-list--info-page{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-list--prod-page{
  text-align: center;
  margin: 0 8px;
}

.cat--price-page{
  padding: 18px 0;
  font-size: 28px;
}

.text--content-page{
  padding: 30px;
  border-bottom: 2px solid var(--b-yel);
}

.wrap--card-text{
  margin: 8px;
}

.wrap--card-text p{
  font-style: italic;
}

.wrap--contacts-page{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.contacts--list{
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 11px 0;
  max-width: 576px;
  margin: 0 auto;
  text-align: center;
}

.contacts--list div h3{
  color: #555555;
  font-size: 18px;
}

.contacts--list div div a {
  color: var(--light-blck);
  font-size: 14px;
}

.contacts--list div div{
  color: var(--light-blck);
  font-size: 14px;
}

.contact--map{
  flex: 1;
}

.anim {
  opacity: 0;
  transform: translateY(-62px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.anim.visible {
  opacity: 1;
  transform: translateY(0);
}


@media screen and (min-width: 480px) {
  .product-list--wrapper {
    max-width: 479px;
  }
}
@media screen and (min-width: 768px) {
  .product-list--wrapper {
    max-width: 779px;
  }
}
@media screen and (min-width: 1200px) {
  .product-list--wrapper {
    max-width: 1218px;
  }
}


@media (max-width: 1100px){
  .footer--wrap {
    flex-direction: column;
    align-items: center;
  }

  .wrap--menu{
    align-items: center;
  }

  .wrap--footer-cat{
    text-align: center;
    margin: 18px 0;
  }

  .wrap--priv-footer{
    text-align: center;
  }

  .wrap--card{
    flex-direction: column;
  }

  .wrap--card-text{
    text-align: center;
  }
}

      @media (max-width: 1000px) {
        .about--wrap{
          flex-direction: column;
          align-items: center;
        }
        .about--img {
          width: 70%;
        }
        .form--discount{
        flex-direction: column;
        margin: 18px 0;
       }
       .number--discount{
        flex-direction: column;
        margin: 0 0 18px 0;
       }
       
      }
     
      @media (min-width: 801px) {
        .wrapper--nav {
          display: block;
        }
        .mobile--menu,
        .menuOpen {
          display: none;
        }
      }
     
        @media (max-width: 800px) {
          .tel--nav-top{
            display: none;
          }
          .wrapper--nav {
            display: none;
          }
          .menuOpen {
            padding: 11px;          
          }
          .mobile--menu.hidden {
            display: none;
          }
          .mobile--menu.visible {
            display: block;
          }
          .menu--list {
            list-style-type: none;
            padding: 0;
            margin: 0;
          }
          
          
          .menu--list a {
            text-decoration: none;
            color: var(--black); 
            padding: 8px;
            display: block;
            border-bottom: 2px solid var(--b-yel);
          }
          .tel--nav-top:hover{
           color: var(--yellow);
          }
          .clouse--btn {
            text-align: left;
            padding: 11px;
          }
          
          .clouse--btn svg {
            cursor: pointer;
          }
        }
        @media (max-width: 560px) {
          .about--wrap {
            padding: 11px;
          }

          .about--text span,
          .product-list--title span,
          .g--title span,
          .feedback--tit span,
          .heading span {
            width: 30px;
            height: 2px;
            margin: 0 11px;
          }

          .about--text h2,
          .product-list--title h2,
          .g--title h2,
          .feedback--tit h2,
          .heading {
            font-size: 18px;
          }

          .gallery--w-a p,
          .feedback--trust p{
            font-size: 20px;
          }

          .about--img {
            width: 100%;
          }

          .title--order h2{
            font-size: 18px;
          }

         .content--text{
            padding: 25px;
            width: 60%;
          }

          .content--text h1 {
            font-size: 20px;
           }

           .wrap--contacts-page{
            flex-direction: column;
           }
        }
        
        @media (max-width: 400px){
          .container{
            padding: 11px 22px;
            margin: 0;
          }
        }

.map iframe{
  border: 0;
}