.product-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.product-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  height: 860px;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.product-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  height: 100%;
  padding: 40px;
  position: relative;
}

.product-content::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(238, 10, 16, 0.1) 0%,
    transparent 70%
  );
  animation: contentDecor 20s linear infinite;
  pointer-events: none;
  z-index: -1;
}

.product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 860px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  width: 100%;
  margin: 0;
  padding: 0;
}

.product-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(20, 20, 24, 0.1) 100%
  );
  transition: opacity 0.3s ease;
  z-index: 1;
}

.product-image:hover::before {
  opacity: 0.5;
}

.product-title {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 12px;
  line-height: 1.2;
  animation: titleSlideIn 0.8s ease-out;
}

.product-subtitle {
  font-size: 24px;
  margin-bottom: 20px;
  opacity: 0.8;
  line-height: 1.4;
  animation: subtitleSlideIn 0.8s ease-out 0.2s both;
}

.product-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
  animation: descriptionSlideIn 0.8s ease-out 0.4s both;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(238, 10, 16, 0.03) 0%,
    rgba(238, 10, 16, 0.01) 100%
  );
  border: 1px solid rgba(238, 10, 16, 0.1);
  position: relative;
  overflow: hidden;
  animation: featuresSlideIn 0.8s ease-out 0.6s both;
}

.product-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-color)
  );
  z-index: 10;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 12px 15px;
  background: linear-gradient(
    90deg,
    rgba(238, 10, 16, 0.02) 0%,
    transparent 100%
  );
  border-left: 3px solid transparent;
}

.product-feature:hover {
  transform: translateX(10px);
  border-left-color: var(--primary-color);
  background: linear-gradient(
    90deg,
    rgba(238, 10, 16, 0.05) 0%,
    rgba(238, 10, 16, 0.02) 100%
  );
}

.product-feature::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transform: translateY(-50%);
  transition: width 0.3s ease;
}

.product-feature:hover::before {
  width: 6px;
}

.product-feature i {
  color: var(--primary-color);
  font-size: 22px;
  width: 22px;
  min-width: 22px;
  animation: iconPulse 2s ease-in-out infinite;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 3px rgba(20, 20, 24, 0.2);
}

.product-feature:hover i {
  transform: scale(1.15);
  color: var(--primary-dark);
}

.product-cta {
  display: flex;
  gap: 20px;
  animation: ctaSlideIn 0.8s ease-out 0.8s both;
}

.product-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  padding: 0 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.product-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.product-btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--text-color-oposite);
  border: none;
  box-shadow: 0 8px 25px rgba(238, 10, 16, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--primary-hover),
    var(--primary-color)
  );
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(238, 10, 16, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 8px 25px rgba(238, 10, 16, 0.1);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-color-oposite);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(238, 10, 16, 0.3);
}

/* Секция 1 - светлый фон */
.section-gardens {
  background: linear-gradient(
    135deg,
    var(--light-color) 0%,
    rgba(243, 238, 239, 0.95) 100%
  );
  color: var(--text-color-main);
  position: relative;
}

.section-gardens::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at 80% 20%,
      rgba(238, 10, 16, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(183, 150, 138, 0.05) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 1;
  animation: backgroundFloat 20s ease-in-out infinite alternate;
}

.section-gardens .product-image {
  background-image: url("/assets/img/product-1.webp");
}

/* Секция 2 - темный фон */
.section-mobile {
  background: var(--shadow-color);
  color: var(--text-color-oposite);
  position: relative;
  overflow: hidden;
}

.section-mobile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at 20% 50%,
      rgba(169, 139, 104, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(183, 150, 138, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 1;
  animation: backgroundFloat 25s ease-in-out infinite alternate-reverse;
}

.section-mobile .product-container {
  flex-direction: row-reverse;
}

.section-mobile .product-content::before {
  background: radial-gradient(
    circle,
    rgba(169, 139, 104, 0.2) 0%,
    transparent 70%
  );
}

.section-mobile .product-features {
  background: linear-gradient(
    135deg,
    rgba(169, 139, 104, 0.1) 0%,
    rgba(183, 150, 138, 0.05) 100%
  );
  border-color: rgba(169, 139, 104, 0.2);
}

.section-mobile .product-features::before {
  background: linear-gradient(
    90deg,
    var(--tertiary-color),
    var(--tertiary-light),
    var(--tertiary-color)
  );
}

.section-mobile .product-feature {
  color: var(--text-color-oposite);
  background: linear-gradient(
    90deg,
    rgba(169, 139, 104, 0.1) 0%,
    transparent 100%
  );
}

.section-mobile .product-feature:hover {
  border-left-color: var(--tertiary-light);
  background: linear-gradient(
    90deg,
    rgba(169, 139, 104, 0.15) 0%,
    rgba(183, 150, 138, 0.05) 100%
  );
}

.section-mobile .product-feature i {
  color: var(--tertiary-light);
  text-shadow: 1px 1px 3px rgba(20, 20, 24, 0.5);
}

.section-mobile .product-feature:hover i {
  color: var(--tertiary-color);
}

.section-mobile .product-image {
  background-image: url("/assets/img/product-2.webp");
}

.section-mobile .btn-secondary {
  color: var(--text-color-oposite);
  border-color: var(--text-color-oposite);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.section-mobile .btn-secondary:hover {
  background: var(--tertiary-color);
  color: var(--text-color-oposite);
  border-color: var(--tertiary-color);
  box-shadow: 0 15px 40px rgba(169, 139, 104, 0.3);
}

/* Секция 3 - акцентный фон */
.section-technical {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: var(--text-color-oposite);
  position: relative;
  overflow: hidden;
}

.section-technical::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at 30% 70%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 30%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 1;
  animation: backgroundFloat 22s ease-in-out infinite alternate;
}

.section-technical .product-content::before {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
}

.section-technical .product-features {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-color: rgba(255, 255, 255, 0.2);
}

.section-technical .product-features::before {
  background: linear-gradient(
    90deg,
    var(--light-color),
    var(--white),
    var(--light-color)
  );
}

.section-technical .product-feature {
  color: var(--text-color-oposite);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 100%
  );
}

