:root {
  --primary-color: #7A5C3A;
  --secondary-color: #A07850;
  --accent-color: #2A1E10;
  --light-color: #FAF5EE;
  --dark-color: #201408;
  --gradient-primary: linear-gradient(135deg, #7A5C3A 0%, #5D6D7E 100%);
  --hover-color: #654D30;
  --background-color: #FAF8F5;
  --text-color: #2E2416;
  --border-color: rgba(122, 92, 58, 0.14);
  --divider-color: rgba(122, 92, 58, 0.08);
  --shadow-color: rgba(32, 20, 8, 0.08);
  --highlight-color: #B3D0D9;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Poppins', 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: subtle triangle mosaic */
.pattern-bg {
  background-image:
    linear-gradient(60deg, rgba(122,92,58,0.03) 25%, transparent 25%),
    linear-gradient(-60deg, rgba(93,109,126,0.03) 25%, transparent 25%),
    linear-gradient(60deg, transparent 75%, rgba(122,92,58,0.03) 75%),
    linear-gradient(-60deg, transparent 75%, rgba(93,109,126,0.03) 75%);
  background-size: 30px 52px;
  position: fixed;
  inset: 0;
  z-index: -1;
}

header {
  background: var(--dark-color);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px var(--shadow-color);
}

.header-deco {
  position: absolute;
  top: 50%;
  right: 3.5%;
  transform: translateY(-50%);
  display: none;
}

.header-deco::before {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: rgba(179,208,217,0.2);
  border-radius: 2px;
  box-shadow: 0 8px 0 rgba(179,208,217,0.12), 0 16px 0 rgba(179,208,217,0.06);
}

@media (min-width: 768px) {
  .header-deco { display: block; }
}

.container {
  max-width: 1140px;
  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.55rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 2px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--highlight-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--dark-color);
  font-weight: 900;
  font-family: var(--main-font);
}

main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 1.8rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section { grid-template-columns: 5fr 6fr; }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.product-image-container {
  display: flex;
  justify-content: center;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 10px var(--shadow-color);
  overflow: hidden;
}

.product-image-container picture {
  display: flex;
  justify-content: center;
  width: 100%;
}

.product-image {
  width: 100%;
  padding: 18px;
  height: auto;
  transition: transform 0.3s ease;
}

.product-image:hover { transform: scale(1.02); }

.guarantee-block {
  background: white;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  box-shadow: 0 2px 7px var(--shadow-color);
  border-left: 3px solid var(--highlight-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.guarantee-block p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* Features icons: staggered row */
.features-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 0.65rem 0.3rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  box-shadow: 0 4px 10px var(--shadow-color);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.feature-item span {
  font-size: 0.66rem;
  font-weight: 600;
  font-family: var(--main-font);
  color: var(--text-color);
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 8px;
  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 8px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cart-button:hover { opacity: 0.88; transform: translateY(-1px); }

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 0.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.6rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.86rem;
  margin-bottom: 1rem;
  line-height: 1.75;
  color: var(--text-color);
}

.product-description p + p { margin-top: 0.6rem; }

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  margin: 1rem 0;
  text-align: center;
  font-size: 0.88rem;
  font-family: var(--main-font);
  box-shadow: 0 2px 6px var(--shadow-color);
  letter-spacing: 0.5px;
}

.features-list {
  list-style: none;
  margin: 0.9rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px var(--shadow-color);
  border-bottom: 2px solid var(--border-color);
  font-size: 0.83rem;
  transition: all 0.3s ease;
}

.features-list li:hover {
  border-bottom-color: var(--primary-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.6rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

/* BENEFITS: full-width horizontal scroll cards on mobile, 3-col desktop */
.benefits-band {
  background: var(--accent-color);
  color: white;
  padding: 2rem 1.5rem;
}

.benefits-band-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.benefits-band h2 {
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.benefits-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

@media (min-width: 640px) {
  .benefits-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .benefits-strip { grid-template-columns: repeat(3, 1fr); }
}

.benefit-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 0.85rem 1rem;
}

.benefit-strip-num {
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--highlight-color);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-strip-text h3 {
  font-family: var(--main-font);
  font-size: 0.86rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.2rem;
  letter-spacing: 0.3px;
}

.benefit-strip-text p {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}

/* TESTIMONIALS */
.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1140px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

.testimonial {
  background: rgba(255,255,255,0.05);
  padding: 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.09);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.testimonial-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--main-font);
  letter-spacing: 0.3px;
}

.testimonial p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.4rem 1.5rem 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  padding-bottom: 0.9rem;
}

@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.75rem;
  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;
  font-size: 0.78rem;
  transition: color 0.3s;
}

.footer-nav a:hover { color: white; }

.footer-credit {
  text-align: center;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  font-size: 0.73rem;
  max-width: 1140px;
  margin: 0 auto;
}

.footer-credit a { color: rgba(255,255,255,0.6); text-decoration: none; }