:root {
  --primary-color: #9C4A1A;
  --secondary-color: #F2D4C9;
  --accent-color: #7A3410;
  --light-color: #FDF4EF;
  --dark-color: #2E1A0E;
  --gradient-primary: linear-gradient(135deg, #B05A28 0%, #9C4A1A 100%);
  --hover-color: #7A3410;
  --background-color: #FBF5F0;
  --text-color: #3D2210;
  --border-color: rgba(156, 74, 26, 0.15);
  --divider-color: rgba(156, 74, 26, 0.08);
  --shadow-color: rgba(46, 26, 14, 0.1);
  --highlight-color: #5D6D7E;
  --main-font: 'Lora', serif;
  --alt-font: 'Lato', 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 lines + soft circles */
.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 30px,
      rgba(156, 74, 26, 0.03) 30px,
      rgba(156, 74, 26, 0.03) 31px
    ),
    radial-gradient(ellipse at 80% 20%, rgba(242, 212, 201, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(156, 74, 26, 0.06) 0%, transparent 40%);
}

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: 0; right: 0;
  width: 120px; height: 100%;
  display: none;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2rem;
  gap: 6px;
}

.header-deco span {
  display: block;
  width: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

.header-deco span:nth-child(1) { height: 28px; }
.header-deco span:nth-child(2) { height: 18px; }
.header-deco span:nth-child(3) { height: 34px; }
.header-deco span:nth-child(4) { height: 14px; }
.header-deco span:nth-child(5) { height: 22px; }

@media (min-width: 768px) { .header-deco { display: flex; } }

.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.65rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.5px;
  font-style: italic;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border: 2px solid rgba(255,255,255,0.4);
}

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 14px var(--shadow-color);
  overflow: hidden;
  position: relative;
}

.product-image-container::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.product-image-container picture {
  display: flex;
  justify-content: center;
  width: 100%;
}

.product-image {
  width: 60%;
  height: auto;
  padding: 22px;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.product-image:hover { transform: scale(1.02); }

.guarantee-block {
  background: white;
  padding: 1.1rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-color);
  border: 1px solid var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '★';
  position: absolute;
  top: -8px; right: 10px;
  font-size: 3.5rem;
  color: var(--secondary-color);
  opacity: 0.4;
  line-height: 1;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.guarantee-block p {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--text-color);
}

/* Feature items: horizontal row with left border accent */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px var(--shadow-color);
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(3px);
  border-left-color: var(--highlight-color);
}

.feature-item .feature-icon {
  width: 34px;
  height: 34px;
  background: var(--light-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--alt-font);
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 10px;
  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(156, 74, 26, 0.3);
  font-family: var(--main-font);
  letter-spacing: 0.3px;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, #8C3E18 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(156, 74, 26, 0.35);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  font-weight: 700;
  line-height: 1.3;
  font-style: italic;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0.7rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.87rem;
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.product-description p + p { margin-top: 0.75rem; }

.highlight-text {
  background: var(--secondary-color);
  color: var(--accent-color);
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  margin: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  font-family: var(--main-font);
  font-style: italic;
  border: 2px solid rgba(156, 74, 26, 0.2);
}

.features-list {
  list-style: none;
  margin: 1rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.7rem 0.85rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px var(--shadow-color);
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--secondary-color);
}

.features-list li:hover {
  box-shadow: 0 4px 12px var(--shadow-color);
  border-bottom-color: var(--primary-color);
}

.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: 1px;
}

.features-list li span:last-child {
  font-size: 0.8rem;
  line-height: 1.45;
}

/* Benefits: horizontal cards with top icon, warm bg */
.benefits-section {
  background: var(--secondary-color);
  padding: 2.5rem 1.5rem;
}

.benefits-content {
  max-width: 1150px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  color: var(--accent-color);
  text-align: center;
  font-style: italic;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
  background: white;
  padding: 1.4rem 1.2rem;
  border-radius: 14px;
  border-top: 4px solid var(--primary-color);
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px var(--shadow-color);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 0.85rem;
  border: 2px solid var(--secondary-color);
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-style: italic;
}

.benefit-card p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-color);
}

.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 2.5rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--secondary-color);
  font-style: italic;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  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);
  padding: 1.2rem 1.3rem;
  border-radius: 12px;
  border: 1px solid rgba(242, 212, 201, 0.15);
  transition: transform 0.3s ease;
}

.testimonial:hover { transform: translateY(-2px); }

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.testimonial-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--main-font);
  color: var(--secondary-color);
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.8);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
  max-width: 1150px;
  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.8rem;
  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;
  transition: color 0.3s ease;
  font-size: 0.79rem;
}

.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.38);
  font-size: 0.75rem;
  max-width: 1150px;
  margin: 0 auto;
}

.footer-credit a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-logo { color: white; }