:root {
  --primary-color: #6E5E28;
  --secondary-color: #382E10;
  --accent-color: #B3D0D9;
  --light-color: #F4EFE3;
  --dark-color: #1A1608;
  --gradient-primary: linear-gradient(135deg, #8E7E3A 0%, #6E5E28 100%);
  --hover-color: #0E0C04;
  --background-color: #FDFBF5;
  --text-color: #1A1608;
  --border-color: rgba(110, 94, 40, 0.18);
  --divider-color: rgba(110, 94, 40, 0.09);
  --shadow-color: rgba(26, 22, 8, 0.14);
  --highlight-color: #B3D0D9;
  --highlight-bg: rgba(179, 208, 217, 0.13);
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--alt-font);
  font-size: clamp(14px, 4vw, 16px);
  color: var(--text-color);
  background: var(--background-color);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
}

.pattern-bg {
  background-color: var(--background-color);
  background-image:
    radial-gradient(ellipse at 90% 5%, rgba(110, 94, 40, 0.1) 0%, transparent 30%),
    radial-gradient(ellipse at 5% 92%, rgba(179, 208, 217, 0.2) 0%, transparent 28%);
}

/* LIGHT HEADER */
.site-header {
  padding: 1.2rem 0;
  background: var(--light-color);
  border-bottom: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.hd {
  display: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hd span {
  position: absolute;
}

.hd span:nth-child(1) {
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(110, 94, 40, 0.2);
}

.hd span:nth-child(2) {
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(179, 208, 217, 0.35);
}

@media (min-width: 768px) {
  .hd {
    display: block;
  }
}

.header-inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(18px, 4vw, 25px);
  color: var(--dark-color);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.logo-text em {
  font-style: normal;
  color: var(--primary-color);
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.product-section {
  padding: 2.5rem 0;
}

/* Standard 2-col — WIDER image ratio on desktop (image: 55%, info: 45%) */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* LEFT: wider image col */
.left-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-wrap {
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 20px 60px var(--shadow-color);
}

.image-wrap picture,
.image-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  margin: 0 auto;
}

.guarantee-block {
  background: var(--highlight-bg);
  border: 2px solid rgba(179, 208, 217, 0.38);
  border-radius: 24px;
  padding: .95rem 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}

.guarantee-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--primary-color);
  margin-top: 2px;
}

.guarantee-block p {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--dark-color);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.guarantee-block span {
  display: block;
  font-family: var(--alt-font);
  font-weight: 400;
  font-size: 11.5px;
  color: var(--text-color);
  margin-top: 3px;
  text-transform: none;
  letter-spacing: 0;
}

.price-cta {
  border-top: 2px solid var(--border-color);
  padding: .85rem 0;
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: .2rem;
}

.price-sym {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-color);
}

.price-amount {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(24px, 5vw, 32px);
  color: var(--dark-color);
  line-height: 1;
}

.price-cur {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 13px;
  color: var(--primary-color);
  margin-left: .25rem;
}

.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.75rem;
  min-height: 50px;
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 20px 60px rgba(110, 94, 40, 0.3);
  transition: opacity .2s;
}

.btn-cart:hover {
  opacity: .9;
}

.btn-cart svg {
  width: 18px;
  height: 18px;
}

/* RIGHT: info col */
.info-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.product-eyebrow {
  font-family: var(--main-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.info-col h1 {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(24px, 5.5vw, 44px);
  color: var(--dark-color);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: .95;
}

.info-col h1 span {
  color: var(--primary-color);
}

.product-description {
  font-family: var(--alt-font);
  font-size: clamp(14px, 4vw, 15px);
  line-height: 1.9;
  color: var(--text-color);
}

.adv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.adv-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-family: var(--alt-font);
  font-size: 13.5px;
  color: var(--text-color);
  line-height: 1.55;
}

.adv-list li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary-color);
}

.cta-highlight {
  background: var(--gradient-primary);
  border-radius: 24px;
  padding: 1.15rem 1.5rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(110, 94, 40, 0.22);
}

.cta-highlight strong {
  display: block;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(13px, 4vw, 18px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.35;
}

.cta-highlight strong em {
  font-style: normal;
  color: var(--accent-color);
}

/* BENEFITS STRIP — dark contrast band between product and testimonials */
.benefits-strip {
  background: var(--dark-color);
  border-top: 2px solid var(--accent-color);
  border-bottom: 2px solid rgba(179, 208, 217, 0.18);
  padding: 1.4rem 0;
}

.benefits-strip-inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

@media (min-width: 640px) {
  .benefits-strip-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .45rem;
}

.bs-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(179, 208, 217, 0.12);
  border: 1px solid rgba(179, 208, 217, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bs-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-color);
}

.bs-item p {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.bs-item small {
  font-family: var(--alt-font);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.55);
}

/* TESTIMONIALS — light */
.testimonials-section {
  background: var(--light-color);
  border-top: 1px solid var(--border-color);
  padding: 2.75rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1.75rem;
}

.section-title h2 {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(18px, 4vw, 26px);
  color: var(--dark-color);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.section-title h2 em {
  font-style: normal;
  color: var(--primary-color);
}

.section-title-bar {
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  margin: .55rem auto 0;
  border-radius: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: 0 20px 60px var(--shadow-color);
}

.t-header {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .55rem;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  color: var(--accent-color);
}

.t-name {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--dark-color);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.t-loc {
  font-family: var(--alt-font);
  font-size: 11px;
  color: rgba(26, 22, 8, 0.5);
}

.t-stars {
  display: flex;
  gap: 2px;
  margin-bottom: .5rem;
}

.t-stars svg {
  width: 14px;
  height: 14px;
  fill: #8A7010;
}

.t-text {
  font-family: var(--alt-font);
  font-size: 13.5px;
  color: var(--text-color);
  line-height: 1.65;
}

/* FOOTER */
.site-footer {
  background: var(--secondary-color);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 1.15rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}

.footer-logo-icon {
  width: 26px;
  height: 26px;
}

.footer-logo-text {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.footer-logo-text em {
  font-style: normal;
  color: var(--accent-color);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
}

@media (min-width: 768px) {
  .footer-nav {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.footer-nav a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color .2s;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: .6rem 1.5rem;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  max-width: 1050px;
  margin: 0 auto;
  width: 100%;
}