:root {
  --primary-color: #5D4E75;
  --secondary-color: #7A6690;
  --accent-color: #9B86AE;
  --light-color: #F2EEF7;
  --dark-color: #2E2240;
  --gradient-primary: linear-gradient(135deg, #5D4E75 0%, #7A6690 100%);
  --hover-color: #4A3C60;
  --background-color: #F8F6FB;
  --text-color: #3C3448;
  --border-color: rgba(93, 78, 117, 0.14);
  --divider-color: rgba(93, 78, 117, 0.08);
  --shadow-color: rgba(46, 34, 64, 0.1);
  --highlight-color: #F0A55A;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Poppins', 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 - hexagonal-ish soft mesh */
.pattern-bg {
  background-image:
    repeating-linear-gradient(0deg, rgba(93,78,117,0.04) 0px, rgba(93,78,117,0.04) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(90deg, rgba(93,78,117,0.04) 0px, rgba(93,78,117,0.04) 1px, transparent 1px, transparent 28px);
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

header {
  background: var(--primary-color);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
}

header::before,
header::after { content: ''; position: absolute; display: none; }
@media (min-width: 768px) {
  header::before {
    display: block;
    top: -10px; right: 60px;
    width: 70px; height: 70px;
    background: rgba(240,165,90,0.12);
    border-radius: 50%;
  }
  header::after {
    display: block;
    bottom: -15px; right: 140px;
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
  }
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  width: fit-content;
  text-transform: uppercase;
}

.logo-icon {
  width: 32px; height: 32px;
  background: var(--highlight-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transform: rotate(45deg);
}
.logo-icon span { transform: rotate(-45deg); display: block; }

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.8rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .product-section { grid-template-columns: 1fr 1.2fr; }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image-container {
  border-radius: 10px;
  box-shadow: 0 4px 14px var(--shadow-color);
  background: white;
  padding: 1rem;
  border: 1px solid var(--border-color);
  text-align: center;
}
.product-image-container picture { display: flex; justify-content: center; }
.product-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.product-image:hover { transform: scale(1.03); }

.guarantee-block {
  background: var(--primary-color);
  color: white;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px var(--shadow-color);
}
.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--highlight-color);
  margin-bottom: 0.35rem;
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.guarantee-block p { font-size: 0.81rem; line-height: 1.5; opacity: 0.9; }

/* feature-item: 2-col grid with icon-only style */
.features-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  padding: 0.7rem 0.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.feature-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}
.feature-item .feature-icon {
  width: 38px; height: 38px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}
.feature-item span {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--main-font);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 8px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 14px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 0.55rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.6rem 0;
  font-family: var(--main-font);
}
.product-description {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  line-height: 1.68;
  color: var(--text-color);
}
.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  margin: 0.9rem 0;
  text-align: center;
  font-size: 0.88rem;
  font-family: var(--main-font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.features-list {
  list-style: none;
  margin: 0.8rem 0;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
  padding: 0.6rem 0.8rem;
  background: white;
  border-radius: 7px;
  box-shadow: 0 2px 5px var(--shadow-color);
  font-size: 0.83rem;
  border-right: 3px solid var(--accent-color);
  transition: all 0.3s ease;
}
.features-list li:hover { transform: translateX(-3px); }
.feature-check {
  width: 17px; height: 17px;
  background: var(--accent-color);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.7rem;
}

/* Benefits block — full-width icon row */
.benefits-block {
  background: var(--light-color);
  padding: 2rem 1.5rem;
}
.benefits-block h2 {
  font-family: var(--main-font);
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  max-width: 1150px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(5, 1fr); }
}
.benefit-card {
  background: white;
  border-radius: 8px;
  padding: 1rem 0.8rem;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 6px var(--shadow-color);
  transition: transform 0.3s ease;
}
.benefit-card:hover { transform: translateY(-3px); }
.benefit-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.45rem;
  display: block;
}
.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 0.82rem;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.benefit-card p { font-size: 0.78rem; color: var(--text-color); line-height: 1.4; }

/* Testimonials */
.testimonials {
  background: var(--dark-color);
  padding: 2rem 1.5rem;
}
.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1150px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
.testimonial {
  background: rgba(255,255,255,0.06);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--highlight-color);
  transition: transform 0.3s ease;
}
.testimonial:hover { transform: translateY(-2px); }
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}
.testimonial-icon {
  width: 36px; height: 36px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.87rem;
  font-family: var(--main-font);
  color: var(--highlight-color);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.testimonial p { line-height: 1.55; font-size: 0.83rem; color: rgba(255,255,255,0.87); }

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  padding: 1.5rem;
}
.footer-content {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  padding-bottom: 0.9rem;
}
@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.75rem;
  justify-content: center;
}
@media (min-width: 768px) { .footer-nav { justify-content: flex-end; } }
.footer-nav a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.81rem;
}
.footer-nav a:hover { color: var(--highlight-color); }
.footer-credit {
  text-align: center;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.48);
  font-size: 0.77rem;
  max-width: 1150px;
  margin: 0 auto;
}
.footer-credit a { color: var(--highlight-color); text-decoration: none; }