:root {
  --primary-color: #B85C38;
  --secondary-color: #8C3E22;
  --accent-color: #D4763B;
  --light-color: #FDF0E8;
  --dark-color: #2A1810;
  --gradient-primary: linear-gradient(135deg, #C96A3F 0%, #9A4025 100%);
  --hover-color: #9A4025;
  --background-color: #FBF5EF;
  --text-color: #3D2B1F;
  --border-color: rgba(184, 92, 56, 0.16);
  --divider-color: rgba(184, 92, 56, 0.08);
  --shadow-color: rgba(42, 24, 16, 0.10);
  --highlight-color: #F2D57F;
  --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-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background-image:
    repeating-radial-gradient(circle at 0% 50%, transparent 0, transparent 28px, rgba(184,92,56,0.03) 28px, rgba(184,92,56,0.03) 29px),
    repeating-radial-gradient(circle at 100% 0%, transparent 0, transparent 20px, rgba(212,118,59,0.03) 20px, rgba(212,118,59,0.03) 21px),
    linear-gradient(rgba(251,245,239,0) 0%, rgba(251,245,239,0) 100%);
}

header {
  background: var(--dark-color);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.header-deco {
  position: absolute;
  top: 0; right: 0;
  width: 240px; height: 100%;
  display: none;
  pointer-events: none;
}

.header-deco::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
  width: 44px; height: 44px;
  border-radius: 4px;
  transform: translateY(-50%) rotate(30deg);
  border: 1px solid rgba(212,118,59,0.22);
}

.header-deco::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 150px;
  width: 20px; height: 20px;
  border-radius: 4px;
  transform: translateY(-50%) rotate(15deg);
  background: rgba(242,213,127,0.07);
  border: 1px solid rgba(242,213,127,0.18);
}

@media (min-width: 768px) { .header-deco { display: block; } }

.container {
  max-width: 1050px;
  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.5rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 2px;
  width: fit-content;
}

.logo-icon {
  width: 32px; height: 32px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

main {
  flex: 1;
  padding: 1.8rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section { grid-template-columns: 38% 62%; }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-image-container {
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 12px var(--shadow-color);
  overflow: hidden;
}

.product-image-container picture {
  display: flex;
  justify-content: center;
  width: 100%;
}

.product-image {
  width: 60%;
  padding: 16px;
  height: auto;
  transition: transform 0.3s ease;
}

.product-image:hover { transform: scale(1.02); }

.guarantee-block {
  background: white;
  border-top: 3px solid var(--primary-color);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  box-shadow: 0 2px 7px var(--shadow-color);
  text-align: center;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.guarantee-block p {
  font-size: 0.79rem;
  line-height: 1.65;
  color: var(--text-color);
}

/* Horizontal list layout — differs from v1 grid */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.85rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px var(--shadow-color);
  border-left: 3px solid var(--accent-color);
  transition: transform 0.3s ease;
}

.feature-item:hover { transform: translateX(3px); }

.feature-icon {
  width: 34px; height: 34px;
  background: var(--light-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.feature-item span {
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--main-font);
  color: var(--text-color);
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.8rem 1.4rem;
  border: none;
  border-radius: 8px;
  font-size: 0.87rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 3px 8px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cart-button:hover { opacity: 0.88; transform: translateY(-1px); }

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.55rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.25;
}

.price {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.5rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.83rem;
  margin-bottom: 0.9rem;
  line-height: 1.7;
  color: var(--text-color);
}

.product-description p + p { margin-top: 0.55rem; }

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  margin: 0.9rem 0;
  text-align: center;
  font-size: 0.84rem;
  font-family: var(--main-font);
  box-shadow: 0 2px 6px var(--shadow-color);
  letter-spacing: 0.4px;
}

.features-list {
  list-style: none;
  margin: 0.8rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
  padding: 0.55rem 0.8rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px var(--shadow-color);
  border-bottom: 2px solid var(--light-color);
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.features-list li:hover { box-shadow: 0 3px 8px var(--shadow-color); }

.feature-check {
  width: 17px; height: 17px;
  background: var(--primary-color);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.55rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Benefits band — horizontal scrolling steps style */
.benefits-band {
  background: var(--light-color);
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  padding: 2rem 1.5rem;
}

.benefits-band-inner {
  max-width: 1050px;
  margin: 0 auto;
}

.benefits-band h2 {
  font-family: var(--main-font);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.3rem;
  color: var(--secondary-color);
  letter-spacing: 0.5px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 600px) { .benefits-grid { grid-template-columns: 1fr 1fr 1fr; } }

.benefit-item {
  background: white;
  border-radius: 10px;
  padding: 1.1rem 0.9rem;
  text-align: center;
  box-shadow: 0 2px 8px var(--shadow-color);
  border-bottom: 3px solid var(--accent-color);
  position: relative;
}

.benefit-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 24px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-family: var(--main-font);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon { font-size: 1.6rem; margin-bottom: 0.5rem; margin-top: 0.3rem; }

.benefit-item h3 {
  font-family: var(--main-font);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--secondary-color);
  letter-spacing: 0.3px;
}

.benefit-item p {
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--text-color);
}

.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.4rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: 1050px;
  margin: 0 auto;
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }

.testimonial {
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 10px;
  border-left: 3px solid var(--accent-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}

.testimonial-icon {
  width: 36px; height: 36px;
  background: var(--gradient-primary);
  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.84rem;
  font-family: var(--main-font);
}

.testimonial p {
  font-size: 0.79rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.80);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.3rem 1.5rem 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-content {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  padding-bottom: 0.85rem;
}

@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.65rem;
  justify-content: center;
}

@media (min-width: 768px) { .footer-nav { justify-content: flex-end; } }

.footer-nav a {
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  font-size: 0.73rem;
  transition: color 0.3s;
}

.footer-nav a:hover { color: white; }

.footer-credit {
  text-align: center;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.38);
  font-size: 0.70rem;
  max-width: 1050px;
  margin: 0 auto;
}

.footer-credit a { color: rgba(255,255,255,0.58); text-decoration: none; }