:root {
  --primary-color: #7B5E3A;
  --secondary-color: #5C4020;
  --accent-color: #D4A96A;
  --light-color: #FBF5EC;
  --dark-color: #2C1F0E;
  --gradient-primary: linear-gradient(135deg, #7B5E3A 0%, #5C4020 100%);
  --hover-color: #6A4E2E;
  --background-color: #FDF9F3;
  --text-color: #3A2E1E;
  --border-color: rgba(123, 94, 58, 0.16);
  --divider-color: rgba(92, 64, 32, 0.10);
  --shadow-color: rgba(44, 31, 14, 0.08);
  --highlight-color: #B85C28;
  --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: warm scattered circles */
.pattern-bg {
  background-image:
    radial-gradient(circle at 25% 15%, rgba(123, 94, 58, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 75% 85%, rgba(212, 169, 106, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(123, 94, 58, 0.025) 0%, transparent 60%),
    repeating-radial-gradient(circle at 0 0, transparent 0, transparent 14px, rgba(123,94,58,0.025) 14px, rgba(123,94,58,0.025) 15px);
  position: fixed;
  inset: 0;
  z-index: -1;
}

header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
  border-bottom: 2px solid var(--accent-color);
}

.header-deco-arc {
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 18px solid rgba(212,169,106,0.12);
  display: none;
}

.header-deco-dot {
  position: absolute;
  top: 50%; right: 28px;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.5;
  box-shadow: -18px 0 0 var(--accent-color), 18px 0 0 var(--accent-color);
  display: none;
}

@media (min-width: 768px) {
  .header-deco-arc, .header-deco-dot { display: block; }
}

.container {
  max-width: 1150px;
  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.55rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  width: fit-content;
}

.logo-icon {
  width: 34px; height: 34px;
  background: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.6rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: flex-start;
}

@media (min-width: 768px) { .product-section { grid-template-columns: 1fr 1fr; } }

.product-left { display: flex; flex-direction: column; gap: 0.8rem; }

.product-image-container {
  background: var(--light-color);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 10px var(--shadow-color);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.product-image { width: 100%; padding: 16px; height: auto; }

@media (min-width: 768px) { .product-image { padding: 16px 32px; } }

.guarantee-block {
  background: var(--light-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.guarantee-icon {
  font-size: 1.4rem;
  min-width: 28px;
  margin-top: 2px;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.guarantee-block p { font-size: 0.79rem; line-height: 1.55; }

/* Features: tags/badges row */
.features-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 3px var(--shadow-color);
  transition: all 0.2s ease;
}

.feature-item:hover { border-color: var(--accent-color); background: var(--light-color); }

.feature-icon {
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.feature-item span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--alt-font);
  white-space: nowrap;
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  text-align: center;
  font-family: var(--main-font);
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: all 0.25s ease;
}

.cart-button:hover { background: var(--hover-color); transform: translateY(-2px); }

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--highlight-color);
  margin: 0.6rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 0.9rem;
}

.product-description p + p { margin-top: 0.55rem; }

.highlight-text {
  background: var(--light-color);
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  font-weight: 700;
  text-align: center;
  font-size: 0.87rem;
  font-family: var(--main-font);
  color: var(--primary-color);
  margin: 0.9rem 0;
}

.features-list { list-style: none; margin: 0.9rem 0; }

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--divider-color);
}

.features-list li:last-child { border-bottom: none; }

.feature-check {
  width: 18px; height: 18px; min-width: 18px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.65rem;
  margin-top: 2px;
}

/* BENEFITS — icon on top, colored numbers */
.benefits-section {
  background: var(--light-color);
  padding: 2rem 1.2rem;
}

.benefits-content {
  max-width: 1150px;
  margin: 0 auto;
  text-align: center;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}

.benefits-section > .benefits-content > p {
  font-size: 0.83rem;
  color: var(--text-color);
  margin-bottom: 1.4rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.1rem 0.9rem;
  box-shadow: 0 2px 6px var(--shadow-color);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-color);
}

.benefit-card:hover { transform: translateY(-3px); box-shadow: 0 5px 14px var(--shadow-color); }

.benefit-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  display: block;
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.benefit-card p { font-size: 0.77rem; line-height: 1.5; color: var(--text-color); }

/* TESTIMONIALS */
.testimonials { background: var(--dark-color); padding: 2rem 1.2rem; }

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: 1150px;
  margin: 0 auto;
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }

.testimonial {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid rgba(212,169,106,0.2);
  transition: transform 0.2s ease;
}

.testimonial:hover { transform: translateY(-2px); }

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
}

.testimonial-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(212,169,106,0.15);
  border: 1px solid rgba(212,169,106,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.testimonial-name {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--accent-color);
}

.testimonial-location { font-size: 0.73rem; color: rgba(255,255,255,0.5); }
.testimonial p { font-size: 0.81rem; line-height: 1.6; color: rgba(255,255,255,0.82); }

footer { background: var(--dark-color); color: white; padding: 1.4rem 1.2rem; border-top: 1px solid rgba(255,255,255,0.06); }

.footer-content {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  padding-bottom: 0.9rem;
}

@media (min-width: 768px) {
  .footer-content { flex-direction: row; justify-content: space-between; align-items: center; }
}

.footer-content .logo { color: var(--accent-color); }
.footer-content .logo-icon { background: rgba(212,169,106,0.2); }

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

@media (min-width: 768px) { .footer-nav { justify-content: flex-end; } }

.footer-nav a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.76rem; transition: color 0.2s ease; }
.footer-nav a:hover { color: var(--accent-color); }

.footer-credit {
  text-align: center;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.38);
  font-size: 0.71rem;
  max-width: 1150px;
  margin: 0 auto;
}

.footer-credit a { color: var(--accent-color); text-decoration: none; }