:root {
  --primary-color: #B8753D;
  --secondary-color: #8E5A2E;
  --accent-color: #D8954F;
  --light-color: #F9F2EB;
  --dark-color: #2D0A58;
  --gradient-primary: linear-gradient(135deg, #B8753D 0%, #D8954F 100%);
  --hover-color: #9A6133;
  --background-color: #FDFBF8;
  --text-color: #4B5563;
  --border-color: rgba(184, 117, 61, 0.19);
  --divider-color: rgba(142, 90, 46, 0.1);
  --shadow-color: rgba(184, 117, 61, 0.13);
  --highlight-color: #F4D03F;
  --main-font: 'Lora', serif;
  --alt-font: 'Lato', 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 10% 20%, rgba(184, 117, 61, 0.025) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(216, 149, 79, 0.025) 0%, transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(184, 117, 61, 0.015) 0%, transparent 30%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.benefits-section {
  padding: 2.3rem 1rem;
  background: linear-gradient(135deg, #F9F2EB 0%, #FDFBF8 100%);
  color: var(--text-color);
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
}

.benefits-content {
  max-width: 1150px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-align: center;
  color: var(--primary-color);
  letter-spacing: 0.3px;
}

.benefits-intro {
  text-align: center;
  font-size: 0.97rem;
  color: var(--text-color);
  margin-bottom: 2.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-card {
  background: white;
  padding: 1.7rem 1.3rem;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 18px var(--shadow-color);
  border-color: var(--primary-color);
}

.benefit-icon {
  width: 54px;
  height: 54px;
  background: var(--gradient-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  flex-shrink: 0;
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: var(--primary-color);
  letter-spacing: 0.2px;
}

.benefit-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-color);
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(249, 242, 235, 0.3);
  transform: translateY(-50%) rotate(45deg);
  display: none;
}

.header-decoration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(249, 242, 235, 0.2);
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1150px;
  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.75rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 1.2px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--light-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transform: rotate(-5deg);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.3rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.1rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 0 4px 18px var(--shadow-color);
  background: white;
  border: 2px solid var(--border-color);
}

.product-image-container picture {
  display: flex;
  justify-content: center;
}

.product-image {
  width: 100%;
  padding: 26px;
  height: auto;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .product-image {
    padding: 26px 36px;
  }
}

.product-image:hover {
  transform: scale(1.04);
}

.guarantee-block {
  background: var(--gradient-primary);
  color: white;
  padding: 1.6rem;
  border-radius: 6px;
  box-shadow: 0 4px 16px var(--shadow-color);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.guarantee-block::before {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -15%;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(30deg);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: white;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.35px;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.2rem 0.8rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 18px var(--shadow-color);
  border-color: var(--primary-color);
}

.feature-item .feature-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.feature-item span {
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--text-color);
  font-family: var(--main-font);
  letter-spacing: 0.1px;
  line-height: 1.3;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1.05rem 2.1rem;
  border: none;
  border-radius: 6px;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 16px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.6px;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--accent-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.2px;
}

.price {
  font-size: 1.9rem;
  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.6rem;
  line-height: 1.7;
  color: var(--text-color);
}

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 1.3rem;
  border-radius: 6px;
  font-weight: 700;
  margin: 1.6rem 0;
  text-align: center;
  font-size: 0.99rem;
  box-shadow: 0 3px 14px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.3px;
  border: 2px solid var(--accent-color);
}

.features-list {
  list-style: none;
  margin: 1.6rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 3px solid var(--primary-color);
}

.features-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 14px var(--shadow-color);
}

.feature-check {
  width: 23px;
  height: 23px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 2.3rem 1rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.1rem;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  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: 1.5rem;
  border-radius: 6px;
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial-icon {
  width: 46px;
  height: 46px;
  background: var(--light-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transform: rotate(-5deg);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.99rem;
  font-family: var(--main-font);
  letter-spacing: 0.3px;
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.9rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1rem;
}

.footer-content {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 1.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.1rem;
  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;
  transition: color 0.3s ease;
  font-size: 0.87rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  max-width: 1150px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}