:root {
  --primary-color: #5F6F52;
  --secondary-color: #3D4A35;
  --accent-color: #A9B388;
  --light-color: #FEFAE0;
  --dark-color: #2A3528;
  --gradient-primary: linear-gradient(135deg, #A9B388 0%, #5F6F52 100%);
  --hover-color: #4A5943;
  --background-color: #FFFEF9;
  --text-color: #2D3A2E;
  --border-color: rgba(169, 179, 136, 0.3);
  --divider-color: rgba(95, 111, 82, 0.12);
  --shadow-color: rgba(95, 111, 82, 0.18);
  --highlight-color: #EE4266;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}

header {
  position: relative;
  z-index: 20;
  background: linear-gradient(135deg, #2A3528 0%, #3D4A35 100%);
  padding: 1.75rem 2rem;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
}

.logo-text {
  font-family: var(--main-font);
  font-size: 1.85rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.3px;
}

.header-decoration {
  display: none;
}

main {
  flex: 1;
  position: relative;
  z-index: 10;
  padding: 3.5rem 1.5rem;
}

.product-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.product-image-wrapper {
  background: #FFFFFF;
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: 0 5px 15px var(--shadow-color);
  text-align: center;
}

.product-image-wrapper picture {
  display: block;
}

.product-image {
  width: 100%;
  max-width: 330px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.guarantee-block {
  background: linear-gradient(135deg, #FEFAE0 0%, #F5F1D3 100%);
  border: 2px solid var(--accent-color);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 12px var(--shadow-color);
  text-align: center;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.guarantee-block p {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.6;
}

.cta-button-wrapper {
  background: #FFFFFF;
  border: 2px solid var(--border-color);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 12px var(--shadow-color);
  text-align: center;
}

.price-tag {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--main-font);
  margin-bottom: 1.35rem;
  display: block;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: #FFFFFF;
  padding: 1.1rem 3.25rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(95, 111, 82, 0.35);
  border: none;
  cursor: pointer;
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(95, 111, 82, 0.45);
  background: linear-gradient(135deg, #5F6F52 0%, #4A5943 100%);
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.description-block,
.highlight-block,
.features-list-block {
  background: #FFFFFF;
  border: 2px solid var(--border-color);
  border-radius: 14px;
  padding: 2.25rem;
  box-shadow: 0 4px 12px var(--shadow-color);
}

.description-block h2,
.features-list-block h3 {
  font-family: var(--main-font);
  font-size: 1.95rem;
  color: var(--primary-color);
  margin-bottom: 1.15rem;
  font-weight: 700;
}

.description-block p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-color);
  margin-bottom: 0.85rem;
}

.highlight-block {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE8E8 100%);
  border: 3px solid var(--highlight-color);
  text-align: center;
  padding: 2.5rem;
}

.highlight-block p {
  font-size: 1.45rem;
  font-weight: 700;
  font-family: var(--main-font);
  color: var(--dark-color);
  line-height: 1.65;
}

.highlight-price {
  font-size: 2.1rem;
  display: block;
  margin-top: 0.85rem;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
}

.feature-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  color: var(--primary-color);
}

.feature-text {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-color);
}

.features-section {
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, #FEFAE0 0%, #F5F1D3 100%);
  padding: 4.5rem 1.5rem;
  margin-top: 3.5rem;
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
}

.features-title {
  font-family: var(--main-font);
  font-size: 2.35rem;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 3.5rem;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.75rem;
}

.feature-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow-color);
  border: 2px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px var(--shadow-color);
}

.feature-icon-circle {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.35rem;
}

.feature-icon-circle svg {
  width: 42px;
  height: 42px;
  color: #FFFFFF;
}

.feature-card h4 {
  font-family: var(--main-font);
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.feature-card p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-color);
}

.testimonials-section {
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, #2A3528 0%, #3D4A35 100%);
  padding: 4.5rem 1.5rem;
  color: #FFFFFF;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-title {
  font-family: var(--main-font);
  font-size: 2.35rem;
  text-align: center;
  margin-bottom: 3.5rem;
  font-weight: 700;
  color: #FFFFFF;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 2.25rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 1.15rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar svg {
  width: 30px;
  height: 30px;
  color: #FFFFFF;
}

.testimonial-info h4 {
  font-family: var(--main-font);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.testimonial-rating {
  color: #EE4266;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.96);
}

footer {
  position: relative;
  z-index: 20;
  background: linear-gradient(135deg, #1A2318 0%, #2A3528 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.75rem 2rem 1.75rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.25rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
}

.footer-logo-text {
  font-family: var(--main-font);
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-nav {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  max-width: 1400px;
  margin: 2.25rem auto 0;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  font-size: 0.95rem;
}

.footer-bottom a {
  color: var(--highlight-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

@media (max-width: 968px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .header-decoration {
    display: none !important;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1.15rem;
    align-items: center;
  }
}

@media (min-width: 969px) {
  .header-decoration {
    display: flex;
    gap: 1.15rem;
    align-items: center;
  }

  .header-decoration-shape {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
    animation: rotate 3s infinite ease-in-out;
  }

  .header-decoration-shape:nth-child(2) {
    width: 14px;
    height: 14px;
    animation-delay: 0.4s;
  }

  .header-decoration-shape:nth-child(3) {
    width: 12px;
    height: 12px;
    animation-delay: 0.8s;
  }
}

@keyframes rotate {
  0%, 100% {
    opacity: 0.35;
    transform: rotate(0deg) scale(1);
  }
  50% {
    opacity: 0.75;
    transform: rotate(180deg) scale(1.15);
  }
}