:root {
  --primary-color: #564d33;
  --secondary-color: #6E1449;
  --accent-color: #B22B5B;
  --light-color: #F5E8F0;
  --dark-color: #4D0E30;
  --gradient-primary: linear-gradient(135deg, #564d33 0%, #6E1449 100%);
  --hover-color: #7F1753;
  --background-color: #FDFBFC;
  --text-color: #4A3F45;
  --border-color: rgba(156, 28, 102, 0.18);
  --divider-color: rgba(110, 20, 73, 0.12);
  --shadow-color: rgba(110, 20, 73, 0.12);
  --highlight-color: #F7DC6F;
  --main-font: 'Lora', serif;
  --alt-font: 'Open Sans', 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: 
    radial-gradient(circle at 15% 15%, rgba(156, 28, 102, 0.03) 0%, transparent 35%),
    radial-gradient(circle at 85% 85%, rgba(110, 20, 73, 0.025) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(178, 43, 91, 0.015) 0%, transparent 50%),
    linear-gradient(135deg, transparent 25%, rgba(156, 28, 102, 0.015) 25%, rgba(156, 28, 102, 0.015) 50%, transparent 50%, transparent 75%, rgba(156, 28, 102, 0.015) 75%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 60px 60px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.benefits-section {
  background: var(--light-color);
  padding: 2.6rem 1.2rem;
  margin: 2rem 0 0 0;
  border-top: 4px solid var(--primary-color);
  border-bottom: 4px solid var(--primary-color);
}

.benefits-content {
  max-width: 950px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-card {
  background: white;
  padding: 1.6rem;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 1.3rem;
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 2px 10px var(--shadow-color);
}

.benefit-card:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.benefit-card-icon {
  width: 65px;
  height: 65px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  color: white;
}

.benefit-card-content {
  flex: 1;
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--primary-color);
  letter-spacing: 0.3px;
}

.benefit-card p {
  font-size: 0.89rem;
  line-height: 1.6;
  color: var(--text-color);
}

header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow-color);
  border-bottom: 1px solid var(--border-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 60px;
  height: 60px;
  background: transparent;
  transform: translateY(-50%) rotate(15deg);
  border: 4px solid var(--primary-color);
  border-radius: 4px;
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
  .header-decoration::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
  }
}

.container {
  max-width: 950px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.65rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.5px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 16px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.product-image {
  width: 100%;
  padding: 30px;
  height: auto;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .product-image {
    padding: 30px 60px;
  }
}

.guarantee-block {
  background: white;
  color: var(--text-color);
  padding: 1.6rem;
  border-radius: 4px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 3px 12px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.3rem 0.7rem;
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 10px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 48px;
  height: 48px;
  background: var(--light-color);
  border: 3px solid var(--primary-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--primary-color);
}

.feature-item span {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-color);
  font-family: var(--main-font);
  letter-spacing: 0.2px;
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 1.15rem 2.4rem;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 16px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.5px;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.5px;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.15rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.94rem;
  margin-bottom: 1.6rem;
  line-height: 1.75;
  color: var(--text-color);
}

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 1.6rem;
  border-radius: 4px;
  font-weight: 700;
  margin: 1.6rem 0;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.5px;
}

.features-list {
  list-style: none;
  margin: 1.6rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  margin-bottom: 1.15rem;
  padding: 1.15rem;
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 10px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary-color);
}

.features-list li:hover {
  transform: translateX(7px);
  box-shadow: 0 4px 16px var(--shadow-color);
}

.feature-check {
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.testimonials {
  background: white;
  color: var(--text-color);
  padding: 2.7rem 1.2rem;
  border-top: 1px solid var(--border-color);
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.2rem;
  font-size: 1.95rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 950px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: var(--light-color);
  padding: 1.6rem;
  border-radius: 4px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 3px 12px var(--shadow-color);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: scale(1.02);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 1.15rem;
}

.testimonial-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  flex-shrink: 0;
  color: white;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--main-font);
  color: var(--primary-color);
  letter-spacing: 0.3px;
}

.testimonial p {
  line-height: 1.75;
  font-size: 0.9rem;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.2rem 1.2rem;
}

.footer-content {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 1.5rem;
}

@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: 1.15rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-content .logo {
  color: white;
}

.footer-content .logo-icon {
  background: white;
  color: var(--dark-color);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.88rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  max-width: 950px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}