:root {
  --primary-color: #7A4A2E;
  --secondary-color: #5C3320;
  --accent-color: #B07048;
  --light-color: #F5EDE6;
  --dark-color: #2E1A0E;
  --gradient-primary: linear-gradient(135deg, #7A4A2E 0%, #5C3320 100%);
  --hover-color: #8E5636;
  --background-color: #FBF7F4;
  --text-color: #3A2618;
  --border-color: rgba(122, 74, 46, 0.16);
  --divider-color: rgba(122, 74, 46, 0.1);
  --shadow-color: rgba(92, 51, 32, 0.1);
  --highlight-color: #F0D9C8;
  --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 {
  background-image:
    radial-gradient(ellipse at 10% 20%, rgba(176,112,72,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 70%, rgba(122,74,46,0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(240,217,200,0.04) 0%, transparent 60%);
  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 10px var(--shadow-color);
}

.header-deco {
  position: absolute;
  right: 5%;
  top: 0; bottom: 0;
  display: none;
  align-items: center;
  gap: 1rem;
}

.header-deco-line {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.2);
}

.header-deco-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

@media (min-width: 768px) { .header-deco { display: flex; } }

.container {
  max-width: 1000px;
  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.7rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.05em;
}

.logo-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 1.5px 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: 45% 55%; }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image-container {
  display: flex;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 4px 18px var(--shadow-color);
  padding: 20px 28px;
  background: white;
  border: 1px solid var(--border-color);
}

.product-image-container picture { display: flex; justify-content: center; }

.product-image {
  width: 72%;
  height: auto;
  transition: transform 0.3s ease;
}

.product-image:hover { transform: scale(1.03); }

.guarantee-block {
  background: var(--light-color);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--accent-color);
  padding: 1rem 1.1rem;
  border-radius: 6px;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  font-size: 0.87rem;
  font-weight: 700;
}

.guarantee-block p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-color);
}

/* feature-item: horizontal row style */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.9rem;
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 6px var(--shadow-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--accent-color);
  transform: translateX(3px);
}

.feature-item .feature-icon {
  width: 36px; height: 36px;
  background: var(--light-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.feature-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 3px 12px var(--shadow-color);
  font-family: var(--main-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 16px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.9rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.6rem 0;
  font-family: var(--main-font);
  display: inline-block;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.2rem;
}

.product-description {
  font-size: 0.88rem;
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-color);
}

.product-description p { margin-bottom: 0.75rem; }

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  margin: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  font-family: var(--main-font);
  letter-spacing: 0.02em;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.features-list {
  list-style: none;
  margin: 0.8rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.6rem 0.75rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 1px 5px var(--shadow-color);
  border: 1px solid var(--border-color);
  font-size: 0.82rem;
  line-height: 1.4;
  transition: border-color 0.2s ease;
}

.features-list li:hover { border-color: var(--accent-color); }

.feature-check {
  width: 16px; height: 16px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.6rem;
  margin-top: 1px;
}

/* advantages – timeline style */
.advantages-section {
  background: var(--dark-color);
  padding: 2rem 1.5rem;
  color: white;
}

.advantages-section h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.03em;
}

.adv-timeline {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.adv-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0; bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.15);
}

@media (min-width: 768px) {
  .adv-timeline {
    flex-direction: row;
    gap: 0;
  }
  .adv-timeline::before {
    left: 0; right: 0; top: 24px;
    width: auto; height: 2px;
  }
}

.adv-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1rem 1rem 0;
  flex: 1;
  position: relative;
}

@media (min-width: 768px) {
  .adv-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
  }
}

.adv-step-icon {
  width: 48px; height: 48px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.adv-step-text h3 {
  font-family: var(--main-font);
  font-size: 0.92rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.3rem;
}

.adv-step-text p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* testimonials */
.testimonials {
  background: var(--light-color);
  color: var(--text-color);
  padding: 2.2rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

.testimonial {
  background: white;
  padding: 1.1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px var(--shadow-color);
  border-color: var(--accent-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.testimonial-icon {
  width: 38px; height: 38px;
  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.88rem;
  font-family: var(--main-font);
  color: var(--primary-color);
}

.testimonial-city { font-size: 0.76rem; color: #6b5a4e; }

.testimonial p {
  line-height: 1.55;
  font-size: 0.84rem;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.8rem 1.5rem;
}

.footer-content {
  max-width: 1000px;
  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.9rem;
  justify-content: center;
}

@media (min-width: 768px) { .footer-nav { justify-content: flex-end; } }

.footer-nav a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.8rem;
}

.footer-nav a:hover { color: white; }

.footer-credit {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  font-size: 0.74rem;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-credit a { color: var(--light-color); text-decoration: none; }