:root {
  --primary-color: #6A4B6E;
  --secondary-color: #7D5A82;
  --accent-color: #A07EA6;
  --light-color: #F5EFF6;
  --dark-color: #2E1A32;
  --gradient-primary: linear-gradient(135deg, #6A4B6E 0%, #7D5A82 100%);
  --hover-color: #512A56;
  --background-color: #FAF7FB;
  --text-color: #3D2B42;
  --border-color: rgba(106, 75, 110, 0.14);
  --divider-color: rgba(106, 75, 110, 0.1);
  --shadow-color: rgba(46, 26, 50, 0.09);
  --highlight-color: #E8D9EA;
  --main-font: 'Oswald', 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: soft overlapping circles */
.pattern-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(106,75,110,0.05) 0%, transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(160,126,166,0.05) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(106,75,110,0.03) 0%, transparent 55%),
    repeating-radial-gradient(circle at 70% 30%, transparent 0px, transparent 22px, rgba(106,75,110,0.025) 22px, rgba(106,75,110,0.025) 24px);
  pointer-events: none;
}

/* =================== HEADER =================== */
header {
  background-color: var(--dark-color);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow-color);
}

.header-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 55px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0.1;
}

.header-deco span {
  display: block;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
}

@media (max-width: 767px) {
  .header-deco { display: none; }
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.06em;
  width: fit-content;
}

.logo-icon {
  width: 33px;
  height: 33px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* =================== MAIN =================== */
main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 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.15fr;
  }
}

/* =================== LEFT =================== */
.product-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image-container {
  background: #fff;
  border-radius: 14px;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 18px var(--shadow-color);
  display: flex;
  justify-content: center;
  position: relative;
}

.product-image-container picture {
  display: flex;
  justify-content: center;
}

.product-image {
  width: 50%;
  height: auto;
  transition: transform 0.3s ease;
  display: block;
}

.product-image:hover {
  transform: scale(1.04);
}

/* Guarantee block — pill badge style */
.guarantee-block {
  background: var(--dark-color);
  color: #fff;
  border-radius: 10px;
  padding: 1rem 1.15rem;
  box-shadow: 0 3px 12px var(--shadow-color);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.guarantee-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.guarantee-text h3 {
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  letter-spacing: 0.03em;
}

.guarantee-text p {
  font-size: 0.81rem;
  line-height: 1.55;
  opacity: 0.88;
}

/* Features icons — vertical list with colored left dot */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.2s ease;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item:hover {
  background: var(--light-color);
}

.feature-item .feature-icon {
  width: 30px;
  height: 30px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.feature-item span:last-child {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-color);
  font-family: var(--alt-font);
}

/* Cart button */
.cart-button {
  background: var(--primary-color);
  color: #fff;
  padding: 0.8rem 1.7rem;
  border: none;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-family: var(--main-font);
  letter-spacing: 0.05em;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 14px var(--shadow-color);
}

/* =================== RIGHT =================== */
.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.9rem;
  color: var(--primary-color);
  margin-bottom: 0.65rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.price {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0.6rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.87rem;
  margin-bottom: 0.85rem;
  line-height: 1.7;
  color: var(--text-color);
}

.highlight-text {
  background: var(--highlight-color);
  border: 2px solid var(--primary-color);
  color: var(--dark-color);
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  margin: 1rem 0;
  font-size: 0.9rem;
  font-family: var(--main-font);
  letter-spacing: 0.04em;
  text-align: center;
}

.features-list {
  list-style: none;
  margin: 0.9rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
  padding: 0.7rem 0.9rem;
  border-radius: 7px;
  background: var(--light-color);
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
  font-size: 0.85rem;
}

.features-list li:hover {
  background: #fff;
  box-shadow: 0 3px 9px var(--shadow-color);
  border-color: var(--accent-color);
}

.feature-check {
  width: 18px;
  height: 18px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.72rem;
}

/* =================== WIDE BLOCK =================== */
.wide-block {
  background: var(--light-color);
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.wide-block h2 {
  font-family: var(--main-font);
  text-align: center;
  font-size: 1.55rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Centered large icons row */
.wide-icons-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1150px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .wide-icons-row { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .wide-icons-row { grid-template-columns: repeat(3, 1fr); }
}

.wide-icon-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.3rem 1rem;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 9px var(--shadow-color);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.wide-icon-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 5px 16px var(--shadow-color);
}

.wide-icon-big {
  width: 52px;
  height: 52px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
}

.wide-icon-card h3 {
  font-family: var(--main-font);
  font-size: 0.95rem;
  color: var(--dark-color);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.wide-icon-card p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-color);
}

/* =================== TESTIMONIALS =================== */
.testimonials {
  background: var(--dark-color);
  color: #fff;
  padding: 2rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.55rem;
  letter-spacing: 0.03em;
}

.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.07);
  padding: 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(160,126,166,0.22);
  transition: transform 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.11);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.testimonial-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.testimonial p {
  font-size: 0.84rem;
  line-height: 1.6;
  opacity: 0.88;
}

/* =================== FOOTER =================== */
footer {
  background: var(--dark-color);
  color: #fff;
  padding: 1.5rem;
  border-top: 1px solid rgba(160,126,166,0.15);
}

.footer-content {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
}

@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.85rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav { justify-content: flex-end; }
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  max-width: 1150px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}