:root {
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --accent: #ec4899;
  --bg-body: #f8fafc;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  margin: 30px;
}

.btn-primary {
  background-color: orange;
  color: rgb(255, 255, 255);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: var(--text-main);
  border: 1px solid #e2e8f0;
  margin-left: 10px;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-small {
  padding: 8px 20px;
  font-size: 14px;
  background: var(--text-main);
  color: white;
}

.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
}

.logo span {
  color: var(--primary);
}

.nav-menu a {
  margin: 0 15px;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-menu a:hover {
  color: var(--primary);
}

.hero-section {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.gradient-text {
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-text p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 450px;
}

.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-bg {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #e0e7ff, #fce7f3);
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}

.floating-card {
  position: relative;
  z-index: 2;
  background: white;
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 6s ease-in-out infinite;
}

.floating-card span {
  font-size: 30px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 800;
}

.text-left {
  text-align: left;
}

.bg-light {
  background-color: white;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.cat-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border: 1px solid transparent;
}

.cat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.cat-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.cat-card h3 {
  font-size: 18px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.abstract-shape {
  width: 100%;
  height: 300px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.8;
}


.tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e0e7ff;
  color: var(--primary, #4f46e5);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.product-content h3 {
  margin: 0 0 15px 0;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--text-main, #1e293b);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.benefits-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text-muted, #64748b);
  font-size: 14px;
  line-height: 1.5;
}

.benefits-list li::before {
  content: "•";
  color: var(--primary, #4f46e5);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
}

.price {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main, #1e293b);
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: var(--text-main, #1e293b);
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon:hover {
  background: var(--primary, #4f46e5);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .product-card-body {
    flex-direction: column;
  }

  .product-img-wrapper {
    flex: none;
    height: 250px;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: var(--radius-lg);
}

.feature-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.feature-item p {
  color: var(--text-muted);
}

.story-box {
  background: var(--text-main);
  color: white;
  padding: 60px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.story-box p {
  max-width: 600px;
  margin: 20px auto;
  font-size: 18px;
  opacity: 0.9;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.stats span {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: orange;
}

.form-wrapper {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.modern-form {
  margin-top: 30px;
  text-align: left;
}

.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 16px;
  outline: none;
  transition: 0.3s;
  background: transparent;
}

.input-group label {
  position: absolute;
  left: 15px;
  top: 15px;
  color: #94a3b8;
  pointer-events: none;
  transition: 0.3s;
  background: var(--bg-body);
  padding: 0 5px;
}

.input-group input:focus {
  border-color: var(--primary);
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label {
  top: -10px;
  font-size: 12px;
  color: var(--primary);
}

.full-width {
  width: 100%;
}

.footer {
  background: white;
  padding: 40px 0;
  border-top: 1px solid #e2e8f0;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-col a {
  margin-left: 20px;
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--primary);
}

.socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.icon:hover {
  transform: translateY(-3px);
}

.icon svg {
  display: block;
}

@media (max-width: 768px) {

  .hero-grid,
  .split-layout,
  .features-grid,
  .footer-content {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn-secondary {
    margin-left: 0;
  }

  .nav-menu {
    display: none;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-col a {
    margin: 0 10px;
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.cat-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 15px;
  text-align: center;
}

.card-content h3 {
  margin: 0 0 5px;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.card-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.nav__link {
  text-decoration: none;
  font-weight: 500;
  color: #3D3A3A;
  transition: color 0.2s;
  font-size: 1rem;
}

.nav__link:hover {
  color: #E05A3A;
}

.header__icons {
  display: flex;
  gap: 20px;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #3C3C3C;
  transition: color 0.2s;
}

.icon-btn:hover {
  color: #E05A3A;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 2px;
  background: #2D2A2A;
  transition: 0.2s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 48px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background-color: #E05A3A;
  color: white;
  box-shadow: 0 4px 8px rgba(224, 90, 58, 0.2);
}

.btn--primary:hover {
  background-color: #C2412C;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid #E05A3A;
  color: #E05A3A;
}

.btn--outline:hover {
  background: #E05A3A;
  color: white;
}

.btn--full {
  width: 100%;
}

.hero {
  background: linear-gradient(135deg, #FFF8F2 0%, #FFF1E6 100%);
  padding: 48px 0 64px;
}

.hero__wrapper {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero__content {
  flex: 1;
}

.hero__title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2C1E1A;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: #4F4A45;
  margin-bottom: 32px;
  max-width: 90%;
}

.hero__image {
  flex: 1;
  text-align: center;
}

.hero__image img {
  max-width: 100%;
  border-radius: 32px;
}

.categories {
  padding: 80px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E05A3A;
  text-decoration: none;
  font-weight: 500;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  background: #FEF9F5;
  border-radius: 28px;
  overflow: hidden;
  transition: 0.2s;
}

.category-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.category-card__label {
  text-align: center;
  padding: 18px 8px;
  font-weight: 600;
  font-size: 1.1rem;
}


.about-us {
  background: #FDF3EC;
  padding: 80px 0;
}

.about-us__inner {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.about-us__content {
  flex: 1;
}

.about-us__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.about-us__text {
  margin-bottom: 28px;
  color: #4B3F3A;
  line-height: 1.5;
}

.about-us__media img {
  max-width: 100%;
  border-radius: 32px;
}

/* Product Card */
.product-card {
  padding: 80px 0;
  background: white;
}

.product-card__wrapper {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.product-gallery {
  flex: 1;
}

.product-gallery__main {
  width: 100%;
  border-radius: 28px;
  margin-bottom: 20px;
  background: #F5EFEA;
}

.product-gallery__thumbs {
  display: flex;
  gap: 15px;
}

.product-gallery__thumbs img {
  width: 80px;
  border-radius: 16px;
  cursor: pointer;
}

.product-info {
  flex: 1;
}

.product-info__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  display: flex;
  gap: 4px;
}

.rating-value {
  font-weight: 700;
}

.reviews-count {
  color: #7A6A60;
}

.product-info__description {
  margin: 20px 0;
  line-height: 1.5;
}

.variant-label {
  display: block;
  font-weight: 500;
  margin: 20px 0 12px 0;
}

.volume-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.volume-btn {
  background: #F4F0EC;
  border: 1px solid #E2D9D2;
  padding: 8px 18px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 500;
}

.volume-btn.active,
.volume-btn:hover {
  background: #E05A3A;
  color: white;
  border-color: #E05A3A;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F5F0EB;
  width: fit-content;
  padding: 6px 16px;
  border-radius: 60px;
}

.qty-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  padding: 0 6px;
}

.delivery-options {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.delivery-option label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  background: #FEF8F3;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid #EADDD3;
  cursor: pointer;
}

.price-tag {
  font-weight: 800;
  font-size: 1.2rem;
  margin-left: auto;
}

.delivery-desc {
  font-size: 0.85rem;
  color: #5F554C;
  width: 100%;
}

.product-tabs {
  margin-top: 40px;
}

.tabs-header {
  display: flex;
  gap: 24px;
  border-bottom: 2px solid #EDE2DA;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
}

.tab-btn.active {
  color: #E05A3A;
  border-bottom: 2px solid #E05A3A;
  margin-bottom: -2px;
}

.tab-content {
  display: none;
  padding: 24px 0;
}

.tab-content.active {
  display: block;
}

.benefits {
  
  padding: 80px 0;
  text-align: center;
}

.benefits__title {
  font-size: 2rem;
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.benefit-item p {
  margin-top: 16px;
  font-weight: 500;
}

.company-info {
  padding: 80px 0;
}

.company-info__inner {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.company-info__text {
  flex: 1;
}

.company-info__text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.company-info__text p {
  margin-bottom: 28px;
  line-height: 1.5;
}

.company-info__img img {
  max-width: 100%;
  border-radius: 32px;
}

.consult-form {
  background: #FDF7F2;
  padding: 80px 0;
}

.form__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.form__header h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.callback-form {
  max-width: 900px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}

.form-row input:not([type="radio"]) {
  flex: 1;
  padding: 14px 20px;
  border-radius: 60px;
  border: 1px solid #E8DDD4;
  font-size: 1rem;
}

.radio-group-label {
  width: 100%;
  font-weight: 500;
}

.radio-options {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.footer {
  background: #1F1B19;
  color: #CFC5BE;
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__socials {
  display: flex;
  gap: 24px;
}

.footer__socials a {
  color: #CFC5BE;
  transition: color 0.2s;
}

.footer__policy a {
  color: #CFC5BE;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__title {
    font-size: 2.4rem;
  }
}

@media (max-width: 800px) {
  .nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    background: white;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    padding: 32px;
    transition: 0.3s;
    z-index: 99;
    border-radius: 0 20px 20px 0;
  }

  .nav--open {
    left: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 20px;
  }

  .burger {
    display: flex;
  }

  .header__icons {
    margin-right: 10px;
  }

  .hero__wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .section-header {
    flex-direction: column;
    gap: 12px;
  }

  .categories__grid {
    grid-template-columns: 1fr;
  }

  .product-card__wrapper {
    flex-direction: column;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .delivery-option label {
    flex-direction: column;
  }

  .price-tag {
    margin-left: 0;
  }
}