:root {
  --primary-color: #8B7355;
  --secondary-color: #A68968;
  --accent-color: #9C1C66;
  --light-color: #F2D4C9;
  --dark-color: #4B3425;
  --gradient-primary: linear-gradient(145deg, #8B7355 0%, #A68968 100%);
  --hover-color: #725D46;
  --background-color: #FAF7F4;
  --text-color: #4A3F35;
  --border-color: rgba(156, 28, 102, 0.16);
  --divider-color: rgba(139, 115, 85, 0.11);
  --shadow-color: rgba(139, 115, 85, 0.09);
  --highlight-color: #D4A574;
  --main-font: 'Lora', 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 {
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(139, 115, 85, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(156, 28, 102, 0.03) 0%, transparent 50%),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(166, 137, 104, 0.02) 60px, rgba(166, 137, 104, 0.02) 120px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 9px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 7%;
  width: 55px;
  height: 55px;
  border: 3px solid rgba(242, 212, 201, 0.18);
  border-radius: 12px;
  transform: translateY(-50%) rotate(20deg);
  display: none;
}

.header-decoration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  background: rgba(242, 212, 201, 0.11);
  border-radius: 6px;
  transform: translate(-50%, -50%) rotate(-20deg);
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 37px;
  height: 37px;
  background: var(--light-color);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}

.product-image-container {
  position: relative;
  border-radius: 11px;
  box-shadow: 0 5px 19px var(--shadow-color);
  transition: transform 0.3s ease;
}

.product-image-container picture {
  display: flex;
  justify-content: center;
}

.product-image {
  width: 50%;
  height: auto;
}

.product-image:hover {
  transform: translateY(-2px);
}

.guarantee-block {
  background: var(--gradient-primary);
  color: white;
  padding: 1.7rem;
  border-radius: 9px;
  box-shadow: 0 4px 13px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -7%;
  width: 85px;
  height: 85px;
  background: rgba(255, 255, 255, 0.045);
  border-radius: 18px;
  transform: rotate(35deg);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: white;
  margin-bottom: 0.85rem;
  font-size: 1.08rem;
  font-weight: 600;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 576px) {
  .features-icons {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.15rem 0.85rem;
  background: white;
  border-radius: 9px;
  box-shadow: 0 3px 11px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.feature-item span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-color);
  font-family: var(--main-font);
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1.15rem 2.3rem;
  border: none;
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 13px var(--shadow-color);
  font-family: var(--main-font);
}

.cart-button:hover {
  background: linear-gradient(145deg, var(--hover-color) 0%, var(--highlight-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 17px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.3rem;
  color: var(--primary-color);
  margin-bottom: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.1rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.94rem;
  margin-bottom: 1.7rem;
  line-height: 1.7;
  color: var(--text-color);
}

.highlight-text {
  background: var(--gradient-primary);
  color: white;
  padding: 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  margin: 1.7rem 0;
  text-align: center;
  font-size: 1.02rem;
  box-shadow: 0 4px 13px var(--shadow-color);
  font-family: var(--main-font);
}

.features-list {
  list-style: none;
  margin: 1.7rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 0.95rem;
  padding: 0.95rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 9px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 3px solid var(--accent-color);
}

.features-list li:hover {
  transform: translateX(2px);
  box-shadow: 0 3px 11px var(--shadow-color);
}

.feature-check {
  width: 21px;
  height: 21px;
  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.72rem;
}

.benefits-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 3.2rem 1.5rem;
  margin: 0;
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.benefits-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.benefits-section h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.3rem;
  font-size: 1.95rem;
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.9rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.09);
  padding: 1.9rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--light-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin: 0 auto 1.1rem;
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1.18rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.benefit-card p {
  line-height: 1.65;
  font-size: 0.89rem;
  opacity: 0.94;
}

.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 3.2rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.3rem;
  font-size: 1.95rem;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.7rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.7rem;
  border-radius: 9px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1.05rem;
}

.testimonial-icon {
  width: 44px;
  height: 44px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.02rem;
  font-family: var(--main-font);
}

.testimonial p {
  line-height: 1.65;
  font-size: 0.89rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.4rem 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  align-items: center;
  padding-bottom: 1.7rem;
}

@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.25rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.84rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.79rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}