:root {
  --primary-color: #F2D57F;
  --secondary-color: #D9B856;
  --accent-color: #F0A55A;
  --light-color: #FEFCF5;
  --dark-color: #3A2F1A;
  --gradient-primary: linear-gradient(135deg, #F2D57F 0%, #F0A55A 100%);
  --hover-color: #E5C56A;
  --background-color: #FFFEF8;
  --text-color: #4A3D25;
  --border-color: rgba(242, 213, 127, 0.3);
  --divider-color: rgba(74, 61, 37, 0.1);
  --shadow-color: rgba(74, 61, 37, 0.15);
  --highlight-color: #B3D0D9;
  --main-font: 'Lora', serif;
  --alt-font: 'Roboto', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  font-family: var(--alt-font);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  background-color: var(--background-color);
}

.pattern-bg {
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(242, 213, 127, 0.04) 50px, rgba(242, 213, 127, 0.04) 100px),
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(240, 165, 90, 0.03) 50px, rgba(240, 165, 90, 0.03) 100px),
    linear-gradient(90deg, rgba(217, 184, 86, 0.02) 0%, transparent 50%, rgba(242, 213, 127, 0.02) 100%);
  opacity: 0.6;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  background: var(--gradient-primary);
  padding: 1.6rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 18px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background: transparent;
  border: 5px solid rgba(254, 252, 245, 0.25);
  border-top: 5px solid transparent;
  border-left: 5px solid transparent;
  border-radius: 50%;
  display: none;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--dark-color);
  font-family: var(--main-font);
  font-size: 1.75rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--dark-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.6rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-image-container {
  position: relative;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 15px 40px var(--shadow-color);
  transition: transform 0.3s ease;
  border: 3px solid var(--border-color);
}

.product-image:hover {
  transform: rotate(-1deg) scale(1.02);
}

.guarantee-block {
  background: white;
  color: var(--text-color);
  padding: 2.6rem;
  border-radius: 25px;
  box-shadow: 0 10px 35px var(--shadow-color);
  position: relative;
  overflow: hidden;
  border: 3px solid var(--primary-color);
}

.guarantee-block::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: var(--gradient-primary);
  opacity: 0.1;
  border-radius: 50%;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--accent-color);
  margin-bottom: 1.3rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 1.5rem;
  padding: 1.8rem 1.6rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: all 0.3s ease;
  border: 3px solid var(--border-color);
}

.feature-item:hover {
  transform: translateX(8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(242, 213, 127, 0.4);
}

.feature-item span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
}

.cart-button {
  background: var(--gradient-primary);
  color: var(--dark-color);
  padding: 1.4rem 3.2rem;
  border: none;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-color);
  font-family: var(--main-font);
  border: 3px solid var(--accent-color);
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--accent-color) 100%);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.8rem;
  color: var(--accent-color);
  margin-bottom: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.price {
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1.8rem 0;
  font-family: var(--main-font);
  text-shadow: 2px 2px 4px rgba(74, 61, 37, 0.1);
}

.product-description {
  font-size: 1.08rem;
  margin-bottom: 2.5rem;
  line-height: 1.85;
  color: var(--text-color);
}

.highlight-text {
  background: var(--gradient-primary);
  color: var(--dark-color);
  padding: 2.4rem;
  border-radius: 20px;
  font-weight: 700;
  margin: 2.5rem 0;
  text-align: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 30px var(--shadow-color);
  font-family: var(--main-font);
  border: 3px solid var(--accent-color);
}

.features-list {
  list-style: none;
  margin: 2.5rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.3rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem 1.4rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow-color);
  transition: all 0.3s ease;
  border: 3px solid var(--border-color);
}

.features-list li:hover {
  transform: translateX(-8px);
  box-shadow: 0 12px 35px var(--shadow-color);
  border-color: var(--primary-color);
}

.feature-check {
  width: 30px;
  height: 30px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(242, 213, 127, 0.4);
}

.benefits-strip {
  background: var(--gradient-primary);
  padding: 5.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.benefits-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 100px,
    rgba(255, 255, 255, 0.05) 100px,
    rgba(255, 255, 255, 0.05) 200px
  );
}

.benefits-strip-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.benefits-strip h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 4.5rem;
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--dark-color);
}

.benefits-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .benefits-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: white;
  padding: 0;
  border-radius: 25px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  border: 4px solid var(--dark-color);
  overflow: hidden;
}

.benefit-card:hover {
  transform: scale(1.05);
}

.benefit-icon {
  width: 100%;
  height: 120px;
  background: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  margin: 0;
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1.6rem;
  color: var(--accent-color);
  margin: 2rem 2rem 1.5rem 2rem;
  font-weight: 700;
}

.benefit-card p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-color);
  padding: 0 2rem 2.5rem 2rem;
}

.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 5.5rem 1.5rem;
  position: relative;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 4.5rem;
  font-size: 2.7rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  color: var(--primary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.8rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.8rem;
  border-radius: 25px;
  backdrop-filter: blur(5px);
  border: 3px solid rgba(242, 213, 127, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.testimonial-icon {
  width: 65px;
  height: 65px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(242, 213, 127, 0.4);
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.25rem;
  font-family: var(--main-font);
  color: var(--primary-color);
}

.testimonial p {
  line-height: 1.85;
  font-size: 1.08rem;
}

footer {
  background: var(--primary-color);
  color: var(--dark-color);
  padding: 3.8rem 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  align-items: center;
  padding-bottom: 2.8rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: var(--dark-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-credit {
  text-align: center;
  padding-top: 2.8rem;
  border-top: 2px solid var(--dark-color);
  color: var(--dark-color);
  font-size: 0.96rem;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0.8;
}

.footer-credit a {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 600;
}