:root {
  --primary-color: #5A5048;
  --secondary-color: #2A2420;
  --accent-color: #F0A55A;
  --light-color: #F0EEE8;
  --dark-color: #100E0C;
  --gradient-primary: linear-gradient(135deg, #7A7068 0%, #5A5048 100%);
  --hover-color: #080604;
  --background-color: #FDFCFA;
  --text-color: #100E0C;
  --border-color: rgba(90, 80, 72, 0.18);
  --divider-color: rgba(90, 80, 72, 0.09);
  --shadow-color: rgba(16, 14, 12, 0.06);
  --highlight-color: #F0A55A;
  --highlight-bg: rgba(240, 165, 90, 0.1);
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Open Sans', 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;
}

/* Subtle grid pattern — corporate-clean */
.pattern-bg {
  background-color: var(--background-color);
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(90, 80, 72, 0.025) 0,
      rgba(90, 80, 72, 0.025) 1px,
      transparent 0,
      transparent 52px
    ),
    radial-gradient(ellipse at 94% 5%, rgba(90, 80, 72, 0.07) 0%, transparent 26%);
}

/* HEADER — dark */
.site-header {
  padding: 1.2rem 0;
  background: var(--dark-color);
  border-bottom: 1px solid rgba(240, 165, 90, 0.12);
  position: relative;
  overflow: hidden;
}

.hd {
  display: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hd span {
  position: absolute;
}

/* Three nested ovals (lens) as decoration on right */
.hd span:nth-child(1) {
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(90, 80, 72, 0.48);
}

.hd span:nth-child(2) {
  right: 5.5%;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(240, 165, 90, 0.18);
}

.hd span:nth-child(3) {
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240, 165, 90, 0.12);
}

@media (min-width: 768px) {
  .hd {
    display: block;
  }
}

.header-inner {
  max-width: 1150px;
  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, 26px);
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.logo-text em {
  font-style: normal;
  color: var(--accent-color);
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.product-section {
  padding: 2.5rem 0;
}

/* REVERSED: info left, image right */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr 290px;
    gap: 3.5rem;
    align-items: start;
  }
}

/* LEFT: info */
.info-col {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.product-eyebrow {
  font-family: var(--main-font);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.info-col h1 {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(28px, 6.5vw, 52px);
  color: var(--dark-color);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: .9;
}

.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);
}

/* PULL-QUOTE style CTA — distinct from standard cta-highlight boxes */
.pull-quote {
  border: 1px solid var(--border-color);
  border-left: 5px solid var(--accent-color);
  border-radius: 0 10px 10px 0;
  background: var(--highlight-bg);
  padding: 1rem 1.3rem;
  position: relative;
}

.pull-quote::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 48px;
  color: rgba(90, 80, 72, 0.12);
  position: absolute;
  top: -.25rem;
  left: .75rem;
  line-height: 1;
}

.pull-quote strong {
  display: block;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(14px, 4vw, 18px);
  color: var(--dark-color);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

.pull-quote strong em {
  font-style: normal;
  color: var(--primary-color);
}

/* RIGHT: image + guarantee + features + price */
.media-col {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.image-wrap {
  background: var(--light-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.6rem 1.1rem;
  text-align: center;
}

.image-wrap picture,
.image-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 252px;
  object-fit: contain;
  margin: 0 auto;
}

.guarantee-block {
  background: var(--highlight-bg);
  border: 1px solid rgba(240, 165, 90, 0.3);
  border-radius: 10px;
  padding: .85rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}

.guarantee-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  margin-top: 2px;
}

.guarantee-block p {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 12.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: 11px;
  color: var(--text-color);
  margin-top: 2px;
  text-transform: none;
  letter-spacing: 0;
}

/* Compact vertical features in right col */
.feat-label {
  font-family: var(--main-font);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: .55rem .75rem;
}

.fi-circle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fi-circle svg {
  width: 18px;
  height: 18px;
  color: var(--accent-color);
}

.fi-text p {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 11.5px;
  color: var(--dark-color);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.fi-text small {
  font-family: var(--alt-font);
  font-size: 10px;
  color: var(--text-color);
}

.price-cta {
  border-top: 1px solid var(--border-color);
  padding-top: .85rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: .15rem;
}

.price-sym {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-color);
}

.price-amount {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(22px, 5vw, 28px);
  color: var(--dark-color);
  line-height: 1;
}

.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.1rem;
  min-height: 50px;
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity .2s;
  flex: 1;
}

.btn-cart:hover {
  opacity: .88;
}

.btn-cart svg {
  width: 16px;
  height: 16px;
}

/* HOW TO USE — 3-step full-width strip */
.howto-strip {
  background: var(--dark-color);
  border-top: 1px solid rgba(240, 165, 90, 0.14);
  border-bottom: 1px solid rgba(240, 165, 90, 0.14);
  padding: 1.75rem 0;
}

.howto-strip-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.howto-label {
  font-family: var(--main-font);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-bottom: 1.1rem;
}

.howto-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}

@media (min-width: 640px) {
  .howto-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.howto-step {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  border: 1px solid rgba(90, 80, 72, 0.45);
  border-radius: 10px;
  padding: .85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.step-num {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(20px, 4vw, 26px);
  color: rgba(240, 165, 90, 0.22);
  line-height: 1;
  min-width: 32px;
  letter-spacing: -.02em;
}

.step-text p {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 12.5px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}

.step-text small {
  font-family: var(--alt-font);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--secondary-color);
  border-top: 2px solid var(--accent-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: #fff;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.section-title h2 em {
  font-style: normal;
  color: var(--accent-color);
}

.section-title-bar {
  width: 40px;
  height: 1px;
  background: var(--accent-color);
  margin: .55rem auto 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(240, 165, 90, 0.14);
  border-radius: 10px;
  padding: 1.4rem;
}

.t-header {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .55rem;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  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: 13px;
  letter-spacing: .05em;
  color: var(--accent-color);
}

.t-name {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 13.5px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.t-loc {
  font-family: var(--alt-font);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.t-stars {
  display: flex;
  gap: 2px;
  margin-bottom: .5rem;
}

.t-stars svg {
  width: 13px;
  height: 13px;
  fill: var(--accent-color);
}

.t-text {
  font-family: var(--alt-font);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

/* FOOTER */
.site-footer {
  background: rgba(0, 0, 0, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
  max-width: 1150px;
  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: 19px;
  color: #fff;
  letter-spacing: .1em;
  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: 1150px;
  margin: 0 auto;
  width: 100%;
}