@charset "UTF-8";

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Bowler";
  src: url("../font/Bowler.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

:root {
  --primary-color: 61, 59, 255;
  --secondary-color: 10, 10, 180;
  --body-primary-color: rgb(53, 22, 0);
  --body-secondary-color: rgba(249, 224, 167, 0.5);
  --red-color: rgb(236, 44, 44);
  --green-color: rgba(10, 135, 0, 1);
  --yellow-color: rgb(245, 205, 1);
  --white-color: 255, 255, 255;
  --catalog-title-color: rgba(245, 245, 245, 0.1);
  --deep-color: 42, 42, 42;
  --muted-color: 230, 230, 230;
  --gray-color: rgb(100, 100, 100);
  --border-color: rgb(100, 100, 100, 0.4);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, .1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, .15);
  --body-background: 238, 241, 245;
  --body-image: url("../img/body-background.webp");
  --hero-image: url("../img/hero-bg.webp");
  --demo-image: url("../img/main-banner.png");
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--white-color);
}

.no-scroll {
  overflow: hidden;
  touch-action: none;
}

.root {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  background-color: rgba(var(--body-background), 1);
  background-image: var(--body-image);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

main {
  flex: 1;
}

.btn {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  cursor: pointer;
}

.btn-eye {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  color: rgba(var(--primary-color), 1);
  top: 10px;
  left: 10px;
  transition: color 0.3s ease;
}

.btn-eye:hover {
  color: rgba(var(--secondary-color), 1);
}

.btn-eye svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.btn-social {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(var(--deep-color), 1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  color: rgba(var(--deep-color), 1);
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.btn-social:hover {
  color: rgba(var(--white-color), 1);
}

.btn-social-whatsapp:hover {
  background: #4caf50;
  border-color: #4caf50;
}

.btn-social-telegram:hover {
  background: #039be5;
  border-color: #039be5;
}

.btn-social-instagram:hover {
  background: #fd1d1d;
  border-color: #fd1d1d;
}

.btn-social svg {
  width: 70%;
  height: 70%;
  transition: width 0.3s ease, height 0.3s ease;
}

.btn-icon {
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.btn-icon svg {
  width: 20px;
  height: 20px;
}

.btn-cart {
  background: rgba(var(--muted-color), 1);
  border-top-right-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 90px;
  padding: 0 10px;
  border-left: 1px solid var(--border-color);
  position: relative;
  transition: width 0.3s ease, height 0.3s ease;
}

.btn-cart svg {
  width: 22px;
  height: 22px;
  color: rgba(var(--deep-color), 1);
  transition: width 0.3s ease, height 0.3s ease;
}

.btn-cart .count-product {
  position: absolute;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: white;
  background: #fd1d1d;
  border-radius: 50%;
  top: 10%;
  right: 25%;
  transition: all 0.3s ease;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  flex-direction: row;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  color: rgba(var(--white-color), 1);
}

.btn-primary {
  background: rgba(var(--primary-color), 1);
}

.btn-primary:hover {
  background: rgba(var(--secondary-color), 1);
}

.btn-secondary {
  background: var(--gray-color);
}

.btn-secondary:hover {
  background: rgba(var(--deep-color), 1);
}

.btn-sm {
  padding: 8px 12px !important;
  font-size: 12px !important;
}

.btn-sm-icon svg {
  width: 16px;
  height: 16px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar .taxonomy-description {
  font-size: 14px;
}

.box {
  width: 100%;
  position: relative;
  background-color: rgba(var(--white-color), 1);
  box-shadow: var(--shadow-md);
  padding: 40px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: padding 0.3s ease;
}

.box-sidebar {
  padding: 20px;
  background: rgba(var(--white-color), 0.5);
}

.widget-title {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.breadcrumbs {
  margin: 20px 0 30px;
  font-size: 14px;
  font-weight: 400;
}

.breadcrumbs span {
  color: rgba(var(--deep-color), 1);
}

.breadcrumbs a {
  color: rgba(var(--primary-color), 1);
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: rgba(var(--secondary-color), 1);
}

blockquote {
  margin: 20px 0;
  padding: 15px 25px;
  border-left: 4px solid #0073aa;
  
  background: #f9f9f9;
  font-style: italic;
  color: #555;
  border-radius: 4px;
}

blockquote p {
  margin: 0;
}

blockquote cite {
  display: block;
  margin-top: 8px;
  font-size: 0.9em;
  color: #888;
  text-align: right;
}

.fly-cart {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
  z-index: 10010;
}

.section {
  width: 100%;
  position: relative;
  margin: 0 auto;
  max-width: 1480px;
}

.section-head {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
}

.section-hero {
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background-color: rgba(var(--white-color), 1);
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.section-demo {
  border-radius: var(--radius-lg);
  margin-top: 70px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(var(--white-color), 1);
  box-shadow: var(--shadow-md);
  padding: 20px 40px;
  transition: margin 0.3s ease, padding 0.3s ease;
}

.section-new-product {
  margin-top: 70px;
  display: block;
  transition: margin 0.3s ease;
}

.section-banner {
  display: block;
}

.section-page {
  display: flex;
  width: 100%;
}

.section-cart {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 60px;
}

header,
main,
footer {
  transition: padding 0.3s ease;
}

.head-mobile {
  display: none;
  margin-left: 18px;
  cursor: pointer;
}

.head-menu {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  background: rgba(var(--white-color), 1);
  color: rgba(var(--deep-color), 1);
  box-shadow: var(--shadow-md);
}

.head-menu-wrapper {
  z-index: 10001;
}

.head-menu-wrapper.fixed {
  will-change: transform, top;
  position: fixed;
  top: 0;
  padding-top: 14px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  max-width: 1480px;
  width: 100%;
}

.head-menu-close {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.head-menu-close::before,
.head-menu-close::after {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 28px;
  height: 2px;
  background: rgba(var(--deep-color), 1);
  border-radius: 2px;
}

.head-menu-close::before {
  transform: rotate(45deg);
}

.head-menu-close::after {
  transform: rotate(-45deg);
}

.head-menu-inner.active {
  transform: translateX(0);
}

.head-menu-block {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.head-menu-item:first-child {
  border-top-left-radius: var(--radius-lg);
  border-bottom-left-radius: var(--radius-lg);
  overflow: hidden;
}

.head-menu-link {
  height: 50px;
  padding: 0 16px;
  background: transparent;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--deep-color), 1);
}

.head-menu-link:hover {
  background: rgba(var(--muted-color), 1);
  color: rgba(var(--primary-color), 1);
}

.head-menu-action {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.head-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.head-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.head-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 45px 0;
  transition: padding 0.3s ease;
  gap: 40px;
}

.head-title {
  text-align: center;
  padding: 10px 16px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  transition: font-size 0.3s ease, padding 0.3s ease;
}

.site-logo {
  width: 250px;
  height: 90px;
  transition: all 0.3s ease;
}

.site-logo a {
  text-decoration: none;
}

.site-logo a img {
  width: 100%;
  height: auto;
}

.site-title a {
  text-decoration: none;
  color: rgba(var(--primary-color), 1);
  font-size: 45px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.site-title a:hover {
  color: rgba(var(--secondary-color), 1);
}

.site-phone {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-phone-title {
  color: var(--gray-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.site-phone-title svg {
  width: 14px;
  height: 14px;
}

.site-phone-title span {
  font-size: 16px;
  font-weight: 400;
  transition: font-size 0.3s ease;
}

.site-phone-number a {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(var(--primary-color), 1);
  transition: font-size 0.3s ease;
}

.hero-info {
  flex: 1;
  gap: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: gap 0.3s ease;
}

.hero-info-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  transition: gap 0.3s ease;
}

.hero-info-text-tags {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.hero-info-text-tags-item {
  background: rgba(var(--muted-color), 1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 8px 16px;
  transition: font-size 0.3s ease, padding 0.3s ease;
}

.hero-info-text-title {
  font-size: 44px;
  font-weight: 400;
  word-wrap: break-word;
  transition: font-size 0.3s ease;
}

.hero-info-text-description {
  font-size: 18px;
  font-weight: 400;
  transition: font-size 0.3s ease;
}

.hero-info-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image-content {
  max-width: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: max-width 0.3s ease;
}

.hero-image-content img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.demo-item {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}

.demo-item-image {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s ease, height 0.3s ease;
}

.demo-item-image img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.demo-item-text {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: font-size 0.3s ease;
}

.demo-banner {
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  background-color: rgba(var(--white-color), 1);
  background-image: var(--demo-image);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  box-shadow: var(--shadow-md);
  transition: padding 0.3s ease, gap 0.3s ease;
}

.demo-banner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-between;
}

.demo-banner-title {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 1.1px;
  color: #f5f5f5;
  display: inline;
  padding: 0 8px;
  transition: font-size 0.3s ease;
}

.demo-banner-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 240px;
  text-align: center;
  padding: 20px 25px;
  border-radius: var(--radius-lg);
  color: #f5f5f5;
  font-weight: 400;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, font-size 0.3s ease;
}

.demo-banner-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 6px 35px rgba(0, 0, 0, 0.6);
}

.headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  transition: margin-bottom 0.3s ease;
}

.headline-title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1.1px;
  display: inline;
  padding: 0 8px;
  transition: font-size 0.3s ease;
}

.product-list {
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.product-list .product-card {
  flex: 1 1 calc(25% - 30px);
  transition: flex 0.3s ease;
}

.catalog {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 50px;
  transition: gap 0.3s ease;
}

.catalog-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-end;
  gap: 40px;
  transition: gap 0.3s ease;
}

.catalog-found {
  flex: 1 1 calc(75% - 40px);
  text-align: center;
}

.catalog-found h2 {
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
}

.catalog-filter {
  flex: 1 1 calc(25% - 40px);
  transition: width 0.3s ease;
}

.catalog-products {
  flex: 1 1 calc(75% - 40px);
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: width 0.3s ease;
}

.product-card {
  background: rgba(var(--white-color), 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  width: 320px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
}

.product-card-tags-in-stock {
  font-size: 12px;
  font-weight: 400;
  padding: 4px 8px;
  color: rgba(var(--white-color), 1);
  background-color: var(--green-color);
  position: relative;
  border-radius: var(--radius-md);
}

.product-card-view {
  position: relative;
  width: 100%;
  height: 310px;
  overflow: hidden;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  transition: width 0.3s ease, height 0.3s ease;
}

.product-card-view img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-card-info {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product-card-info-top {
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
}

.product-card-info-bottom {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
}

.product-card-title {
  font-size: 17px;
  font-weight: 500;
  color: rgba(var(--deep-color), 1);
  transition: font-size 0.3s ease;
}

.product-card-article {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-color);
}

.product-card-price {
  display: flex;
  gap: 6px;
  flex-direction: column;
  align-items: flex-start;
}

.product-card-price-old {
  font-size: 14px;
  color: var(--gray-color);
  text-decoration: line-through;
  transition: font-size 0.3s ease;
}

.product-card-price-new {
  font-size: 20px;
  font-weight: 600;
  color: var(--red-color);
  transition: font-size 0.3s ease;
}

.footer {
  width: 100%;
  position: relative;
  margin: 60px auto 0;
  max-width: 1480px;
  background-color: rgba(var(--white-color), 1);
  box-shadow: var(--shadow-md);
  padding: 40px;
  display: flex;
  gap: 40px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: gap 0.3s ease, width 0.3s ease;
}

.footer-item:nth-child(1) {
  width: 25%;
}

.footer-item:nth-child(2) {
  width: 50%;
  display: flex;
  align-items: center;
}

.footer-item:nth-child(3) {
  width: 25%;
}

.footer-logo {
  width: 100%;
  background: transparent;
}

.footer-description {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-color);
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-color);
  transition: font-size 0.3s ease, padding-bottom 0.3s ease;
}

.footer-copyright {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-color);
}

.footer-title {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--gray-color);
  transition: font-size 0.3s ease;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 45px;
  transition: gap 0.3s ease;
}

.footer-menu-block {
  display: flex;
  gap: 18px;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  transition: gap 0.3s ease;
}

.footer-menu-link {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--deep-color), 1);
  transition: color 0.3s ease, font-size 0.3s ease;
}

.footer-menu-link:hover {
  color: rgba(var(--primary-color), 1);
}

.footer-social {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-color);
  transition: padding-bottom 0.3s ease;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--deep-color), 1);
  transition: font-size 0.3s ease, gap 0.3s ease;
}

