:root {
  --primary-color: #6A4038;
  --secondary-color: #321C18;
  --accent-color: #B3D0D9;
  --light-color: #F5EDEC;
  --dark-color: #0C0806;
  --gradient-primary: linear-gradient(135deg, #8A5850 0%, #6A4038 100%);
  --hover-color: #060402;
  --background-color: #0C0806;
  --text-color: #EDE0DA;
  --border-color: rgba(106, 64, 56, 0.5);
  --divider-color: rgba(179, 208, 217, 0.1);
  --shadow-color: rgba(12, 8, 6, 0.75);
  --highlight-color: #B3D0D9;
  --highlight-bg: rgba(179, 208, 217, 0.09);
  --main-font: 'Oswald', 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 20% 20%, rgba(106, 64, 56, 0.3) 0%, transparent 42%),
    radial-gradient(ellipse at 80% 78%, rgba(106, 64, 56, 0.15) 0%, transparent 32%);
}

/* HEADER — full dark */
.site-header {
  padding: 1.2rem 0;
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(179, 208, 217, 0.1);
  position: relative;
  overflow: hidden;
}

.hd {
  display: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hd span {
  position: absolute;
}

/* Bold-editorial header decoration: two vertical bars on the right */
.hd span:nth-child(1) {
  right: 5%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(106, 64, 56, 0.6), transparent);
}

.hd span:nth-child(2) {
  right: 9%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(179, 208, 217, 0.15), transparent);
}

@media (min-width: 768px) {
  .hd {
    display: block;
  }
}

.header-inner {
  max-width: 1140px;
  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: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.product-section {
  padding: 2.5rem 0;
}

/* REVERSED: info left, image right — full dark bg */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr 295px;
    gap: 3.5rem;
    align-items: start;
  }
}

/* LEFT: info */
.info-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.product-eyebrow {
  font-family: var(--main-font);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

.info-col h1 {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(30px, 6.5vw, 54px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: .88;
}

.info-col h1 span {
  color: var(--accent-color);
}

.product-description {
  font-family: var(--alt-font);
  font-size: clamp(14px, 4vw, 15px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
}

.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: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.adv-list li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent-color);
}

.cta-highlight {
  background: rgba(106, 64, 56, 0.28);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-color);
  padding: 1.1rem 1.4rem;
}

.cta-highlight strong {
  display: block;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(14px, 4vw, 19px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.35;
}

.cta-highlight strong em {
  font-style: normal;
  color: var(--accent-color);
}

/* RIGHT: image in light container + guarantee + price */
.media-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* High-contrast light image box on dark background */
.image-wrap {
  background: #fff;
  border: 3px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem 1.25rem;
  text-align: center;
}

.image-wrap picture,
.image-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 258px;
  object-fit: contain;
  margin: 0 auto;
}

.guarantee-block {
  background: var(--highlight-bg);
  border: 1px solid rgba(179, 208, 217, 0.22);
  border-left: 3px solid var(--accent-color);
  padding: .9rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}

.guarantee-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--accent-color);
  margin-top: 2px;
}

.guarantee-block p {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 13.5px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.guarantee-block span {
  display: block;
  font-family: var(--alt-font);
  font-weight: 400;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
  text-transform: none;
  letter-spacing: 0;
}

.price-cta {
  padding: .85rem 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: .2rem;
}

.price-amount {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(22px, 5vw, 30px);
  color: #fff;
  line-height: 1;
}

.price-cur {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-left: .2rem;
}

.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.2rem;
  min-height: 50px;
  background: var(--accent-color);
  color: var(--dark-color);
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  flex: 1;
  transition: opacity .2s;
}

.btn-cart:hover {
  opacity: .88;
}

.btn-cart svg {
  width: 16px;
  height: 16px;
}

/* 4-COL FEATURES STRIP between product and testimonials */
.features-strip {
  background: rgba(106, 64, 56, 0.18);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.35rem 0;
}

.features-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

@media (min-width: 640px) {
  .features-strip-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.fs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .45rem;
}

.fs-icon {
  width: 50px;
  height: 50px;
  border-radius: 0;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(179, 208, 217, 0.18);
}

.fs-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-color);
}

.fs-item p {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.2;
}

.fs-item small {
  font-family: var(--alt-font);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.55);
}

/* TESTIMONIALS — also dark */
.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: 1140px;
  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(179, 208, 217, 0.14);
  padding: 1.4rem;
}

.t-header {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .55rem;
}

.t-avatar {
  width: 42px;
  height: 42px;
  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.6);
  border-top: 1px solid rgba(179, 208, 217, 0.1);
}

.footer-inner {
  max-width: 1140px;
  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: 1140px;
  margin: 0 auto;
  width: 100%;
}
.bg-gray-100,
.bg-white,
.bg-yellow-100,
.bg-blue-100,
.bg-red-100,
.bg-green-100,
.bg-gray-100 p,
.bg-white p,
.bg-yellow-100 p,
.bg-blue-100 p,
.bg-red-100 p,
.bg-green-100 p {
  color: #111A13;
}