.section-technical .product-feature:hover {
  border-left-color: var(--light-color);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

.section-technical .product-feature i {
  color: var(--light-color);
  text-shadow: 1px 1px 3px rgba(20, 20, 24, 0.3);
}

.section-technical .product-feature:hover i {
  color: var(--white);
}

.section-technical .product-image {
  background-image: url("/assets/img/product-3.webp");
}

.section-technical .btn-primary {
  background: linear-gradient(135deg, var(--light-color), var(--white));
  color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.section-technical .btn-primary:hover {
  background: linear-gradient(135deg, var(--white), var(--light-color));
  color: var(--primary-dark);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.section-technical .btn-secondary {
  color: var(--text-color-oposite);
  border-color: var(--text-color-oposite);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.section-technical .btn-secondary:hover {
  background: var(--light-color);
  color: var(--primary-color);
  border-color: var(--light-color);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Секция 4 - светлый фон */
.section-organic {
  background: linear-gradient(
    135deg,
    var(--light-color) 0%,
    rgba(243, 238, 239, 0.95) 100%
  );
  color: var(--text-color-main);
  position: relative;
  overflow: hidden;
}

.section-organic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at 80% 20%,
      rgba(238, 10, 16, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(183, 150, 138, 0.05) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 1;
  animation: backgroundFloat 25s ease-in-out infinite alternate-reverse;
}

.section-organic .product-container {
  flex-direction: row-reverse;
}

.section-organic .product-content::before {
  background: radial-gradient(
    circle,
    rgba(169, 139, 104, 0.2) 0%,
    transparent 70%
  );
}

.section-organic .product-features {
  background: linear-gradient(
    135deg,
    rgba(169, 139, 104, 0.1) 0%,
    rgba(183, 150, 138, 0.05) 100%
  );
  border-color: rgba(169, 139, 104, 0.2);
}

.section-organic .product-features::before {
  background: linear-gradient(
    90deg,
    var(--tertiary-color),
    var(--tertiary-light),
    var(--tertiary-color)
  );
}

.section-organic .product-feature {
  color: var(--text-color-main);
  background: linear-gradient(
    90deg,
    rgba(238, 10, 16, 0.02) 0%,
    transparent 100%
  );
}

.section-organic .product-feature:hover {
  border-left-color: var(--primary-color);
  background: linear-gradient(
    90deg,
    rgba(238, 10, 16, 0.05) 0%,
    rgba(238, 10, 16, 0.02) 100%
  );
}

.section-organic .product-feature i {
  color: var(--primary-color);
  text-shadow: 1px 1px 3px rgba(20, 20, 24, 0.2);
}

.section-organic .product-feature:hover i {
  color: var(--primary-dark);
}

.section-organic .product-image {
  background-image: url("/assets/img/product-4.webp");
}

/* Анимации */
@keyframes backgroundFloat {
  0% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translateX(-10px) translateY(-5px) scale(1.01);
    opacity: 1;
  }
}

@keyframes contentDecor {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  100% {
    transform: translateX(-15px) translateY(15px) rotate(360deg);
  }
}

@keyframes titleSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtitleSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.8;
    transform: translateY(0);
  }
}

@keyframes descriptionSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes featuresSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 1024px) {
  .product-section::before {
    animation: none;
  }

  .product-content::before {
    display: none;
  }

  .product-container {
    flex-direction: column;
    width: 95%;
    height: auto;
    min-height: 600px;
    gap: 30px;
    padding: 40px 0;
  }

  .section-mobile .product-container,
  .section-organic .product-container {
    flex-direction: column;
  }

  .product-content {
    padding: 20px;
  }

  .product-image {
    height: 300px;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .product-features {
    padding: 20px;
    gap: 12px;
  }

  .product-feature {
    font-size: 15px;
    padding: 10px 12px;
    gap: 12px;
  }

  .product-feature i {
    font-size: 20px;
    width: 20px;
    min-width: 20px;
  }

  .product-title {
    font-size: 36px;
  }

  .product-subtitle {
    font-size: 20px;
  }

  .product-cta {
    flex-direction: column;
    gap: 15px;
  }

  .product-btn {
    height: 60px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .product-section {
    min-height: auto;
    padding: 40px 0;
  }

  .product-container {
    width: 90%;
    height: auto;
    padding: 40px 0;
  }

  .product-image {
    height: 250px;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .product-title {
    font-size: 28px;
  }

  .product-subtitle {
    font-size: 18px;
  }

  .product-description {
    font-size: 16px;
  }

  .product-features {
    padding: 15px;
    gap: 10px;
    margin-bottom: 30px;
  }

  .product-feature {
    font-size: 14px;
    padding: 8px 10px;
    gap: 10px;
  }

  .product-feature i {
    font-size: 18px;
    width: 18px;
    min-width: 18px;
  }

  .product-btn {
    height: 55px;
    font-size: 14px;
    padding: 0 30px;
  }
}
