:root {
  --primary-color: #6B5B73;
  --secondary-color: #8A7B92;
  --accent-color: #9B8FA8;
  --light-color: #C4B8CC;
  --dark-color: #4A3A52;
  --gradient-primary: linear-gradient(135deg, #6B5B73 0%, #9B8FA8 100%);
  --hover-color: #7B6B83;
  --background-color: #FDFCFD;
  --text-color: #3B2A45;
  --border-color: rgba(155, 143, 168, 0.25);
  --divider-color: rgba(107, 91, 115, 0.12);
  --shadow-color: rgba(107, 91, 115, 0.18);
  --highlight-color: #AB9FB8;
  --main-font: 'Nunito', sans-serif;
  --alt-font: 'Nunito', 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 {
  background-image: 
    radial-gradient(circle at 35% 35%, var(--accent-color) 1px, transparent 1px),
    radial-gradient(circle at 65% 65%, var(--light-color) 1px, transparent 1px),
    linear-gradient(140deg, transparent 40%, rgba(107, 91, 115, 0.03) 60%, transparent 80%);
  background-size: 55px 55px, 38px 38px, 75px 75px;
  background-position: 0 0, 28px 28px, 0 0;
  opacity: 0.4;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  background: var(--gradient-primary);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: -20%;
  right: -4%;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: rgba(200, 184, 204, 0.08);
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--light-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.product-image-container {
  position: relative;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px var(--shadow-color);
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: translateY(-5px);
}

.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: white;
  padding: 12px 20px;
  border-radius: 22px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--main-font);
  box-shadow: 0 5px 15px rgba(155, 143, 168, 0.35);
}

.guarantee-block {
  background: var(--gradient-primary);
  color: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  top: -25%;
  right: -6%;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: white;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 14px;
  box-shadow: 0 6px 18px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
}

.feature-item .feature-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1.5rem 3rem;
  border: none;
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 8px 25px var(--shadow-color);
  font-family: var(--main-font);
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--highlight-color) 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.6rem;
  color: var(--primary-color);
  margin-bottom: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.price {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.8rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  color: var(--text-color);
}

.highlight-text {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem;
  border-radius: 14px;
  font-weight: 600;
  margin: 2.5rem 0;
  text-align: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px var(--shadow-color);
  font-family: var(--main-font);
}

.features-list {
  list-style: none;
  margin: 2.5rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  padding: 1.2rem;
  background: white;
  border-radius: 14px;
  box-shadow: 0 6px 16px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 5px solid var(--accent-color);
}

.features-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px var(--shadow-color);
}

.feature-check {
  width: 26px;
  height: 26px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.testimonials {
  background: var(--primary-color);
  color: white;
  padding: 4.5rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 3.5rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1250px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.8rem;
}

.testimonial-icon {
  width: 52px;
  height: 52px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--main-font);
}

.testimonial p {
  line-height: 1.7;
  font-size: 1rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 3.5rem 1.5rem;
}

.footer-content {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  padding-bottom: 2.5rem;
}

@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: 1.8rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  max-width: 1250px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}