.footer-contact-item {
  display: flex;
  flex-direction: row;
  gap: 8px;
  transition: color 0.3s ease;
}

.footer-contact-item a,
.footer-contact-item span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.footer-contact-item a:hover {
  color: rgba(var(--primary-color), 1);
}

.about {
  background: #f9f9f9;
  color: #222;
  line-height: 1.6;
  padding: 60px 20px;
  transition: padding 0.3s ease;
}

.about-title {
  text-align: center;
  font-size: 44px;
  margin-bottom: 20px;
  color: #111;
  letter-spacing: 1px;
  transition: font-size 0.3s ease;
}

.about-name {
  color: rgba(var(--primary-color), 1);
  font-weight: 600;
  text-transform: uppercase;
}

.about-description {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #555;
  transition: font-size 0.3s ease, margin 0.3s ease;
}

.about-chapter {
  font-size: 32px;
  color: #111;
  text-align: center;
  margin-bottom: 40px;
  transition: font-size 0.3s ease, margin 0.3s ease;
}

.about-assortment {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  transition: gap 0.3s ease, margin-bottom 0.3s ease;
}

.about-assortment-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: padding 0.3s ease;
}

.about-assortment-card-title {
  color: rgba(var(--primary-color), 1);
  font-size: 22px;
  transition: font-size 0.3s ease;
}

