@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: rgba(222, 22, 22, 1);
  --green-color: rgba(10, 135, 0, 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);
}

.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-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;
}

.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%;
}

.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: 100px;
  padding: 0 10px;
  border-left: 1px solid var(--border-color);
  gap: 6px;
}

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

.btn-cart .count-product {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.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);
}

.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);
}

.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;
  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);
}

.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);
}

.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;
}

.section-new-product {
  margin-top: 70px;
  display: block;
}

.section-banner {
  display: block;
}

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

.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-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-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 45px 0;
}

.head-title {
  text-align: center;
  padding: 10px 16px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  border-radius: 5px;
  border-left: 3px solid rgba(var(--primary-color), 1);
  border-right: 3px solid rgba(var(--primary-color), 1);
}

.site-logo {
  width: 250px;
  height: 90px;
}

.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;
}

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

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

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

.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;
}

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

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

.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;
}

.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-text {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.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: center;
  background-size: cover;
  box-shadow: var(--shadow-md);
}

.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;
  border-radius: 5px;
  border-left: 3px solid #f5f5f5;
  color: #f5f5f5;
  display: inline;
  padding: 0 8px;
}

.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;
}

.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;
}

.headline-title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1.1px;
  border-radius: 5px;
  border-left: 3px solid rgba(var(--primary-color), 1);
  display: inline;
  padding: 0 8px;
}

.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);
}

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

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

.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);
}

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

.product-card {
  background: rgba(var(--white-color), 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-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);
}

.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);
}

.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;
}

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

.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);
}

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

.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);
}

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

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

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

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

.footer-menu-link {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--deep-color), 1);
  transition: color 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);
}

.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);
}

.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;
}

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

.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;
}

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

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

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

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

.about-assortment-card-content {
  color: #444;
}

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

.about-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.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;
}

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

.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;
}