:root {
  --primary-color: #4B1461;
  --secondary-color: #6A1E9C;
  --accent-color: #380E4A;
  --light-color: #F5EEF8;
  --dark-color: #200A2E;
  --gradient-primary: linear-gradient(135deg, #6A1E9C 0%, #4B1461 100%);
  --hover-color: #5A1878;
  --background-color: #FAF6FC;
  --text-color: #2E2035;
  --border-color: rgba(75, 20, 97, 0.15);
  --divider-color: rgba(75, 20, 97, 0.08);
  --shadow-color: rgba(32, 10, 46, 0.09);
  --highlight-color: #F0A55A;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Roboto', 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 BG — subtle diamond grid */
.pattern-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background-image:
    linear-gradient(45deg, rgba(75,20,97,0.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(75,20,97,0.04) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(75,20,97,0.04) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(75,20,97,0.04) 75%);
  background-size: 28px 28px;
  background-position: 0 0, 0 14px, 14px -14px, -14px 0px;
}

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: 240px; height: 100%;
  display: none;
  pointer-events: none;
}

.header-deco::before {
  content: '';
  position: absolute;
  top: 50%; right: 50px;
  transform: translateY(-50%);
  width: 55px; height: 55px;
  border: 1px solid rgba(106,30,156,0.3);
  transform: translateY(-50%) rotate(45deg);
}

.header-deco::after {
  content: '';
  position: absolute;
  top: 50%; right: 130px;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: rgba(240,165,90,0.1);
  border: 1px solid rgba(240,165,90,0.18);
  transform: translateY(-50%) rotate(45deg);
}

@media (min-width: 768px) { .header-deco { display: block; } }

.container {
  max-width: 1200px;
  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;
  letter-spacing: 2px;
  width: fit-content;
}

.logo-icon {
  width: 33px; height: 33px;
  background: transparent;
  border: 2px solid var(--highlight-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

main {
  flex: 1;
  padding: 1.8rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section { grid-template-columns: 38% 62%; }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.product-image-container {
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 12px var(--shadow-color);
  overflow: hidden;
}

.product-image-container picture {
  display: flex;
  justify-content: center;
  width: 100%;
}

.product-image {
  width: 60%;
  padding: 18px;
  height: auto;
  transition: transform 0.3s ease;
}

.product-image:hover { transform: scale(1.02); }

/* Guarantee — filled dark card */
.guarantee-block {
  background: var(--accent-color);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  box-shadow: 0 2px 7px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--highlight-color);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.guarantee-block p {
  font-size: 0.79rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
}

/* Feature items — colored bg mini-cards, 2 col grid */
.features-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 0.75rem 0.4rem;
  background: var(--light-color);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: white;
  box-shadow: 0 3px 10px var(--shadow-color);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px; height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.feature-item span {
  font-size: 0.67rem;
  font-weight: 700;
  font-family: var(--main-font);
  color: var(--accent-color);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.85rem 1.4rem;
  border: none;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 3px 10px rgba(75,20,97,0.3);
  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.4px;
}

.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.83rem;
  margin-bottom: 0.9rem;
  line-height: 1.75;
  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: 6px;
  font-weight: 700;
  margin: 0.9rem 0;
  text-align: center;
  font-size: 0.85rem;
  font-family: var(--main-font);
  box-shadow: 0 2px 6px var(--shadow-color);
  letter-spacing: 0.5px;
}

.features-list {
  list-style: none;
  margin: 0.8rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
  padding: 0.6rem 0.85rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 1px 4px var(--shadow-color);
  border: 1px solid var(--border-color);
  font-size: 0.81rem;
  transition: all 0.3s ease;
}

.features-list li:hover {
  border-color: var(--primary-color);
  transform: translateX(2px);
}

.feature-check {
  width: 17px; height: 17px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.58rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

/* BENEFITS — numbered steps on dark bg */
.benefits-band {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1.5rem;
}

.benefits-band-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-band h2 {
  font-family: var(--main-font);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--highlight-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}

@media (min-width: 640px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.1rem;
  background: var(--dark-color);
  position: relative;
}

.benefit-number {
  font-family: var(--main-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(240,165,90,0.25);
  line-height: 1;
}

.benefit-icon {
  font-size: 1.5rem;
  margin-top: -0.4rem;
}

.benefit-item h3 {
  font-family: var(--main-font);
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.benefit-item p {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}

/* TESTIMONIALS */
.testimonials {
  background: var(--light-color);
  color: var(--text-color);
  padding: 2rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }

.testimonial {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 7px var(--shadow-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.testimonial-icon {
  width: 36px; height: 36px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--main-font);
  color: var(--accent-color);
  letter-spacing: 0.3px;
}

.testimonial p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.3rem 1.5rem 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-content {
  max-width: 1200px;
  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.75rem;
  transition: color 0.3s;
}

.footer-nav a:hover { color: white; }

.footer-credit {
  text-align: center;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  font-size: 0.71rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-credit a { color: rgba(255,255,255,0.6); text-decoration: none; }