:root {
  --p-color: #D74532;
  --s-color: #c23825;
  --s-bg: #F3F5F6;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 20px;
  border: 2.5px solid #fff;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  background-color: #FFFFFF;
  color: #000000;
  font-family: "Gilroy", sans-serif;
  overflow-x: hidden;
}

body {
  opacity: 0.25;
  transition: opacity 0.3s ease-in;
}

body.fonts-loaded {
  opacity: 1;
}

a,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  cursor: pointer;
  text-decoration: none;
}

ul,
ul li {
  list-style: none;
}

input,
textarea,
button,
select {
  outline: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

input::-ms-clear {
  display: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type='number'],
input[type="number"]:hover,
input[type="number"]:focus {
  appearance: none;
  -moz-appearance: textfield;
}

img {
  max-width: 100%;
}

.text-start {
  text-align: left;
}

.text-center {
  text-align: center;
}

.st-hover {
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.st-hover:hover {
  cursor: pointer;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.fade {
  -webkit-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  transition: opacity .15s linear;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.p-0 {
  padding: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-15 {
  margin-top: 15px;
}

.py-small {
  padding-top: 28px;
  padding-bottom: 28px;
}

.hidden {
  display: none !important;
}

.p-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.p-section-1 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.p-section-top {
  padding-top: 50px;
}

.p-section-bottom {
  padding-bottom: 50px;
}

.pre-container {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

.container {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

.bg-s {
  background: var(--s-bg);
}

.logotype {
  display: block;
  text-align: center;
}

.top-menu {
  margin-top: 10px;
  margin-bottom: 10px;
}

.navbar-header {
  display: none;
}

.navbar {
  padding-top: 12px;
  z-index: 1200;
}

.btn-open {
  right: 25px;
  top: 25px;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 5px 16px;
}

.btn-open svg path {
  fill: #000;
  transition: 0.3s;
}

.btn-close svg path {
  fill: #fff;
  transition: 0.3s;
}

.navbar-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  gap: 16px;
  padding: 5px;
  height: 56px;
  width: fit-content;
}

.nav-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  height: 100%;
  padding: 0px 12px;
  border-radius: 48px;
  z-index: 2;
  transition: 0.3s;
}

.nav-link {
  color: #808080;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #FFF;
  transition: 0.3s;
}

.nav-item.active .nav-link {
  color: #FFF;
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 8px;
  width: 80%;
  height: 2px;
  border-radius: 65px;
  background: var(--p-color);
}

.nav-item.nav-logo:hover,
.nav-item.nav-logo.active {
  background-color: transparent;
  opacity: 0.8;
}

.offcanvas-header {
  display: none;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.offcanvas-backdrop.hidden {
  display: none;
}

.offcanvas-backdrop.fade {
  opacity: 0;
}

.offcanvas-backdrop.show {
  opacity: .5;
}

.header-clear {
  height: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid transparent;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.btn img {
  height: 16px;
}

.btn:hover {
  cursor: pointer;
  transition: 0.3s;
}

.btn-white {
  color: var(--p-color);
  background: #ffffff;
}

.btn-white:hover {
  color: var(--p-color);
  background: #F7DAD6;
}

.btn-gray {
  color: #000;
  background: rgba(23, 23, 23, 0.10);
  backdrop-filter: blur(5px);
}

.btn-gray:hover {
  color: var(--p-color);
  background: #F7DAD6;
}

.btn-red {
  color: #ffffff;
  background: var(--p-color);
}

.btn-red:hover {
  color: #ffffff;
  background-color: var(--s-color);
}

.btn-red-outline {
  color: var(--s-color);
  border-color: var(--p-color);
}

.btn-red-outline:hover {
  color: #ffffff;
  background-color: var(--s-color);
}

.btn.disabled,
.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.inpt {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 12px 16px;
  background: var(--s-bg);
  border: 1px solid #E8EAEA;
  border-radius: 10px;
}

.inpt::placeholder {
  color: #565D68;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.lnk {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s;
}

.lnk:has(img) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.lnk:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

.faq-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 26px;
}

.faq-start {
  position: relative;
  flex: 0 0 calc(50% - 13px);
}

.faq-start .title-section h2,
.faq-start .title-section p {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.faq-start .title-section h2 {
  font-weight: 400;
}

.faq-end {
  position: relative;
  flex: 0 0 calc(50% - 13px);
}

.accordion .accordion-item {
  position: relative;
  padding: 14px 16px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid #E9E9E9;
  background: var(--s-bg);
}

.accordion .accordion-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -1px;
  border-radius: 7px;
  background: -o-linear-gradient(var(--angle-faq), rgba(233, 202, 172, 0.1) 0%, rgba(245, 226, 215, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(var(--angle-faq)), color-stop(0%, rgba(233, 202, 172, 0.1)), to(rgba(245, 226, 215, 0)));
  background: linear-gradient(var(--angle-faq), rgba(233, 202, 172, 0.1) 0%, rgba(245, 226, 215, 0) 100%);
  -webkit-animation: rotate-gradient-faq 12s linear infinite;
  animation: rotate-gradient-faq 12s linear infinite;
}

.accordion button {
  padding-right: 44px;
  position: relative;
  display: block;
  width: 100%;
  border: none;
  background: none;
  outline: none;
  font-size: 16px;
  text-align: left;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  transition: 0.3s;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #000;
  transition: 0.3s;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
}

.accordion button .icon::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='20' fill='%23171717' fill-opacity='0.1'/%3E%3Cpath d='M27.7443 16.0646L27.2202 15.5369C27.0552 15.3721 26.8358 15.2813 26.6012 15.2813C26.3668 15.2813 26.1471 15.3721 25.9822 15.5369L20.0036 21.5157L14.0181 15.5303C13.8534 15.3654 13.6337 15.2748 13.3993 15.2748C13.1649 15.2748 12.945 15.3654 12.7802 15.5303L12.256 16.0548C11.9147 16.3958 11.9147 16.9514 12.256 17.2925L19.3824 24.4445C19.5471 24.6092 19.7666 24.7253 20.0031 24.7253H20.0058C20.2403 24.7253 20.4598 24.6091 20.6245 24.4445L27.7443 17.3119C27.9092 17.1472 27.9997 16.9211 28 16.6867C28 16.4522 27.9092 16.2292 27.7443 16.0646Z' fill='%23171717' fill-opacity='0.3'/%3E%3C/svg%3E%0A");
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.accordion button[aria-expanded=true] {
  color: #000;
  transition: 0.3s;
}

.accordion button[aria-expanded=true] .icon::before {
  rotate: 180deg;
  transition: 0.3s;
}

.accordion button[aria-expanded=true]+.accordion-content {
  opacity: 1;
  max-height: 9em;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  will-change: opacity, max-height;
}

.accordion button[aria-expanded=true]+.accordion-content.large {
  max-height: 500px;
}

@media(max-width: 991px) {
  .accordion button[aria-expanded=true]+.accordion-content.large {
    max-height: 1200px;
  }
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.3s linear, max-height 0.3s linear;
  -o-transition: opacity 0.3s linear, max-height 0.3s linear;
  transition: opacity 0.3s linear, max-height 0.3s linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  color: #808080;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin: 15px 0;
}

.footer-header {
  padding-bottom: 50px;
}

.footer-sections {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-section {
  padding: 0 20px;
}

.footer-section:first-child {
  padding-left: 0;
}

.footer-section:last-child {
  padding-right: 0;
}

.footer-section h3 {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  margin-top: 20px;
}

.footer-links p {
  color: #565D68;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  max-width: 190px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #565D68;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #000;
  transition: 0.3s;
}

.footer-socials {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.footer-socials a {
  opacity: 1;
  transition: 0.3s;
}

.footer-socials a:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

.footer-socials a img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.footer-copyright {
  color: #565D68;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  padding: 22px;
  background-color: #fff;
}

.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1201;
}

.dropdown-button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid #000;
  background-color: #000;
  border-radius: 10px;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.dropdown-button::after {
  content: '';
  display: block;
  background: url('../img/icons/arrow_down.svg');
  width: 14px;
  height: 14px;
  transition: 0.3s;
}

.dropdown.active .dropdown-button::after {
  transform: rotate(180deg);
  transition: 0.3s;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #000;
  background-color: #000;
  border-radius: 10px;
  z-index: 1202;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.dropdown-menu li {
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.dropdown-menu li.active {
  background-color: var(--p-color);
}

.dropdown-menu li:hover {
  background-color: #303030;
}

.dropdown.active .dropdown-menu {
  display: block;
}

.search {
  position: relative;
}

.search .inpt {
  padding-right: calc(8px + 24px + 16px);
}

.search-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero {
  position: relative;
  background-color: #000;
  border-radius: 0;
  padding: 0px 25px;
  padding-bottom: 15px;
}

.hero::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 3px;
  border: none;
}

.hero-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.hero-start {
  position: relative;
  flex: 0 0 calc(55% - 13px);
}

.hero-end {
  position: relative;
  flex: 0 0 calc(45% - 13px);
  text-align: center;
}

.hero-img {
  animation: breathing 10s infinite linear;
}

.hero-img-motion {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.25rem;
  right: 0;
  height: 100%;
  margin: auto;
  object-fit: contain;
  animation: motion 5s infinite linear;
}

.hero-start h1 {
  color: #FFF;
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.hero-start h1 span {
  color: var(--p-color);
}

.hero-start p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 30px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}

.section-header h1 {
  color: #000;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section-header h2 {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section-header-start,
.section-header-end {
  max-width: 100%;
}

.categories {
  padding-top: 50px;
  padding-bottom: 30px;
}

.categories-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  overflow-y: hidden;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;

  &::-webkit-scrollbar {
    display: none;
  }
}

.categories-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  height: 90px;
  border-radius: 5px;
  transition: 0.3s;
}

.categories-item:hover {
  cursor: pointer;
  scale: 0.95;
  transition: 0.3s;
}

.categories-item-icon {
  width: 50px;
  height: 50px;
}

.categories-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.categories-item h3 {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
  transition: 0.3s;
}

.categories-item:hover h3,
.categories-item.active h3 {
  color: var(--s-color);
  transition: 0.3s;
}

.catalog {
  padding-bottom: 50px;
}

.catalog-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.catalog-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-direction: column;
  padding: 15px 14px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.catalog-img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.catalog-item h3 {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.badge-gray {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid transparent;
  padding: 12px 16px;
  border-radius: 10px;
  background: #E8E8E8;
  color: #171717;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.badge-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid transparent;
  padding: 12px 16px;
  border-radius: 10px;
  background: #F0E4E3;
  color: var(--p-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.price {
  color: var(--p-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

h3.price {
  color: #171717;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.catalog-categories {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.catalog-category {
  color: var(--s-color);
  background: #F0E4E3;
  border-radius: 10px;
  padding: 12px 25px;
  flex: 1 1 auto;
  transition: 0.3s;
}

.catalog-category:hover,
.catalog-category.active {
  cursor: pointer;
  color: #fff;
  background: var(--s-color);
  transition: 0.3s;
}

.catalog-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 30px;
}

.catalog-page {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0.5;
  border-radius: 5px;
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s;
}

.catalog-page:hover,
.catalog-page.active {
  cursor: pointer;
  color: #FFF;
  opacity: 1;
  background-color: var(--s-color);
}

.catalog-page.incoming {
  background: none;
}

.whyus-content {
  border-radius: 10px;
  background: var(--p-color);
  padding: 35px 15px;
}

.whyus-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.whyus-start {
  position: relative;
  flex: 0 0 calc(45% - 25px);
  max-width: 295px;
}

.whyus-end {
  position: relative;
  flex: 0 0 calc(55% - 25px);
}

.whyus-start h2 {
  color: #FFF;
  font-size: 46px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
}

.whyus-start p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 30px 0;
}

.whyus-blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-direction: column;
}

.whyus-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
}

.whyus-block-img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #F7DAD6;
  padding: 15px;
  flex-shrink: 0;
}

.whyus-block-img img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.text-block {
  padding: 30px 0;
}

.block-white .text-block {
  padding: 0;
}

.text-block h2 {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.text-block p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 10px;
}

.bbout p {
  margin: 0;
}

/* Базовые стили */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: hidden;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;

  &::-webkit-scrollbar {
    display: none;
  }
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li+li::before {
  content: "/";
  margin: 0 8px;
  color: #666;
}

.breadcrumbs li:first-child {
  flex-shrink: 0;
}

.breadcrumbs a {
  color: #171717;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
  transition: 0.3s;
}

.breadcrumbs a img {
  vertical-align: middle;
}

.breadcrumbs a:hover {
  color: var(--p-color);
  transition: 0.3s;
}

.breadcrumbs span {
  white-space: nowrap;
  color: #B9B9B9;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.block-white {
  padding: 26px 28px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}

.product-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.product-start {
  position: relative;
  flex: 0 0 calc(65% - 13px);
}

.product-end {
  position: relative;
  flex: 0 0 calc(35% - 13px);
}

.product-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.product-text h2 {
  color: #171717;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.product-text p {
  color: #171717;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product-img {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-buy {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--s-bg);
  padding: 26px 28px;
  border-radius: 10px;
  flex-shrink: 0;
}

.product-buy-header,
.product-buy-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.counter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.counter input {
  color: #171717;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 35px;
}

.review {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #E8E8E8;
}

.review:last-child {
  border: 0;
}

.review-info {
  flex: 1 1 auto;
}

.review-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--p-color);
  flex-shrink: 0;
  border-radius: 50%;
  color: #FFF;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.review-info-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-info-header h3 {
  color: #171717;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.review-info-header .time {
  color: rgba(23, 23, 23, 0.50);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: auto;
}

.review-info-footer {
  color: #171717;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact-blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.contact-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  background-color: var(--p-color);
  padding: 10px;
  border-radius: 20px;
  width: 100%;
  transition: 0.3s;
}

.contact-block:hover {
  cursor: pointer;
  scale: 1.03;
  transition: 0.3s;
}

.contact-block-img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  padding: 15px;
  flex-shrink: 0;
}

.contact-block-img img {
  height: 32px;
  width: 32px;
  object-fit: contain;
}

.contact-block h3 {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact-block p {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

mark {
  background-color: color-mix(in srgb, var(--p-color), transparent 80%);
}

.gateway-options {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
}

.gateway-option {
  position: relative;
  width: 100%;
  height: 90px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gateway-option:hover {
  border-color: var(--p-color);
}

.gateway-option input[type="radio"] {
  display: none;
}

.gateway-option .gateway-content {
  border: 2px solid #ddd;
  border-radius: 10px;
  transition: 0.3s;
}

.gateway-option:hover .gateway-content {
  border: 2px solid var(--p-color);
  background-color: #f8f8f8;
  transition: 0.3s;
}

.gateway-option input[type="radio"]:checked+.gateway-content {
  border: 2px solid var(--p-color);
  transition: 0.3s;
}

.gateway-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.gateway-logo {
  max-width: 60%;
  max-height: 60%;
}

.receipts {
  background-color: var(--s-bg);
  padding: 10px;
  border-radius: 10px;
}

.receipt {
  display: block;
  padding: 1px;
}

.review-leave {
  margin-top: 30px;
}

.rl-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.rl-start {
  position: relative;
  flex: 0 0 calc(65% - 13px);
}

.rl-end {
  position: relative;
  flex: 0 0 calc(35% - 13px);
}

.review-leave .inpt {
  border-radius: 5px;
  background: #E8E8E8;
  border-color: transparent;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.rating {
  display: flex;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
}

.rating input {
  display: none;
}

.rating label {
  display: inline-block;
  cursor: pointer;
  width: 35px;
  height: 35px;
  background-image: url('/assets/img/icons/stars.svg');
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-size: 200%;
}

.rating input:checked~label~label {
  background-position-x: 0;
}

.rating label:hover {
  background-position-x: 100% !important;
}

.rating input:checked~label {
  background-position-x: 100%;
}

.r-stars {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
  gap: 5px;
}

.r-star {
  width: 20px;
  height: 20px;
  background-image: url('/assets/img/icons/stars.svg');
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-size: 200%;
}

.r-star-o {
  background-position-x: 0;
  background-size: 200%;
}

/* //////////////////////// */
/* //////////////////////// */
/* //////////////////////// */
/* //////////////////////// */
/* //////////////////////// */

.flex-preset-1 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flex-preset-2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flex-justify-preset-1 {
  justify-content: space-between;
}

.flex-justify-preset-3 {
  justify-content: flex-end;
}

@media(max-width: 991px) {
  .flex-justify-preset-1 {
    justify-content: center;
  }

  .flex-justify-preset-2 {
    justify-content: center;
  }

  .flex-justify-preset-3 {
    justify-content: center;
  }
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-fill {
  flex: 1 1 auto;
}

/* //////////////////////// */
/* //////////////////////// */
/* //////////////////////// */
/* //////////////////////// */
/* //////////////////////// */

/* XL MAX */
@media(max-width: 1400px) {}

/* LG MAX */
@media(max-width: 1199px) {
  .product-start {
    flex: 0 0 calc(55% - 13px);
  }

  .product-end {
    flex: 0 0 calc(45% - 13px);
  }
}

/* MD MAX */
@media(max-width: 991px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1205;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background: rgba(9, 9, 9, 0.90);
    -webkit-backdrop-filter: blur(2.4px);
    backdrop-filter: blur(2.4px);
    background-clip: padding-box;
    outline: 0;
    top: 0;
    right: 0;
    width: 400px;
    border-left: 1px solid #000;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition: 0.3s;
  }

  .offcanvas.hiding,
  .offcanvas.show,
  .offcanvas.showing {
    visibility: visible;
  }

  .offcanvas.show:not(.hiding),
  .offcanvas.showing {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 25px;
    margin-bottom: 25px;
  }

  ul.navbar-menu {
    background-color: transparent;
    flex-direction: column;
    height: auto;
    align-items: center;
    margin: 15px auto;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .nav-logo {
    display: none;
  }

  .nav-item {
    padding: 12px;
  }

  .navbar-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    padding: 25px 50px;
    border-radius: 65px 65px 0 0;
    background: #000;
  }

  .navbar-rounded {
    border-radius: 65px;
  }

  .navbar-header p {
    color: #fff;
  }

  .faq-start {
    flex: 0 0 100%;
  }

  .faq-end {
    flex: 0 0 100%;
  }

  .faq-row {
    flex-wrap: wrap;
  }

  .accordion button {
    font-size: 18px;
  }

  .accordion .accordion-content p {
    font-size: 16px;
  }

  .footer-section:last-child {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-section {
    padding-bottom: 20px;
  }

  .text-center-mobile {
    text-align: center;
  }

  .pc-only {
    display: none !important;
  }

  .flex-preset-1 {
    flex-wrap: wrap;
  }

  .hero {
    padding: 50px 0;
  }

  .hero-row {
    flex-wrap: wrap;
  }

  .hero-start {
    flex: 0 0 100%;
  }

  .hero-end {
    flex: 0 0 100%;
  }

  .hero-start h1 {
    font-size: 40px;
    text-align: center;
  }

  .hero-start p {
    font-size: 14px;
    text-align: center;
  }

  .whyus-start {
    flex: 0 0 100%;
  }

  .whyus-end {
    flex: 0 0 100%;
  }

  .whyus-row {
    flex-wrap: wrap;
  }

  .breadcrumbs li+li::before {
    margin: 0 4px;
  }

  .product-row {
    flex-wrap: wrap;
  }

  .product-start {
    flex: 0 0 100%;
  }

  .product-end {
    flex: 0 0 100%;
  }

  .product-img {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
  }

  .review-info-header {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .review-info-header .time {
    margin: 0;
  }

  .contact-blocks {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gateway-options {
    flex-wrap: wrap;
  }

  .rl-row {
    flex-wrap: wrap;
  }

  .rl-start {
    flex: 0 0 100%;
  }

  .rl-end {
    flex: 0 0 100%;
  }

  .review-leave .inpt {
    width: 100%;
  }
}

/* SM MAX */
@media(max-width: 767px) {
  .footer-section:nth-child(3) {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-section {
    padding-bottom: 25px;
  }
}

/* XS MAX */
@media(max-width: 575px) {
  .accordion button {
    font-size: 16px;
  }

  .accordion .accordion-content p {
    font-size: 14px;
  }

  .footer-header {
    text-align: center;
  }

  .footer-section {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .footer-links,
  .footer-socials {
    justify-content: center;
    align-items: center;
  }

  .section-header {
    justify-content: center;
    flex-wrap: wrap;
  }

  .product-info {
    justify-content: center;
    flex-wrap: wrap;
  }

  .product-buy-header,
  .product-buy-footer {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* //////////////////////// */
/* //////////////////////// */
/* //////////////////////// */
/* //////////////////////// */
/* //////////////////////// */
/* XS MIN */
@media(min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/* SM MIN */
@media(min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

/* MD MIN */
@media(min-width: 992px) {
  .container {
    max-width: 960px;
  }

  .navbar-sticky {
    margin: 0 auto;
    position: sticky;
    padding: 12px 0;
    padding-bottom: 0;
    top: 12px;
  }

  .offcanvas-body {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
    border-radius: 65px 65px 0 0;
    background: #000;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }

  .navbar-sticky .offcanvas-body {
    border-radius: 65px;
  }

  .mobile-only {
    display: none !important;
  }

  .search .inpt {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 12px 16px;
    background: var(--s-bg);
    border: 1px solid #E8EAEA;
    border-radius: 10px;
    min-width: 395px;
  }

  .catalog-item {
    max-width: 625px;
  }
}

/* LG MIN */
@media(min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* XL MIN */
@media(min-width: 1270px) {
  .container {
    max-width: 1220px;
  }
}

@media(min-width: 1340px) {
  .container {
    max-width: 1280px;
  }
}

/* //////////////////////// */
/* //////////////////////// */
/* ////// ANIMATIONS ////// */
/* //////////////////////// */
/* //////////////////////// */
.spining {
  animation: spining 3s linear infinite;
}

@keyframes spining {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes motion {
  0% {
    transform: translate3d(-2%, 0, 0);
  }

  50% {
    transform: translate3d(0, -2%, 0);
  }

  100% {
    transform: translate3d(-2%, 0, 0);
  }
}

@keyframes breathing {
  0% {
    transform: scale(1);
    rotate: 0;
  }

  50% {
    transform: scale(0.95);
    rotate: 3deg;
  }

  100% {
    transform: scale(1);
    rotate: 0;
  }
}

@keyframes fading {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(1.005);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    transform: translate3d(0, 25%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownSmall {
  0% {
    opacity: 0;
    transform: translate3d(0, -25%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.animate__fadeInDownSmall {
  animation-name: fadeInDownSmall;
}

.animate__animated {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  /* -webkit-animation-fill-mode: both;
  animation-fill-mode: both; */
}