@import url('https://fonts.googleapis.com/css2?family=Quattrocento+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Bubbles&display=swap');

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  direction: ltr;
  font-family: 'Quattrocento Sans', sans-serif !important;
  font-size: clamp(14px, 4vw, 18px);
  margin: 0;
  padding: 0px;
  line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
p{
  padding: 0;
  margin: 0;
}

p, li{
  padding:  10px 0;
  line-height: 1.2;
}

li{
  margin: 0  10px;
}

a{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

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

ul{
  margin: 0;
  padding: 0;
}

.layout-container{
  width: auto;
  padding-right: 17px;
  padding-left: 17px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

@media screen and (min-width: 480px) {
  .layout-container{
  max-width: 442px;
  }
}
@media screen and (min-width: 575px){
  .layout-container{
    max-width: 537px;
  }
}
@media screen and (min-width: 768px) {
  .layout-container{
  max-width: 730px;
  }
}
@media screen and (min-width: 992px) {
  .layout-container{
    max-width: 952px;
  }
}

@media screen and (min-width: 1200px){
  .layout-container{
    max-width: 1172px;
    }
}

@media (min-width: 1400px){
  .layout-container{
    max-width: 1272px;
  }
}

.page-privacy-back{
  background-color: #060606;
}

.page-privacy{
  color: #fff;
  overflow: hidden;
  word-break: break-all;
  text-align: justify;
  padding: 39px 0;
  width: 100%;
}

.title-politics{
  font-size: clamp(19px, 4vw, 26px);
}

.page-privacy a{
  color: #fff;
}

.page-privacy a:hover{
  color: #fff;
  opacity: 0.5;
}

.header-block{
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #060606b3;
}

.header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo{
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 22px;
}

.logoImg img{
  width: 45px;
}

.logo a{
  color: black; 
  display: flex; 
  align-items: center; 
  gap: 18px;
  transition: color 0.3s ease;
}

.logoTitle h2{
  color: #fff;
  font-size: clamp(14px, 4vw, 18px);
  margin: 0;
}

.header-nav-box{
  display: flex;
  align-items: center;
  flex-direction: row;
}

.header-nav{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.topmenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: start;
  position: relative; 
}

.topmenu li {
  padding: 0;
  position: relative;
}

.topmenu-link {
  font-size: clamp(14px, 4vw, 18px);
  color: #fff; 
  text-decoration: none;
  padding: 10px 18px; 
  display: block;
  transition: 0.3s ease;
  position: relative; 
}

.topmenu-link:hover{
  opacity: 0.5;
  color: #fff;
}

.submenu {
  position: absolute;
  top: 100%;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 52px 52px, rgba(0, 0, 0, 0.12) 0px -10px 30px, rgba(0, 0, 0, 0.12) 0px 4px 10px, rgba(0, 0, 0, 0.17) 0px 10px 10px, rgba(0, 0, 0, 0.09) 0px -3px 5px;  left: 0;
  background-color: #060606;
  list-style: none;
  margin: 0;
  padding: 10px;
  display: none;
  overflow: hidden;
  width: 302px;
  z-index: 5;
  animation: slideIn 0.3s ease 0s forwards;
  transition: all 0.3s ease;
}

@keyframes slideIn {
  0% {
    margin-top: 30px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}

.submenu-a {
  padding: 10px 0;
  font-size: clamp(14px, 4vw, 15px);
  color: #fff;
  display: block;
  transition: 0.3s ease;
}

.submenu-a:hover {
  color: #fff;
  opacity: 0.5;
}

.topmenu li:hover .submenu {
  display: block;
}

.header-content-back{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
}

.header-content-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.5);
  background-image: url(assets/images/pattern-bg-1600x9000.jpg);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.header-content{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 98px;
  padding: 98px 0;
}

.header-content-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.header-content-box h2{
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(19px, 4vw, 26px);
}

.button-header{
  text-transform: uppercase;
  background-color: transparent;
  cursor: pointer;
  font-size: clamp(18px, 4vw, 24px);
  text-align: center;
  color: #fff;
  padding: 10px 39px;
  border: 2px solid #fff;
  transition: 0.3s ease;
}

.button-header:hover{
  background-color: #fff;
  color: #000;
}

.header-content a svg{
  fill: #fff;
  width: 39px;
  height: 22px;
}

.wrapper{
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.wrapper-block{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  background-color: #060606;
}

.wrapper-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 72px 0;
}

.wrapper-box h2{
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(18px, 4vw, 26px);
}

.wrapper-img{
  flex: 1;
}

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

.how-order{
  min-height: 60vh;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.how-order-card{
  overflow: hidden;
  transition: 1s ease;
  position: relative;
  flex: 1;
}

.how-order-card img{
  transition: 1s ease;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-order-card:hover img{
  transform: scale(1.1);
  filter: brightness(0.5);
}

.how-order-box{
  transition: 0.5s ease;
  padding: 10px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.how-order-card:hover .how-order-box{
  display: flex;
}

.how-order-box h2{
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(19px, 4vw, 24px);
}

.how-order-box p{
  color: #fff;
  font-size: clamp(15px, 4vw, 19px);
}

.items-collection-back{
  background-color: #060606;
}

.items-collection{
  padding: 72px 0;
}

.items-collection h2{
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(15px, 4vw, 26px);
}

.items-collection h5{
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
  font-size: clamp(14px, 4vw, 19px);
}

.items-collection-box{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.items-collection-card{
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: 0.5s ease;
  position: relative;
}

.items-collection-card a{
  overflow: hidden;
  position: relative;
}

.items-collection-card:hover .code-items-collection-card{
  transform: translateY(0);
}

.code-items-collection-card{
  text-transform: uppercase;
  transition: 0.5s ease;
  transform: translateY(100%);
  background-color: #ffffffb3;
  color: #000;
  text-align: center;
  padding:  10px;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  font-size: clamp(14px, 4vw, 12px);
}

.items-collection-card a img{
  width: 100%;
  object-fit: contain;
}

.items-collection-card-block{
  position: relative;
}

.items-collection-card-box{
  transition: 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.items-collection-card:hover .items-collection-card-box{
  opacity: 0;
}

.items-collection-card-box a h3{
  transition: 0.3s ease;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(14px, 4vw, 19px);
}

.items-collection-card-box a h3:hover{
  color: #fff;
  opacity: 0.5;
}

.border-price{
  background-color: #fff;
  width: 23%;
  height: 2px;
}

.items-collection-card-price{
  color: #fff;
  font-weight: 900;
  font-size: clamp(14px, 4vw, 19px);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.items-collection-card-button{
  transition: 0.5s ease;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.items-collection-card:hover .items-collection-card-button{
  opacity: 1;
}

.button-catal{
  text-transform: uppercase;
  background-color: transparent;
  cursor: pointer;
  font-size: clamp(14px, 4vw, 19px);
  text-align: center;
  color: #fff;
  padding: 10px 39px;
  border: 2px solid #fff;
  transition: 0.3s ease;
}

.button-catal:hover{
  background-color: #fff;
  color: #000;
}

.about-us-back{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-image: url(assets/images/pattern-bg-1600x9001.jpg);
  padding: 72px 0;
}

.about-us-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #060606cc;
  background-position: center;
  background-size: cover;
}

.about-us{
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 10px;
}

.about-us h2{
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(15px, 4vw, 26px);
}

.about-us p{
  color: #fff;
  font-size: clamp(14px, 4vw, 19px);
}

.form-back{
  background-color: #060606;
}

.osn-form {
  width: 60%;
  margin: 0 auto;
  padding: 72px 0;
  display: flex;
  flex-direction: column;
}

.title-container{
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(15px, 4vw, 26px);
  text-align: center;
}

.input-container {
  color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}

.input-container .input-form_item_section, .input-container .textarea-form_item_section, .form button {
  outline: none;
  margin: 10px 0;
}

.input-container .input-form_item_section {
  transition: 0.3s ease;
  color: #ffffffb3;
  background-color: transparent;
  padding: 10px;
  border-color: #fff;
  border-style: solid;
  border-width: 1px;
  font-size: 15px;
  line-height: 1.2;
  width: 100%;
}

.input-container .textarea-form_item_section {
  transition: 0.3s ease;
  color: #ffffffb3;
  background-color: transparent;
  padding: 10px;
  font-size: 15px;
  line-height: 1.2;
  border-color: #fff;
  border-style: solid;
  border-width: var(1px, 1px);
  width: 100%;
  min-height: 39px;
  max-height: 115px;
}

.input-container .input-form_item_section:hover, .input-container .textarea-form_item_section:hover,.input-container .input-form_item_section:focus, .input-container .textarea-form_item_section:focus{
  background-color: #fff;
  color: #000000b3;
}

.check{
  transition: 0.3s ease;
  color: #fff;
}

.check:hover{
  color: #fff;
  opacity: 0.5;
}

.submit-form{
  margin: 0 auto;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  padding: 18px 0;
}

.form-check .form-check-input{
  margin: 0;
}

.form-check-label{
  color: #fff;
  flex: 1;
}

.ui-checkbox {
  --primary-color: #1677ff;
  --secondary-color: #fff;
  --primary-hover-color: #4096ff;
  --checkbox-diameter: 18px;
  --checkbox-border-radius: 10px;
  --checkbox-border-color: #d9d9d9;
  --checkbox-border-width: 1px;
  --checkbox-border-style: solid;
  --checkmark-size: 1.2;
}

.ui-checkbox,
.ui-checkbox *,
.ui-checkbox *::before,
.ui-checkbox *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ui-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--checkbox-diameter);
  height: var(--checkbox-diameter);
  border-radius: var(--checkbox-border-radius);
  background: var(--secondary-color);
  border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.ui-checkbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.ui-checkbox::before {
  top: 40%;
  left: 50%;
  content: "";
  position: absolute;
  width: 4px;
  height: 10px;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
  -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
  -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
}

.ui-checkbox:hover {
  border-color: var(--primary-color);
}

.ui-checkbox:checked {
  background: var(--primary-color);
  border-color: transparent;
}

.ui-checkbox:checked::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.ui-checkbox:active:not(:checked)::after {
  -webkit-transition: none;
  -o-transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: none;
  opacity: 1;
}

.from-subscribe-back{
  background-color: #060606e6;
}

.form-subscribe{
  width: 60%;
  margin: 0 auto;
  padding: 72px 0;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.form-subscribe h5{
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(15px, 4vw, 26px);
  font-weight: 900;
}

.footer-input{
  overflow: hidden;
  width: 100%;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.form-subscribe input{
  text-align: center;
  outline: none;
  margin: 10px 0;
  transition: 0.3s ease;
  color: #ffffffb3;
  background-color: transparent;
  padding: 10px;
  background-color: #ff000033;
  border-color: #ff0000;
  border-style: solid;
  border-width: 1px;
  font-size: 15px;
  line-height: 1.2;
  width: 100%;
}

.form-subscribe input::placeholder{
  color: #ffffffb3;
}

.form-subscribe input:hover, .form-subscribe input:focus{
  border-color: #fff;
  background-color: transparent;
}

.form-subscribe button{
  font-size: clamp(12px, 4vw, 18px);
  padding: 10px;
  height: 100%;
  margin: 0;
  border-radius: 0;
  text-align: center;
}

.page-product-back{
  background-color: #060606;
  padding: 72px 0;
}

.link-navigate{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 39px;
}

.link-navigate a{
  color: #fff;
  font-size: clamp(12px, 4vw, 15px);
  transition: 0.3s ease;
}

.link-navigate a:hover{
  opacity: 0.5;
}

.link-navigate span{
  color: #fff;
}

.link-navigate p{
  font-size: clamp(14px, 4vw, 15px);
  text-transform: uppercase;
  padding: 0;
  color: #fff;
  opacity: 0.8;
}

.product-block{
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 39px;
  flex-direction: row-reverse;
}

.product-img{
  flex: 1;
}

.product-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-description{
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.product-description h2{
  color: #fff;
  font-size: clamp(16px, 4vw, 26px);
}

.rating-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.rating-box p{
  opacity: 0.8;
  font-size: clamp(14px, 4vw, 15px);
  padding: 0;
  color: #fff;
}

.product-price{
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: clamp(15px, 4vw, 26px);
  color: #fff;
  gap: 10px;
}

.rating:not(:checked) > input {
  position: absolute;
  appearance: none;
}

.rating:not(:checked) > label {
  float: right;
  cursor: pointer;
  font-size: 26px;
  color: #666;
}

.rating:not(:checked) > label:before {
  content: '★';
}

.rating > input:checked + label:hover,
.rating > input:checked + label:hover ~ label,
.rating > input:checked ~ label:hover,
.rating > input:checked ~ label:hover ~ label,
.rating > label:hover ~ input:checked ~ label {
  color: #e58e09;
}

.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
  color: #ff9e0b;
}

.rating > input:checked ~ label {
  color: #ffa723;
}

.product-code{
  font-size: clamp(14px, 4vw, 15px);
  padding: 0;
  color: #fff;
  opacity: 0.8;
}

.product-description-content{
  padding: 18px 0;
  border-top: 0.1px solid #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-description-content h5{
  color: #fff;
  font-size: clamp(12px, 4vw, 19px);
}

.product-description-content div{
  color: #fff;
  opacity: 0.8;
  font-size: clamp(14px, 4vw, 12px);
}

.discussion-product{
  padding: 30px 0;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.discussion-card{
  padding: 10px 0;
  border-top: 0.1px solid #fff;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.discussion-card h5{
  color: #fff;
  font-size: clamp(14px, 4vw, 19px);
}

.discussion-card p{
  color: #fff;
  opacity: 0.8;
  font-size: clamp(14px, 4vw, 18px);
}

.discussion-rating{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.discussion-rating svg{
  width: 22px;
  height: 22px;
  fill: white;
}

.page-contact-back{
  background-color: #060606;
  padding: 72px 0;
}

.contacts-block{
  padding: 39px 0;
  display: flex;
  justify-content: space-between;
  gap: 39px;
  flex-direction: row-reverse;
}

.kontact-form{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details-form .contact-details-inputs, .contact-details-form .textarea-kontact{
  outline: none;
  margin: 10px 0;
}

.input-position{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.contact-details-form .contact-details-inputs {
  transition: 0.3s ease;
  color: #ffffffb3;
  background-color: transparent;
  padding: 10px;
  border-color: #fff;
  border-style: solid;
  border-width: 1px;
  font-size: 15px;
  line-height: 1.2;
  width: 100%;
}

.contact-details-form .textarea-kontact{
  transition: 0.3s ease;
  color: #ffffffb3;
  background-color: transparent;
  padding: 10px;
  font-size: 15px;
  line-height: 1.2;
  border-color: #fff;
  border-style: solid;
  border-width: var(1px, 1px);
  width: 100%;
  min-height: 39px;
  max-height: 115px;
}

.contact-details-form .contact-details-inputs:hover, .contact-details-form .textarea-kontact:hover, .contact-details-form .contact-details-inputs:focus, .contact-details-form .textarea-kontact:focus{
  background-color: #fff;
  color: #000000b3;
}

.submit{
  margin: 0 auto;
  width: auto;
}

.contact-details-box{
  flex: 1;
}

.contact-details-box h2{
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(15px, 4vw, 26px);
}

.contact-box{
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.contacts-box-card{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.contacts-box-card svg{
  width: 18px;
  height: 18px;
  fill: #fff;
}

.contacts-box-card h5{
  opacity: 0.8;
  color: #fff;
  font-size: clamp(14px, 4vw, 18px);
}

.contacts-box-card a h5{
  word-break: break-all;
  opacity: 0.8;
  font-size: clamp(14px, 4vw, 18px);
  color: #fff;
  transition: 0.3s ease;
}

.contacts-box-card a h5:hover{
  opacity: 0.5;
}

.map{
  transition: 0.5s ease;
  filter: grayscale(1);
}

.map:hover{
  filter: grayscale(0);
}


.footer-back{
  background-color: #060606cc;
}

.footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-direction: column;
  padding: 30px 0;
}

.footer-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-direction: row-reverse;
}

.footer p{
  text-align: center;
  opacity: 0.9;
  padding: 0;
  font-size: clamp(14px, 4vw, 19px);
  color: #fff;
}

.footer-politic{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  flex-direction: row-reverse;
}

.footer-politic a{
  opacity: 0.9;
  text-decoration: underline;
  transition: 0.3s ease;
  font-size: clamp(14px, 4vw, 19px);
  color: #fff;
}

.footer-politic a:hover{
  color: #fff;
  opacity: 0.5;
}

.img-pay{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  flex-direction: row-reverse;
}

.img-pay img{
  max-width: 86px;
  max-height: 86px;
  object-fit: contain;
}

.menu-btn {
  cursor: pointer;
  display: none;
	width: 30px;
	height: 30px;
	position: relative;
	z-index:100;
	overflow: hidden;
}

.menu-btn span {
	width: 18px;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	transition: all 0.5s;
}

.menu-btn span:nth-of-type(2) {
	top: calc(50% - 10px);
}
.menu-btn span:nth-of-type(3) {
	top: calc(50% + 10px);
}

.menu-btn.active span:nth-of-type(1) {
  display: none;
}
.menu-btn.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);  
}
.menu-btn.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg); 
}

.menu {
  z-index: 99;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 18px;
  opacity: 0.9;
  background: #060606;
	transform: translateY(-100%);
	transition: transform 0.5s; 
}

.menu.active {
	transform: translateY(0);
}

.menu nav{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.menu ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.menu li {
	list-style-type: none;
}

.menu-link{
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
  font-size: clamp(15px, 4vw, 19px);
	color: #fff;
}

.menu-link:hover{
  opacity: 0.5;
}

.menu-link-a{
  transition: 0.3s ease;
  color: #fff;
  opacity: 0.8;
  font-size: clamp(14px, 4vw, 15px);
}

.menu-link-a:hover{
  opacity: 0.5;
}

@media (max-width: 991px) {
  .header-nav{
    display: none;
  }

  .menu-btn{
    display: block;
  }

  .items-collection-box{
    grid-template-columns: repeat(2, 1fr);
  }

  .footer{
    text-align: center;
  }

  .footer-top{
    flex-direction: column;
  }

  .product-block{
    flex-direction: column;
  }

  .product-description{
    align-items: stretch;
  }

  .form-subscribe{
    width: 100%;
  }

  .osn-form {
    width: 100%;
  }

  .contacts-block{
    flex-direction: column;
  }

  .footer-politic{
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .wrapper{
    min-height: auto;
    flex-direction: column;
  }

  .how-order{
    min-height: auto;
    flex-direction: column;
  }

  .how-order-card img{
    transform: scale(1.1);
    filter: brightness(0.5);
  }

  .how-order-box{
    display: flex;
  }

  .items-collection-box{
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);
  }

  .items-collection-card-button{
    position: relative;
    opacity: 1;
    transform: unset;
    left: unset;
    top: unset;
    padding-top: 10px;
  }

  .about-us-back::before{
    width: 100%;
  }

  .about-us{
    width: 100%;
  }

  .footer-politic{
    flex-direction: column;
  }

  .items-collection-card:hover .items-collection-card-box {
    opacity: 1;
  }

  .input-position{
    flex-direction: column;
    gap: 0;
  }
}

.map{
  border: none;
}

#market-{rclass_basket}-main-basket-1 svg {
  color: #fff !important;
  fill: #fff !important;
}

#market-{rclass_basket}-main-basket-1 svg {
color: #fff !important;
fill: #fff !important;
}
.cart-icon-2 svg {
fill: #fff !important;
}