:root {
  --primary-color: #7A3B5E;
  --secondary-color: #C98FAF;
  --accent-color: #52203C;
  --light-color: #FAF0F5;
  --dark-color: #2B0F1E;
  --gradient-primary: linear-gradient(135deg, #7A3B5E 0%, #924D72 100%);
  --hover-color: #5E2B47;
  --background-color: #F9F2F5;
  --text-color: #3A2030;
  --border-color: rgba(122, 59, 94, 0.15);
  --divider-color: rgba(122, 59, 94, 0.08);
  --shadow-color: rgba(43, 15, 30, 0.1);
  --highlight-color: #B05C36;
  --main-font: 'Montserrat', sans-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: diagonal thin lines + corner diamond shapes */
.pattern-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background-color: var(--background-color);
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 28px,
      rgba(122, 59, 94, 0.04) 28px,
      rgba(122, 59, 94, 0.04) 29px
    );
}

.pattern-bg::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(201, 143, 175, 0.12);
  transform: rotate(45deg);
  border-radius: 8px;
}

.pattern-bg::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 150px; height: 150px;
  background: rgba(122, 59, 94, 0.06);
  transform: rotate(45deg);
  border-radius: 6px;
}

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;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  gap: 8px;
}

.header-deco span {
  display: block;
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.12);
  transform: rotate(45deg);
}

.header-deco span:nth-child(2) { background: rgba(255,255,255,0.07); width: 14px; height: 14px; }
.header-deco span:nth-child(3) { background: rgba(255,255,255,0.04); width: 8px; height: 8px; }

@media (min-width: 768px) { .header-deco { display: flex; } }

.container {
  max-width: 1060px;
  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.6rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 2px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.16);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  border: 2px solid rgba(255,255,255,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: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section { grid-template-columns: 1fr 1fr; }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image-container {
  display: flex;
  justify-content: center;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 16px var(--shadow-color);
  overflow: hidden;
}

.product-image-container picture {
  display: flex;
  justify-content: center;
  width: 100%;
}

.product-image {
  width: 60%;
  height: auto;
  padding: 20px;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.product-image:hover { transform: scale(1.02); }

.guarantee-block {
  background: white;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  box-shadow: 0 2px 8px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient-primary);
}

.guarantee-block-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 0.4px;
}

.guarantee-block p {
  font-size: 0.79rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* Feature items: full-width horizontal rows with left icon */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.9rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 4px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
}

.feature-item:hover {
  border-color: var(--primary-color);
  background: var(--light-color);
}

.feature-item .feature-icon {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--alt-font);
}

.cart-button {
  background: var(--highlight-color);
  color: white;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 8px;
  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 rgba(176, 92, 54, 0.28);
  font-family: var(--main-font);
  letter-spacing: 0.8px;
}

.cart-button:hover {
  background: #8f4926;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(176, 92, 54, 0.38);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.7rem;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.4px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--highlight-color);
  margin: 0.6rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.84rem;
  margin-bottom: 1rem;
  line-height: 1.85;
  color: var(--text-color);
}

.product-description p + p { margin-top: 0.7rem; }

.highlight-text {
  background: var(--gradient-primary);
  color: white;
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  margin: 0.9rem 0;
  text-align: center;
  font-size: 0.88rem;
  font-family: var(--main-font);
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(122, 59, 94, 0.25);
}

.features-list {
  list-style: none;
  margin: 0.8rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.45rem;
  padding: 0.6rem 0.9rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 4px var(--shadow-color);
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}

.features-list li:hover {
  border-left-color: var(--primary-color);
  transform: translateX(2px);
}

.feature-check {
  width: 18px;
  height: 18px;
  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.6rem;
  margin-top: 2px;
}

.features-list li span:last-child {
  font-size: 0.82rem;
  line-height: 1.5;
}

/* Wide block: ingredient/benefit highlights - horizontal steps */
.wide-block {
  padding: 2.5rem 1.5rem;
  background: var(--dark-color);
  color: white;
}

.wide-block-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.wide-block h2 {
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 1.6rem;
  letter-spacing: 0.8px;
}

.wide-block-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(201, 143, 175, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .wide-block-steps { grid-template-columns: repeat(4, 1fr); }
}

.wide-step {
  background: rgba(255,255,255,0.04);
  padding: 1.3rem 1.1rem;
  text-align: center;
  transition: background 0.25s ease;
}

.wide-step:hover { background: rgba(255,255,255,0.08); }

.wide-step .step-icon {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  display: block;
}

.wide-step h3 {
  font-family: var(--main-font);
  font-size: 0.88rem;
  color: var(--secondary-color);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.wide-step p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  background: #F0E6EC;
  padding: 2.5rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 0.6px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1060px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

.testimonial {
  background: white;
  padding: 1.1rem 1.2rem;
  border-radius: 10px;
  border-bottom: 3px solid var(--secondary-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: transform 0.25s ease;
}

.testimonial:hover { transform: translateY(-2px); }

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.testimonial-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.86rem;
  font-family: var(--main-font);
  color: var(--primary-color);
  letter-spacing: 0.3px;
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.81rem;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.5rem;
  border-top: 1px solid rgba(201, 143, 175, 0.1);
}

.footer-content {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  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.75rem;
  justify-content: center;
}

@media (min-width: 768px) { .footer-nav { justify-content: flex-end; } }

.footer-nav a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.77rem;
}

.footer-nav a:hover { color: var(--secondary-color); }

.footer-credit {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.35);
  font-size: 0.73rem;
  max-width: 1060px;
  margin: 0 auto;
}

.footer-credit a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-logo { color: white; }