.about-assortment-card-content {
  color: #444;
  transition: font-size 0.3s ease, line-height 0.3s ease;
}

.about-content {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: #555;
  transition: font-size 0.3s ease, margin 0.3s ease;
}

.about-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  transition: gap 0.3s ease, font-size 0.3s ease;
}

.about-reviews-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: padding 0.3s ease;
}

.about-reviews-card-text {
  font-style: italic;
  color: #444;
}

.about-reviews-card-user {
  text-align: right;
  margin-top: 15px;
  color: rgba(var(--primary-color), 1);
  font-weight: 600;
}

.about-conclusion {
  text-align: center;
  margin-top: 80px;
  transition: margin 0.3s ease;
}

.about-conclusion-text {
  font-size: 20px;
  color: #333;
  font-weight: 500;
  margin-bottom: 20px;
  transition: font-size 0.3s ease;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-direction: row;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: #fff;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.pagination span.current,
.pagination a:hover {
  background: rgba(var(--primary-color), 1);
  color: #fff;
}

.widget-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.widget-category-list-children {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 0 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.widget-category-list-children.open {
  max-height: 500px;
  opacity: 1;
  margin-top: 16px;
  margin-bottom: 16px;
}

.widget-category-item {
  border-left: 3px solid rgba(var(--primary-color), 1);
  background: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 0;
}

.widget-category-item-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.widget-category-item-link a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--deep-color), 1);
  transition: color 0.3s ease;
}

