:root {
  --primary-color: #7B2D5E;
  --secondary-color: #561F42;
  --accent-color: #A84F7E;
  --light-color: #F7EDF3;
  --dark-color: #2E1225;
  --gradient-primary: linear-gradient(135deg, #7B2D5E 0%, #4A1838 100%);
  --hover-color: #943570;
  --background-color: #FCF8FA;
  --text-color: #321326;
  --border-color: rgba(123, 45, 94, 0.13);
  --divider-color: rgba(123, 45, 94, 0.09);
  --shadow-color: rgba(86, 31, 66, 0.1);
  --highlight-color: #F0D9E8;
  --main-font: 'Lora', serif;
  --alt-font: 'Poppins', 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: scattered small circles */
.pattern-bg {
  background-image:
    radial-gradient(circle, rgba(123,45,94,0.05) 2px, transparent 2px),
    radial-gradient(circle, rgba(168,79,126,0.04) 1px, transparent 1px),
    radial-gradient(ellipse at 20% 60%, rgba(123,45,94,0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 25%, rgba(168,79,126,0.06) 0%, transparent 40%);
  background-size: 36px 36px, 18px 18px, 100% 100%, 100% 100%;
  background-position: 0 0, 9px 9px, 0 0, 0 0;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.header-deco {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  gap: 8px;
}

.header-deco-circle {
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.header-deco-circle:nth-child(1) { width: 34px; height: 34px; }
.header-deco-circle:nth-child(2) { width: 20px; height: 20px; opacity: 0.7; }
.header-deco-circle:nth-child(3) { width: 28px; height: 28px; opacity: 0.5; }

@media (min-width: 768px) { .header-deco { display: flex; } }

.container {
  max-width: 1020px;
  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.65rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.04em;
}

.logo-icon {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.25);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.8rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section { grid-template-columns: 39% 61%; }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.product-image-container {
  display: flex;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 4px 18px var(--shadow-color);
  padding: 18px 22px;
  background: white;
  border: 1px solid var(--border-color);
}

.product-image-container picture { display: flex; justify-content: center; width: 100%; }

.product-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.product-image:hover { transform: scale(1.02); }

.guarantee-block {
  background: white;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  text-align: center;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.guarantee-block p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-color);
}

/* feature-item: numbered card tiles */
.features-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.feature-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 0.7rem 0.8rem 0.7rem 0.7rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 5px var(--shadow-color);
  overflow: hidden;
  transition: all 0.25s ease;
}

.feature-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-item:hover::after { transform: scaleX(1); }
.feature-item:hover { box-shadow: 0 3px 10px var(--shadow-color); }

.feature-item .feature-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.feature-item span {
  font-size: 0.71rem;
  font-weight: 600;
  color: var(--secondary-color);
  font-family: var(--alt-font);
  line-height: 1.3;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 3px 10px var(--shadow-color);
  font-family: var(--alt-font);
  letter-spacing: 0.04em;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--accent-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 14px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.95rem;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.5rem 0;
  font-family: var(--main-font);
  display: inline-block;
}

.product-description {
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
  line-height: 1.72;
  color: var(--text-color);
}

.product-description p { margin-bottom: 0.7rem; }

.highlight-text {
  background: var(--highlight-color);
  color: var(--secondary-color);
  padding: 0.85rem 1.1rem;
  border-radius: 6px;
  font-weight: 700;
  margin: 0.9rem 0;
  text-align: center;
  font-size: 0.88rem;
  font-family: var(--alt-font);
  border: 2px solid var(--accent-color);
  box-shadow: 0 2px 8px var(--shadow-color);
}

.features-list {
  list-style: none;
  margin: 0.7rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.42rem;
  padding: 0.55rem 0.8rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 1px 5px var(--shadow-color);
  border: 1px solid var(--border-color);
  font-size: 0.82rem;
  transition: all 0.2s ease;
}

.features-list li:hover {
  border-color: var(--accent-color);
  background: var(--light-color);
}

.feature-check {
  width: 16px; height: 16px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.55rem;
}

/* Benefits: horizontal scroll-like cards with large icons */
.benefits-section {
  background: var(--light-color);
  padding: 2rem 1.5rem;
  border-top: 4px solid var(--primary-color);
  border-bottom: 4px solid var(--primary-color);
}

.benefits-inner {
  max-width: 1020px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.02em;
}

.benefits-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

@media (min-width: 768px) {
  .benefits-cards { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
  background: white;
  border-radius: 10px;
  padding: 1.2rem 1rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px var(--shadow-color);
}

.benefit-card-icon {
  width: 56px; height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 0.7rem;
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.benefit-card p {
  font-size: 0.78rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* Testimonials */
.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  max-width: 1020px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

.testimonial {
  background: rgba(255,255,255,0.07);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--accent-color);
  transition: all 0.3s ease;
}

.testimonial:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
}

.testimonial-icon {
  width: 34px; height: 34px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.86rem;
  font-family: var(--main-font);
  color: white;
}

.testimonial-city { font-size: 0.73rem; color: rgba(255,255,255,0.55); }

.testimonial p {
  line-height: 1.55;
  font-size: 0.81rem;
  color: rgba(255,255,255,0.85);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.6rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-content {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  padding-bottom: 1rem;
}

@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: 0.8rem;
  justify-content: center;
}

@media (min-width: 768px) { .footer-nav { justify-content: flex-end; } }

.footer-nav a {
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.78rem;
}

.footer-nav a:hover { color: white; }

.footer-credit {
  text-align: center;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.38);
  font-size: 0.72rem;
  max-width: 1020px;
  margin: 0 auto;
}

.footer-credit a { color: var(--light-color); text-decoration: none; }