:root {
  --primary-color: #7A5C3E;
  --secondary-color: #5A7A3E;
  --accent-color: #3E2C1A;
  --light-color: #F5EFE6;
  --dark-color: #2B1F12;
  --gradient-primary: linear-gradient(135deg, #7A5C3E 0%, #5A7A3E 100%);
  --hover-color: #6A4E34;
  --background-color: #FAF7F2;
  --text-color: #3A3028;
  --border-color: rgba(122, 92, 62, 0.18);
  --divider-color: rgba(122, 92, 62, 0.1);
  --shadow-color: rgba(43, 31, 18, 0.1);
  --highlight-color: #F0A55A;
  --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: concentric rings + scattered small squares */
.pattern-bg {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(122,92,62,0.05) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(90,122,62,0.05) 0%, transparent 55%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 30px,
      rgba(122,92,62,0.03) 30px,
      rgba(122,92,62,0.03) 31px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 30px,
      rgba(90,122,62,0.03) 30px,
      rgba(90,122,62,0.03) 31px
    );
  background-size: 100% 100%, 100% 100%, 31px 31px, 31px 31px;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
}

/* HEADER */
header {
  background: var(--dark-color);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.header-deco {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  display: none;
  gap: 8px;
  align-items: center;
}

.header-deco-line {
  width: 40px;
  height: 2px;
  background: rgba(240,165,90,0.3);
  border-radius: 2px;
}

.header-deco-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(240,165,90,0.25);
}

@media (min-width: 768px) {
  .header-deco { display: flex; }
}

.container {
  max-width: 1160px;
  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.6rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 1.5px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--highlight-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

/* MAIN */
main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 2rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section { grid-template-columns: 42% 58%; }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image-container {
  display: flex;
  justify-content: center;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.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: top border style */
.guarantee-block {
  background: var(--light-color);
  border-top: 3px solid var(--highlight-color);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  box-shadow: 0 2px 6px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.guarantee-block p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-color);
}

/* Feature items: horizontal rows with left icon */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px var(--shadow-color);
  border-right: 3px solid var(--secondary-color);
  transition: all 0.25s ease;
}

.feature-item:hover {
  border-right-color: var(--primary-color);
  transform: translateX(-2px);
}

.feature-icon {
  width: 34px;
  height: 34px;
  background: var(--gradient-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--main-font);
  color: var(--text-color);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.92rem;
  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: 1px;
  text-transform: uppercase;
}

.cart-button:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Product right */
.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.85rem;
  color: var(--accent-color);
  margin-bottom: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.price {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.6rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.87rem;
  margin-bottom: 1.1rem;
  line-height: 1.75;
  color: var(--text-color);
}

.product-description p + p { margin-top: 0.7rem; }

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 0.95rem 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  margin: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  font-family: var(--main-font);
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px var(--shadow-color);
}

.features-list {
  list-style: none;
  margin: 1rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
  padding: 0.7rem 0.9rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px var(--shadow-color);
  font-size: 0.84rem;
  border-bottom: 2px solid var(--border-color);
  transition: border-color 0.25s;
}

.features-list li:hover { border-bottom-color: var(--secondary-color); }

.feature-check {
  width: 18px;
  height: 18px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.62rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

/* PROMO BAND: full-width, card grid on warm background */
.promo-band {
  background: var(--light-color);
  border-top: 3px solid var(--highlight-color);
  border-bottom: 3px solid var(--highlight-color);
  padding: 2.2rem 1.5rem;
}

.promo-band-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.promo-band h2 {
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) { .promo-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .promo-grid { grid-template-columns: repeat(3, 1fr); } }

.promo-item {
  background: white;
  border-radius: 10px;
  padding: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 2px 8px var(--shadow-color);
  border-left: 3px solid var(--primary-color);
}

.promo-item-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.promo-item h3 {
  font-family: var(--main-font);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.promo-item p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* TESTIMONIALS */
.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 2.2rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  max-width: 1160px;
  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 1.2rem;
  border-radius: 10px;
  border-top: 2px solid var(--highlight-color);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
}

.testimonial-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-primary);
  border-radius: 6px;
  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);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

/* FOOTER */
footer {
  background: var(--dark-color);
  color: white;
  padding: 1.5rem 1.5rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-content {
  max-width: 1160px;
  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.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: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  font-size: 0.74rem;
  max-width: 1160px;
  margin: 0 auto;
}

.footer-credit a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}