.widget-category-item-link a:hover {
  color: rgba(var(--primary-color), 1);
}

.toggle-category {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.toggle-category.open {
  transform: rotate(90deg);
  color: rgba(var(--primary-color), 1);
}

.toggle-category svg {
  width: 14px;
  height: 14px;
}

.product {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  transition: gap 0.3s ease;
}

.product-actions {
  display: flex;
  flex-direction: row;
  gap: 50px;
  width: 100%;
  transition: gap 0.3s ease;
}

.product-view {
  flex: 1 1 calc(33.333% - 50px);
}

.product-params {
  flex: 1 1 calc(66.666% - 50px);
  display: flex;
  flex-direction: row;
}

.product-params-items {
  flex: 1 1 calc(55% - 30px);
  margin-right: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: margin 0.3s ease;
}

.product-params-items-title {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--gray-color);
}

.product-params-items-content {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.product-params-items-content li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-color);
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.product-params-items-content li span:first-child {
  color: var(--gray-color);
  font-weight: 500;
}

.product-params-items-content li span:last-child {
  font-weight: 400;
}

.product-params-items-content li span {
  font-size: 14px;
  flex: 1 1 50%;
}

.product-params-items-content li:last-child {
  border-bottom: none;
}

.product-params-data {
  flex: 1 1 calc(45% - 30px);
  padding-left: 40px;
  border-left: 1px solid var(--border-color);
  transition: padding 0.3s ease;
}

.product-params-data-article {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.product-params-data-article span:first-child {
  font-size: 12px;
  font-weight: 400;
  padding: 4px 8px;
  position: relative;
  border-radius: var(--radius-md);
}

.product-params-data-article span:first-child.success {
  color: rgba(var(--white-color), 1);
  background-color: var(--green-color);
}

.product-params-data-article span:first-child.fail {
  color: rgb(0, 0, 0);
  background-color: var(--yellow-color);
}

.product-params-data-article span:last-child {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-color);
}

.product-params-data-prices {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.product-params-data-prices .prices-new {
  font-size: 26px;
  font-weight: 600;
  color: var(--red-color);
}

.product-params-data-prices .prices-old {
  font-size: 16px;
  color: var(--gray-color);
  text-decoration: line-through;
  border-left: 1px solid var(--gray-color);
  padding-left: 10px;
}

.product-params-data-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  gap: 30px;
}

.product-image {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

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

.product-description-title {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--gray-color);
  transition: font-size 0.3s ease;
}

.product-description-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  line-height: 1.2;
  transition: font-size 0.3s ease;
}

.product-description-content p {
  text-indent: 25px;
}

.product-description-content ul {
  list-style-type: none;
  text-indent: 25px;
}

.product-description-content ul li::before {
  content: "—";
  margin-right: 5px;
}

.counter {
  width: 120px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.counter-minus,
.counter-plus,
.counter-number {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  font-family: monospace, sans-serif;
  font-size: 20px;
}

.counter-minus,
.counter-plus {
  background-color: rgba(0, 0, 0, 0.2);
  flex: 1 1 30%;
  cursor: pointer;
}

.counter-number {
  flex: 1 1 40%;
}

.bi-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10011;
}

.bi-lightbox.is-open {
  display: block;
}

.bi-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.bi-lightbox-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bi-lightbox-toolbar {
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
}

.bi-lightbox-toolbar .bi-btn {
  background: #222;
  color: #fff;
  border: 0;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 32px;
  line-height: 0;
  transition: background 0.3s ease;
}

.bi-lightbox-toolbar .bi-btn.is-active {
  outline: 2px solid #fff;
}

.bi-lightbox-toolbar .bi-btn:hover {
  background: #444;
}

.bi-lightbox-toolbar .bi-btn .icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  vertical-align: middle;
}

