:root {
  --primary-color: #8B3A1E;
  --secondary-color: #6B2C14;
  --accent-color: #C4622D;
  --light-color: #FDF0EA;
  --dark-color: #3A1A0A;
  --gradient-primary: linear-gradient(125deg, #8B3A1E 0%, #6B2C14 100%);
  --hover-color: #752F18;
  --background-color: #FFFAF7;
  --text-color: #4A3428;
  --border-color: rgba(196, 98, 45, 0.2);
  --shadow-color: rgba(139, 58, 30, 0.12);
  --highlight-color: #F2D57F;
  --main-font: 'Lora', serif;
  --alt-font: 'Roboto', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

/* PATTERN — diagonal hatching */
.pattern-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    -55deg,
    var(--primary-color) 0px,
    var(--primary-color) 1px,
    transparent 1px,
    transparent 18px
  );
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* HEADER */
header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  box-shadow: 0 2px 8px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.header-deco {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
  align-items: flex-end;
  opacity: 0.14;
  pointer-events: none;
}

.header-deco span {
  display: block;
  width: 10px;
  background: #ffffff;
  border-radius: 3px 3px 0 0;
}

.header-deco span:nth-child(1) { height: 32px; }
.header-deco span:nth-child(2) { height: 22px; }
.header-deco span:nth-child(3) { height: 40px; }
.header-deco span:nth-child(4) { height: 16px; }
.header-deco span:nth-child(5) { height: 28px; }

@media (max-width: 768px) {
  .header-deco { display: none; }
}

header .container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #ffffff;
  font-family: var(--main-font);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  transition: opacity 0.3s ease;
}

.logo:hover { opacity: 0.88; }
.logo-icon { font-size: 1.7rem; }

/* MAIN */
main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

main .container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: start;
}

/* LEFT */
.product-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(160deg, #ffffff 0%, var(--light-color) 100%);
  border-radius: 10px;
  padding: 1.3rem;
  box-shadow: 0 4px 14px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.product-image img {
  width: 54%;
  height: auto;
  display: block;
}

/* Guarantee — ribbon style */
.guarantee-block {
  background: #ffffff;
  border-radius: 8px;
  padding: 0.9rem 1rem 0.9rem 1.1rem;
  box-shadow: 0 2px 9px var(--shadow-color);
  border: 1px solid var(--border-color);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.guarantee-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.guarantee-text h3 {
  font-family: var(--main-font);
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.guarantee-text p {
  font-size: 0.82rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* FEATURE ITEMS — full-width pill with left colored bar */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  border-radius: 40px;
  padding: 0.55rem 1rem 0.55rem 0.55rem;
  box-shadow: 0 1px 6px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: transform 0.25s ease;
}

.feature-item:hover {
  transform: scale(1.015);
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.3;
}

.cart-button {
  display: block;
  background: var(--gradient-primary);
  color: #ffffff;
  text-decoration: none;
  padding: 0.82rem 1.6rem;
  border-radius: 40px;
  font-family: var(--main-font);
  font-size: 0.97rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.6px;
  box-shadow: 0 4px 12px var(--shadow-color);
  transition: all 0.3s ease;
}

.cart-button:hover {
  background: linear-gradient(125deg, var(--hover-color) 0%, var(--dark-color) 100%);
  transform: translateY(-2px);
}

/* RIGHT */
.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.95rem;
  font-family: var(--main-font);
}

.product-description {
  margin-bottom: 0.95rem;
  line-height: 1.74;
}

.product-description p {
  margin-bottom: 0.78rem;
  color: var(--text-color);
  font-size: 0.875rem;
}

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 0.82rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 0.95rem;
  border: 2px solid #d4b340;
  box-shadow: 0 2px 8px rgba(242,213,127,0.3);
}

.features-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.38rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.32rem 0.5rem;
  font-size: 0.82rem;
  color: var(--text-color);
  background: rgba(253, 240, 234, 0.7);
  border-radius: 4px;
}

.feature-check {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* BENEFITS — horizontal strip cards with large emoji left */
.benefits-banner {
  background: var(--dark-color);
  padding: 2.4rem 0;
  margin-top: 1.2rem;
}

.benefits-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.benefits-banner h2 {
  font-family: var(--main-font);
  font-size: 1.6rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.6rem;
  font-weight: 700;
}

.benefits-strips {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.benefit-strip {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 1rem 1.3rem;
  transition: background 0.25s ease;
}

.benefit-strip:hover {
  background: rgba(255,255,255,0.12);
}

.benefit-strip-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  flex-shrink: 0;
}

.benefit-strip-body h3 {
  font-family: var(--main-font);
  font-size: 0.98rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.benefit-strip-body p {
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials {
  background-color: var(--light-color);
  padding: 2.2rem 0;
  margin-top: 0;
  border-top: 3px solid var(--border-color);
}

.testimonials h2 {
  font-family: var(--main-font);
  font-size: 1.6rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 700;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.testimonials-grid {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.testimonial {
  background: #ffffff;
  padding: 1.1rem 1.2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow-color);
  border-left: 4px solid var(--accent-color);
  transition: transform 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.testimonial-icon { font-size: 1.9rem; }

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-color);
  font-family: var(--main-font);
}

.testimonial-city {
  font-size: 0.76rem;
  color: #9e7060;
}

.testimonial p {
  color: var(--text-color);
  line-height: 1.7;
  font-size: 0.83rem;
  font-style: italic;
}

/* FOOTER */
footer {
  background-color: var(--dark-color);
  color: rgba(255,255,255,0.86);
  padding: 1.4rem 0 0.85rem;
  margin-top: auto;
}

.footer-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

footer .logo { color: #ffffff; font-size: 1.3rem; }

.footer-nav {
  display: flex;
  list-style: none;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.81rem;
  transition: color 0.3s;
}

.footer-nav a:hover { color: #ffffff; }

.footer-credit {
  max-width: 980px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}

.footer-credit a:hover { color: #ffffff; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .product-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .product-right h1 { font-size: 1.8rem; }
  .price { font-size: 1.4rem; }
  .benefits-banner h2,
  .testimonials h2 { font-size: 1.38rem; }
  .benefit-strip {
    grid-template-columns: 52px 1fr;
    gap: 0.8rem;
  }
  .benefit-strip-icon { width: 52px; height: 52px; font-size: 1.5rem; }
}