:root {
  --primary-color: #2e1a24;
  --secondary-color: #3d212a;
  --accent-color: #3a1b25;
  --light-color: #EAF4F1;
  --dark-color: #a14153;
  --gradient-primary: linear-gradient(135deg, #2e1a24 0%, #3a1b25 100%);
  --hover-color: #2E6158;
  --background-color: #F2F8F6;
  --text-color: #1E3530;
  --border-color: rgba(61, 122, 110, 0.17);
  --divider-color: rgba(61, 122, 110, 0.08);
  --shadow-color: rgba(22, 46, 40, 0.10);
  --highlight-color: #F4D03F;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Lato', 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: hexagonal dots */
.pattern-bg {
  background-image:
    radial-gradient(circle at 50% 0%, rgba(61,122,110,0.06) 2px, transparent 2px),
    radial-gradient(circle at 0% 50%, rgba(61,122,110,0.04) 2px, transparent 2px);
  background-size: 30px 30px, 30px 30px;
  background-position: 0 0, 15px 15px;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

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: 0; right: 0;
  width: 200px; height: 100%;
  pointer-events: none;
  display: none;
}

.header-deco::before {
  content: '';
  position: absolute;
  top: 50%; right: 55px;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border: 1px solid rgba(244,208,63,0.12);
  border-radius: 2px;
  rotate: 12deg;
}

.header-deco::after {
  content: '';
  position: absolute;
  top: 50%; right: 20px;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(90,159,140,0.12);
  border: 1px solid rgba(90,159,140,0.2);
}

@media (min-width: 768px) { .header-deco { display: block; } }

.container {
  max-width: 1100px;
  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.4rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 2.5px;
}

.logo-icon {
  width: 34px; height: 34px;
  background: var(--highlight-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 1.6rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section { grid-template-columns: 39% 61%; }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.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: 60%;
  padding: 16px;
  height: auto;
  transition: transform 0.3s ease;
}

.product-image:hover { transform: scale(1.02); }

.guarantee-block {
  background: white;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  box-shadow: 0 2px 6px var(--shadow-color);
  border: 1px solid var(--border-color);
  border-bottom: 3px solid var(--primary-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.guarantee-block p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* Feature items: stacked rows with left accent bar */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 5px var(--shadow-color);
  border-left: 3px solid var(--secondary-color);
  transition: border-left-color 0.2s ease, transform 0.2s ease;
}

.feature-item:hover {
  border-left-color: var(--primary-color);
  transform: translateX(2px);
}

.feature-icon {
  width: 34px; height: 34px;
  background: var(--light-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.77rem;
  font-weight: 700;
  font-family: var(--main-font);
  color: var(--text-color);
  letter-spacing: 0.3px;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.85rem 1.4rem;
  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.65rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.5rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.84rem;
  margin-bottom: 0.9rem;
  line-height: 1.8;
  color: var(--text-color);
}

.product-description p + p { margin-top: 0.6rem; }

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 0.8rem 1rem;
  border-radius: 7px;
  font-weight: 700;
  margin: 0.85rem 0;
  text-align: center;
  font-size: 0.88rem;
  font-family: var(--main-font);
  box-shadow: 0 2px 5px var(--shadow-color);
  letter-spacing: 0.3px;
}

.features-list {
  list-style: none;
  margin: 0.8rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
  padding: 0.6rem 0.85rem;
  background: white;
  border-radius: 7px;
  box-shadow: 0 1px 4px var(--shadow-color);
  border-top: 1px solid var(--border-color);
  font-size: 0.81rem;
  transition: all 0.2s ease;
}

.features-list li:hover {
  box-shadow: 0 3px 8px var(--shadow-color);
}

.feature-check {
  width: 17px; height: 17px;
  background: var(--secondary-color);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.58rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

/* BENEFITS — alternating colored tiles */
.benefits-band {
  background: var(--accent-color);
  padding: 2rem 0;
}

.benefits-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.benefits-band h2 {
  font-family: var(--main-font);
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.benefits-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 600px) { .benefits-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .benefits-tiles { grid-template-columns: repeat(4, 1fr); } }

.benefit-tile {
  padding: 1.2rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.benefit-tile:nth-child(odd) {
  background: rgba(255,255,255,0.05);
}

.benefit-tile:nth-child(even) {
  background: rgba(255,255,255,0.09);
}

.benefit-tile-icon {
  font-size: 1.7rem;
}

.benefit-tile h3 {
  font-family: var(--main-font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--highlight-color);
  letter-spacing: 0.5px;
}

.benefit-tile p {
  font-size: 0.77rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

/* TESTIMONIALS */
.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 1.8rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.3rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }

.testimonial {
  background: rgba(255,255,255,0.06);
  padding: 1rem 1.1rem;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--secondary-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.testimonial-icon {
  width: 36px; height: 36px;
  background: var(--primary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.86rem;
  font-family: var(--main-font);
  letter-spacing: 0.3px;
}

.testimonial p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.2rem 1.5rem 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  padding-bottom: 0.85rem;
}

@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.7rem;
  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.76rem;
  transition: color 0.3s;
}

.footer-nav a:hover { color: white; }

.footer-credit {
  text-align: center;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-credit a { color: rgba(255,255,255,0.55); text-decoration: none; }