.bi-lightbox-thumbs {
  display: flex;
  gap: 8px;
  padding: 0 12px;
  overflow-x: auto;
  scrollbar-width: none;
  z-index: 2;
  justify-content: center;
}

.bi-lightbox-thumbs::-webkit-scrollbar {
  display: none;
}

.bi-lightbox-thumbs img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.8;
  border: 2px solid transparent;
  flex: 0 0 auto;
  transition: opacity 0.3s ease;
}

.bi-lightbox-thumbs img:hover {
  opacity: 1;
}

.bi-lightbox-thumbs img.is-current {
  border-color: #ff4747;
  opacity: 1;
}

.bi-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.bi-lightbox-arrow:hover {
  background: #555;
}

.bi-lightbox-arrow .icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.bi-lightbox-arrow.bi-left {
  left: 10px;
}

.bi-lightbox-arrow.bi-right {
  right: 10px;
}

.bi-lightbox-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.bi-lightbox-img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  will-change: transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  transform-origin: center center;
  transition: transform 0.08s linear;
}

.hamburger {
  position: relative;
  width: 20px;
  height: 16px;
  cursor: pointer;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgba(var(--deep-color), 1);
  transition: all 0.3s ease;
}

.hamburger::before {
  box-shadow: 0 8px rgba(var(--deep-color), 1);
}

.hamburger::after {
  transform: translateY(16px);
}

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

