:root {
  --primary-color: #7D3A3A;
  --secondary-color: #5C2525;
  --accent-color: #F2D4C9;
  --light-color: #FBF3F0;
  --dark-color: #2A1010;
  --hover-color: #6A2F2F;
  --background-color: #FAF5F3;
  --text-color: #5A4040;
  --border-color: rgba(125, 58, 58, 0.18);
  --divider-color: rgba(92, 37, 37, 0.1);
  --shadow-color: rgba(92, 37, 37, 0.09);
  --highlight-color: #F0A55A;
  --main-font: 'Roboto Condensed', sans-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: soft wavy lines + corner blobs */
.pattern-bg {
  background-image:
    radial-gradient(ellipse at 0% 100%, rgba(242, 212, 201, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 0%, rgba(125, 58, 58, 0.07) 0%, transparent 45%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 38px,
      rgba(125, 58, 58, 0.025) 38px,
      rgba(125, 58, 58, 0.025) 39px
    );
  background-size: 100% 100%, 100% 100%, 100% 39px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* HEADER */
header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
  border-bottom: 3px solid var(--primary-color);
}

.header-deco {
  position: absolute;
  display: none;
}

@media (min-width: 768px) {
  .header-deco {
    display: block;
  }
  .header-deco.d1 {
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.15;
  }
  .header-deco.d2 {
    right: 6.5%;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.4;
  }
  .header-deco.d3 {
    right: 9%;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 3px;
    opacity: 0.12;
    transform: rotate(30deg);
  }
}

.container {
  max-width: 970px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  border-radius: 6px;
  border-bottom: 3px solid var(--hover-color);
}

/* MAIN */
main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.8rem 0;
  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: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.product-image-container {
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 6px;
  box-shadow: 0 3px 14px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.product-image {
  width: 100%;
  padding: 18px 40px;
  height: auto;
  border-radius: 6px;
}

@media (max-width: 767px) {
  .product-image {
    padding: 14px;
  }
}

.guarantee-block {
  background: var(--accent-color);
  color: var(--text-color);
  padding: 1rem 1.1rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guarantee-block p {
  font-size: 0.82rem;
  line-height: 1.55;
}

/* feature-item — numbered badge style */
.features-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.8rem 0.9rem;
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
  box-shadow: 0 1px 5px var(--shadow-color);
}

.feature-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 3px 10px var(--shadow-color);
}

.feature-icon {
  width: 34px;
  height: 34px;
  background: var(--accent-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Cart button */
.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 0.9rem 1.6rem;
  border: none;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 3px 10px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
}

/* Product right */
.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.1rem;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.7rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.86rem;
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-color);
}

.product-description p + p {
  margin-top: 0.6rem;
}

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 1rem 1.1rem;
  border-radius: 6px;
  font-weight: 700;
  margin: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.features-list {
  list-style: none;
  margin: 1rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
  padding: 0.65rem 0.9rem;
  background: white;
  border-radius: 6px;
  border-left: 3px solid var(--primary-color);
  box-shadow: 0 1px 5px var(--shadow-color);
  font-size: 0.83rem;
  transition: all 0.25s ease;
}

.features-list li:hover {
  transform: translateX(3px);
  background: var(--light-color);
}

.feature-check {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.72rem;
}

/* Benefits — timeline/steps style */
.benefits-section {
  padding: 2rem 1.2rem;
  background: var(--light-color);
  border-top: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
}

.benefits-content {
  max-width: 970px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.benefits-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

@media (min-width: 768px) {
  .benefits-steps {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}

.benefit-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.2rem 1rem;
  position: relative;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 0;
  transition: background 0.25s ease;
}

.benefit-step:first-child {
  border-radius: 8px 8px 0 0;
}

.benefit-step:last-child {
  border-radius: 0 0 8px 8px;
}

@media (min-width: 768px) {
  .benefit-step:first-child {
    border-radius: 8px 0 0 8px;
  }
  .benefit-step:last-child {
    border-radius: 0 8px 8px 0;
  }
  .benefit-step + .benefit-step {
    border-left: none;
  }
}

.benefit-step:hover {
  background: var(--light-color);
}

.step-number {
  width: 34px;
  height: 34px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--main-font);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  flex-shrink: 0;
}

.benefit-step-icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.benefit-step h3 {
  font-family: var(--main-font);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.benefit-step p {
  font-size: 0.79rem;
  line-height: 1.5;
  color: var(--text-color);
}

/* Testimonials */
.testimonials {
  background: var(--primary-color);
  padding: 2rem 1.2rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 970px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.testimonial-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 6px;
  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);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.testimonial-city {
  font-size: 0.76rem;
  color: var(--text-color);
}

.testimonial p {
  line-height: 1.6;
  font-size: 0.82rem;
  color: var(--text-color);
}

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  padding: 1.5rem 1.2rem;
}

.footer-content {
  max-width: 970px;
  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-content .logo {
  color: white;
}

.footer-content .logo-icon {
  background: var(--accent-color);
  color: var(--dark-color);
  border-bottom-color: var(--primary-color);
}

.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.75);
  text-decoration: none;
  transition: color 0.25s ease;
  font-size: 0.8rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.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.76rem;
  max-width: 970px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}