:root {
  --primary-color: #A3556C;
  --secondary-color: #704449;
  --accent-color: #C97B8E;
  --light-color: #F2E3E7;
  --dark-color: #3B3B3B;
  --gradient-primary: linear-gradient(110deg, #A3556C 0%, #704449 100%);
  --hover-color: #B4667D;
  --background-color: #FFFBFC;
  --text-color: #4D4D4D;
  --border-color: rgba(201, 123, 142, 0.25);
  --divider-color: rgba(163, 85, 108, 0.18);
  --shadow-color: rgba(112, 68, 73, 0.2);
  --highlight-color: #D49BA8;
  --main-font: 'Cormorant Garamond', serif;
  --alt-font: 'Raleway', 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(ellipse at 25% 35%, rgba(163, 85, 108, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 65%, rgba(201, 123, 142, 0.06) 0%, transparent 60%),
    repeating-linear-gradient(180deg, transparent, transparent 100px, rgba(242, 227, 231, 0.15) 100px, rgba(242, 227, 231, 0.15) 102px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.benefits-section {
  background: white;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(163, 85, 108, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.benefits-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(201, 123, 142, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.benefits-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  font-style: italic;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: linear-gradient(145deg, #FFFFFF 0%, var(--light-color) 100%);
  padding: 2.3rem 1.8rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  position: relative;
  box-shadow: 0 5px 20px var(--shadow-color);
}

.benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.benefit-card-icon {
  width: 75px;
  height: 75px;
  background: white;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.3rem;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
  color: var(--primary-color);
  letter-spacing: 0.3px;
  font-style: italic;
}

.benefit-card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-color);
}

header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 12px var(--shadow-color);
  border-bottom: 1px solid var(--primary-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 7%;
  width: 30px;
  height: 50px;
  background: var(--light-color);
  transform: translateY(-50%) skewX(-10deg);
  border-left: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  display: none;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.9rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 1px;
  font-style: italic;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  border: 3px solid var(--secondary-color);
  box-shadow: 0 3px 10px var(--shadow-color);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3.3rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.3rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px var(--shadow-color);
  border: 3px solid var(--light-color);
}

.product-image {
  width: 100%;
  padding: 35px;
  height: auto;
  border-radius: 16px;
  transition: transform 0.3s ease;
  position: relative;
}

@media (min-width: 768px) {
  .product-image {
    padding: 35px 62px;
  }
}

.product-image:hover {
  transform: scale(1.05);
}

.guarantee-block {
  background: var(--light-color);
  color: var(--text-color);
  padding: 2.2rem;
  border-radius: 16px;
  border: 2px solid var(--primary-color);
  position: relative;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-style: italic;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
}

.feature-item:hover {
  transform: scale(1.05);
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 52px;
  height: 52px;
  background: var(--light-color);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
  letter-spacing: 0.2px;
  font-style: italic;
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 1.4rem 2.7rem;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 6px 20px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.5px;
  border: 3px solid var(--secondary-color);
  font-style: italic;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.3rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 1.2px;
  font-style: italic;
}

.price {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 1.3rem 0;
  font-family: var(--main-font);
  font-style: italic;
}

.product-description {
  font-size: 0.97rem;
  margin-bottom: 2.2rem;
  line-height: 1.8;
  color: var(--text-color);
}

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 2rem;
  border-radius: 16px;
  font-weight: 600;
  margin: 2.2rem 0;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.4px;
  border: 3px solid var(--secondary-color);
  font-style: italic;
}

.features-list {
  list-style: none;
  margin: 2.2rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.3rem;
  padding: 1.4rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
}

.features-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px var(--shadow-color);
  border-color: var(--primary-color);
}

.feature-check {
  width: 28px;
  height: 28px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.9rem;
  border: 2px solid var(--secondary-color);
}

.testimonials {
  background: var(--light-color);
  color: var(--text-color);
  padding: 4.3rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 3.3rem;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.8px;
  font-style: italic;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 2.2rem;
  border-radius: 16px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 5px 18px var(--shadow-color);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px var(--shadow-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  margin-bottom: 1.3rem;
}

.testimonial-header > div {
  min-width: 0;
}

.testimonial-icon {
  width: 55px;
  height: 55px;
  background: var(--light-color);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.1rem;
  font-family: var(--main-font);
  color: var(--primary-color);
  letter-spacing: 0.2px;
  word-break: break-word;
  font-style: italic;
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.93rem;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 3.3rem 1.5rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  align-items: center;
  padding-bottom: 2.2rem;
}

@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.7rem;
  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.85);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.88rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}