.cart-empty {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.cart-empty h3 {
  font-size: 28px;
  font-weight: 400;
}

.cart-empty img {
  width: 250px;
  height: auto;
}

.cart-table {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.cart-table-header,
.cart-table-item {
  display: grid;
  grid-template-columns: 10% 32% 17% 17% 17% 7%;
  align-items: center;
  border-bottom: 1px solid var(--gray-color);
}

.cart-table-header {
  font-weight: 600;
  color: rgb(0, 0, 0);
  padding-bottom: 15px;
  font-size: 15px;
}

.cart-table-item {
  padding: 18px 0;
  color: var(--gray-color);
  font-size: 14px;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}

.cart-table-item.delete {
  animation-name: removeItemAnimated;
}

.cart-table-item .image {
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 5px;
}

.cart-table-item .image a {
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.cart-table-item .image a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cart-table-item .title {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  padding-right: 20px;
}

.cart-table-item .title-article {
  font-size: 13px;
  color: var(--deep-color);
}

.cart-table-item .title-name a {
  color: inherit;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.cart-table-item .title-name a:hover {
  color: rgba(var(--primary-color), 1);
}

.cart-table-item .price,
.cart-table-item .sum {
  font-size: 18px;
}

.cart-table-item .price:before {
  display: none;
  content: "Цена:";
}

.cart-table-item .sum {
  font-weight: 500;
  color: var(--red-color);
}

.cart-table-item .sum:before {
  display: none;
  content: "Стоймость:";
}

.cart-table-item .remote {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-color);
  cursor: pointer;
  transition: background 0.3s ease;
}

.cart-table-item .remote:hover {
  background: #ff4141;
}

.cart-table-item .remote:before {
  content: "×";
  font-size: 25px;
  font-weight: 700;
  color: white;
}

.cart-table-total {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.cart-table-total .text,
.cart-table-total .total {
  font-size: 22px;
}

.cart-table-total .total {
  font-weight: 600;
}

.cart-form {
  padding: 0 40px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s ease;
  box-sizing: border-box;
  width: 100%;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-form.open {
  padding: 40px;
  max-height: 800px;
  opacity: 1;
}

.cart-form-wrapper,
.cart-form-info {
  display: flex;
  flex-direction: column;
}

.cart-form-wrapper {
  max-width: 600px;
  gap: 30px;
}

.cart-form-info {
  width: 100%;
  gap: 10px;
  align-items: center;
}

.cart-form-title {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 1.1px;
  color: rgb(0, 0, 0);
  display: inline;
}

.cart-form-description {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-color);
  display: inline;
  text-align: center;
}

@keyframes removeItemAnimated {
  0% {
    opacity: 1;
    transform: translateX(0);
    height: auto;
  }

  50% {
    opacity: 0.3;
    transform: translateX(40px);
  }

  100% {
    opacity: 0;
    transform: translateX(80px);
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
}

.input-field {
  position: relative;
}

.input-field input,
.input-field textarea {
  width: 100%;
  border: 1px solid var(--gray-color);
  padding: 12px 14px;
  font-size: 16px;
  border-radius: var(--radius-md);
  background: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.input-field input:focus,
.input-field textarea:focus {
  border-color: rgba(var(--primary-color), 1);
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.input-field textarea {
  resize: none;
}

.input-field label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
  pointer-events: none;
  transition: 0.25s;
  color: #888;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 3px;
}

.input-field input:required + label:after {
  content: "*";
  color: red;
  margin-top: -3px;
}

.input-field input:not(:-moz-placeholder) + label,
.input-field textarea:not(:-moz-placeholder) + label {
  top: -6px;
  left: 12px;
  font-size: 12px;
  padding: 0 4px;
  background: #fff;
  color: rgba(var(--primary-color), 1);
}

.input-field input:focus + label,
.input-field input:not(:placeholder-shown) + label,
.input-field textarea:focus + label,
.input-field textarea:not(:placeholder-shown) + label {
  top: -6px;
  left: 12px;
  font-size: 12px;
  padding: 0 4px;
  background: #fff;
  color: rgba(var(--primary-color), 1);
}

.contact-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}

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

.contact-cards .box {
  padding: 15px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  width: 350px;
  border-radius: 10px;
}

.contact-cards .box:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.12);
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-item-img {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fff, #f6faf9);
  border: 1px solid rgba(16, 24, 32, 0.04);
  box-shadow: 0 4px 10px rgba(11, 16, 19, 0.04);
  overflow: hidden;
}

.contact-item-img img {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.contact-item-content h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
  line-height: 1;
}

.contact-item-content a {
  color: rgba(var(--primary-color), 1);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.contact-item-content a:hover {
  color: rgba(var(--secondary-color), 1);
}

.contact-form-wrapper {
  padding: 15px;
  width: 600px;
  border-radius: 10px;
  background-color: rgba(var(--white-color), 1);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  gap: 30px;
  display: flex;
  flex-direction: column;
}

.contact-form-info {
  width: 100%;
  gap: 10px;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.contact-form-title {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 1.1px;
  color: rgb(0, 0, 0);
  display: inline;
}

.contact-form-description {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-color);
  display: inline;
  text-align: center;
}

.not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  flex-direction: column;
}

.not-found h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1.1px;
}

.not-found a {
  color: rgba(var(--primary-color), 1);
  font-weight: 500;
  transition: color 0.3s ease;
}

.not-found a:hover {
  color: rgba(var(--secondary-color), 1);
}

.header-search {
  flex-grow: 1;
  max-width: 350px;
  margin: 3px 30px;
}

.header-search .input-group {
  display: flex;
  align-items: center;
  background-color: rgba(var(--white-color), 0.15);
  border: 1px solid rgba(var(--muted-color), 0.7);
  border-radius: var(--radius-lg);
  padding: 3px;
  transition: all 0.3s ease;
}

.header-search .input-group:focus-within {
  background-color: rgb(var(--white-color));
  border-color: rgba(var(--primary-color), 1);
  box-shadow: 0 4px 12px rgba(75, 76, 238, 0.15);
}

.header-search input.search-field {
  width: 100%;
  border: none;
  background: transparent;
  padding: 8px 20px;
  font-size: 14px;
  color: #333;
  outline: none;
}

.header-search input.search-field::-moz-placeholder {
  color: #999;
}

.header-search input.search-field::placeholder {
  color: #999;
}

.header-search button.search-submit {
  background-color: rgba(var(--primary-color), 1);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.header-search button.search-submit:hover {
  background-color: rgba(var(--primary-color), 0.6);
}

.header-search button.search-submit svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

.search-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.search-content-header {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

.search-content-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

@media (max-width: 1480px) {
  header,
  main,
  footer {
    padding: 0 30px;
  }

  .head-menu-wrapper.fixed {
    left: 0;
    transform: none;
    padding: 14px 30px 0;
  }

  .footer {
    border-radius: 0;
  }

  .product-params-data-action {
    flex-direction: column;
  }
}

@media (max-width: 1400px) {
  .hero-info-text {
    gap: 30px;
  }

  .hero-info-text-title {
    font-size: 36px;
  }

  .hero-info-text-description {
    font-size: 16px;
  }

  .hero-image-content {
    max-width: 500px;
  }

  .catalog {
    gap: 30px;
  }

  .catalog-list {
    gap: 30px;
  }

  .product-card-view {
    height: 290px;
  }

  .product-card-title {
    font-size: 15px;
  }

  .product {
    gap: 40px;
  }

  .product-actions {
    gap: 40px;
  }
}

@media (max-width: 1200px) {
  .btn-primary,
  .btn-secondary {
    padding: 10px 24px;
    font-size: 14px;
  }

  .box {
    padding: 30px;
  }

  .section-hero {
    padding: 30px;
    gap: 30px;
  }

  .section-demo {
    margin-top: 45px;
    padding: 20px 30px;
  }

  .section-new-product {
    margin-top: 45px;
  }

  .head-info {
    padding: 30px 0;
  }

  .head-title {
    font-size: 18px;
    padding: 10px 14px;
  }

  .hero-info {
    gap: 50px;
  }

  .hero-info-text {
    gap: 25px;
  }

  .hero-info-text-tags-item {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hero-info-text-title {
    font-size: 30px;
  }

  .hero-info-text-description {
    font-size: 14px;
  }

  .demo-item-image {
    width: 35px;
    height: 35px;
  }

  .demo-item-text {
    font-size: 14px;
  }

  .demo-banner {
    padding: 30px;
    gap: 30px;
  }

  .demo-banner-title {
    font-size: 22px;
  }

  .demo-banner-item {
    font-size: 14px;
    padding: 10px 15px;
  }

  .headline {
    margin-bottom: 20px;
  }

  .headline-title {
    font-size: 24px;
  }

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

  .catalog-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .catalog-filter {
    flex: 1 1 calc(35% - 40px);
  }

  .catalog-products {
    flex: 1 1 calc(65% - 40px);
  }

  .product-card-view {
    height: 240px;
  }

  .product-card-title {
    font-size: 14px;
  }

  .product-card-price-old {
    font-size: 13px;
  }

  .product-card-price-new {
    font-size: 18px;
  }

  .about {
    padding: 40px 20px;
  }

  .about-title {
    font-size: 40px;
  }

  .about-description {
    font-size: 16px;
    margin: 0 auto 40px;
  }

  .about-chapter {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .about-assortment {
    gap: 20px;
    margin-bottom: 40px;
  }

  .about-assortment-card {
    padding: 25px;
  }

  .about-assortment-card-title {
    font-size: 20px;
  }

  .about-assortment-card-content {
    font-size: 15px;
    line-height: 1.4;
  }

  .about-content {
    margin: 0 auto 40px;
    font-size: 15px;
  }

  .about-reviews {
    gap: 20px;
    font-size: 15px;
  }

  .about-reviews-card {
    padding: 20px;
  }

  .about-conclusion {
    margin-top: 60px;
  }

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

  .product-view {
    flex: 1 1 40%;
  }

  .product-params {
    flex: 1 1 60%;
    flex-direction: column-reverse;
    gap: 30px;
  }

  .product-params-items {
    margin-right: 30px;
  }

  .product-params-data {
    padding-left: 0;
    border-left: unset;
  }

  .product-params-data-action {
    flex-direction: row;
  }

  .product-description-content {
    font-size: 14px;
  }

  .cart-table-item .title {
    gap: 14px;
    padding-left: 20px;
  }

  .cart-table-item .price,
  .cart-table-item .sum {
    gap: 16px;
  }

  .cart-form {
    padding: 0 50px;
  }

  .cart-form.open {
    padding: 30px;
  }

  .cart-form-title {
    font-size: 22px;
  }

  .contact-wrapper {
    gap: 20px;
  }

  .contact-cards .box {
    width: 310px;
  }
}

@media (max-width: 992px) {
  .btn-social {
    width: 35px;
    height: 35px;
  }

  .btn-social svg {
    width: 65%;
    height: 65%;
  }

  .btn-cart {
    height: 40px;
    width: 80px;
  }

  .btn-cart svg {
    width: 20px;
    height: 20px;
  }

  .btn-cart .count-product {
    font-size: 13px;
    width: 16px;
    height: 16px;
  }

  .box {
    padding: 20px;
  }

  .widget-title {
    font-size: 16px;
  }

  .section-hero {
    flex-direction: column-reverse;
    padding: 20px;
  }

  .section-demo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  header,
  main,
  footer {
    padding: 0 20px;
  }

  .head-menu-wrapper.fixed {
    left: 0;
    transform: none;
    padding: 14px 20px 0;
  }

  .head-menu-link {
    height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .head-info {
    padding: 20px 0;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .head-title {
    order: 3;
  }

  .site-logo {
    width: 200px;
    height: 71px;
  }

  .site-phone-title span {
    font-size: 14px;
  }

  .site-phone-number a {
    font-size: 18px;
  }

  .hero-info-text {
    font-size: 22px;
  }

  .hero-info-text-title {
    font-size: 28px;
  }

  .hero-image {
    display: none;
  }

  .demo-banner-item {
    flex: 1 1 100%;
  }

  .product-list {
    gap: 45px;
    justify-content: space-evenly;
  }

  .product-list .product-card {
    flex: 1 1 calc(50% - 45px);
  }

  .catalog {
    flex-direction: column;
  }

  .catalog-list {
    justify-items: center;
  }

  .product-card-view {
    height: 310px;
  }

  .product-card-title {
    font-size: 16px;
  }

  .product-card-price-old {
    font-size: 14px;
  }

  .product-card-price-new {
    font-size: 20px;
  }

  .footer-item {
    gap: 15px;
  }

  .footer-item:nth-child(2) {
    width: 45%;
  }

  .footer-item:nth-child(3) {
    width: 30%;
  }

  .footer-description {
    font-size: 13px;
    padding-bottom: 15px;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-menu {
    gap: 30px;
  }

  .footer-menu-block {
    gap: 16px;
  }

  .footer-menu-link {
    font-size: 15px;
  }

  .footer-social {
    padding-bottom: 15px;
  }

  .footer-contact {
    font-size: 13px;
    gap: 6px;
  }

  .about-assortment {
    grid-template-columns: repeat(1, 1fr);
  }

  .about-reviews {
    grid-template-columns: repeat(1, 1fr);
  }

  .product-actions {
    flex-direction: column;
    align-items: center;
  }

  .product-view {
    flex: unset;
    max-width: 580px;
  }

  .product-params {
    flex: unset;
  }

  .product-params-items {
    gap: 10px;
  }

  .product-params-items-title {
    font-size: 16px;
  }

  .product-description-title {
    font-size: 16px;
  }

  .cart-empty h3 {
    font-size: 24px;
  }

  .cart-table-header {
    display: none;
  }

  .cart-table-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    position: relative;
  }

  .cart-table-item .title {
    padding: 0;
  }

  .cart-table-item .price,
  .cart-table-item .sum {
    display: flex;
    gap: 5px;
    font-size: 16px;
  }

  .cart-table-item .price:before {
    display: block;
  }

  .cart-table-item .counter {
    position: absolute;
    top: 18px;
    right: 20%;
  }

  .cart-table-item .sum:before {
    display: block;
  }

  .cart-table-item .remote {
    position: absolute;
    top: 18px;
    right: 0;
  }

  .cart-form {
    padding: 0 20px;
  }

  .cart-form.open {
    padding: 20px;
  }

  .contact-form-wrapper {
    width: 400px;
  }

  .contact-form-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .head-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .head-menu-close {
    display: block;
  }

  .head-menu-inner {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    z-index: 10001;
    background: rgba(var(--white-color), 1);
    padding: 60px 20px 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow: hidden;
  }

  .head-menu-block {
    flex-direction: column;
    gap: 30px;
  }

  .head-menu-item {
    width: 100%;
  }

  .head-menu-item:first-child {
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
  }

  .head-menu-link {
    font-size: 16px;
  }

  .hero-info-text {
    font-size: 20px;
  }

  .hero-info-text-title {
    font-size: 26px;
  }

  .product-list .product-card {
    flex: 1 1 100%;
  }

  .footer {
    flex-wrap: wrap;
  }

  .footer-item {
    gap: 5px;
  }

  .footer-item:nth-child(1) {
    width: 100%;
    order: 3;
  }

  .footer-item:nth-child(2) {
    width: calc(50% - 30px);
    order: 1;
  }

  .footer-item:nth-child(3) {
    width: calc(50% - 30px);
    order: 2;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-description {
    padding-bottom: unset;
    border-bottom: unset;
    text-align: center;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-menu {
    gap: 10px;
  }

  .footer-menu-block {
    gap: 6px;
  }

  .footer-menu-link {
    font-size: 14px;
  }

  .footer-social {
    padding-bottom: unset;
    border-bottom: unset;
  }

  .about-title {
    font-size: 32px;
  }

  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-cards .box {
    width: 350px;
  }

  .contact-form-wrapper {
    width: 530px;
  }
}

@media (max-width: 576px) {
  .section-demo {
    display: none;
  }

  .head-info {
    justify-content: center;
  }

  .site-phone {
    display: none;
  }

  .hero-info-text {
    font-size: 18px;
  }

  .hero-info-text-tags {
    display: none;
  }

  .hero-info-text-title {
    font-size: 24px;
  }

  .hero-info-text-description {
    font-size: 13px;
  }

  .product-card {
    max-width: unset;
    width: 100%;
  }

  .product-card-view {
    height: 370px;
  }

  .footer {
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .footer-item:nth-child(3) {
    width: 100%;
    gap: 15px;
    align-items: center;
  }

  .footer-menu-block {
    align-items: center;
  }

  .footer-contact {
    gap: 8px;
    align-items: center;
  }

  .about {
    padding: 20px;
  }

  .about-title {
    font-size: 28px;
  }

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

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

  .about-chapter {
    margin-bottom: 20px;
  }

  .about-assortment-card {
    padding: 15px;
  }

  .about-assortment-card-title {
    font-size: 16px;
  }

  .about-assortment-card-content {
    font-size: 14px;
    line-height: 1.3;
  }

  .about-content {
    font-size: 14px;
  }

  .about-reviews-card {
    padding: 15px;
    font-size: 14px;
  }

  .about-conclusion-text {
    font-size: 16px;
  }

  .product-params-data-action {
    gap: 20px;
    flex-direction: column;
  }

  .contact-cards {
    width: 100%;
  }

  .contact-cards .box {
    width: 100%;
  }

  .contact-form-wrapper {
    width: 100%;
  }
}

@media (max-width: 320px) {
  .about {
    padding: 10px;
  }
}