:root {
  --primary-color: #B8704F;
  --secondary-color: #C67E5C;
  --accent-color: #D48D6A;
  --light-color: #F8F0ED;
  --dark-color: #6B3E2A;
  --gradient-primary: linear-gradient(100deg, #B8704F 0%, #D48D6A 100%);
  --hover-color: #C07856;
  --background-color: #FBF8F6;
  --text-color: #715545;
  --border-color: rgba(184, 112, 79, 0.17);
  --divider-color: rgba(198, 126, 92, 0.1);
  --shadow-color: rgba(184, 112, 79, 0.1);
  --highlight-color: #F0DDD6;
  --main-font: 'Lato', sans-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 25% 25%, rgba(184, 112, 79, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(212, 141, 106, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, rgba(184, 112, 79, 0.02) 25%, transparent 25%, transparent 75%, rgba(184, 112, 79, 0.02) 75%),
    linear-gradient(45deg, rgba(212, 141, 106, 0.02) 25%, transparent 25%, transparent 75%, rgba(212, 141, 106, 0.02) 75%);
  background-size: 500px 500px, 450px 450px, 60px 60px, 60px 60px;
  background-position: 0 0, 100% 100%, 0 0, 30px 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.advantages-section {
  padding: 2.8rem 1.5rem;
  background: linear-gradient(100deg, #B8704F 0%, #C67E5C 50%, #D48D6A 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.advantages-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.advantages-content {
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.advantages-section h2 {
  font-family: var(--main-font);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 2.3rem;
  text-align: center;
  letter-spacing: 0.6px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.advantage-card {
  background: rgba(255, 255, 255, 0.13);
  padding: 1.4rem 1.1rem;
  border-radius: 14px;
  backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.17);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

.advantage-card h3 {
  font-family: var(--main-font);
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: 0.3px;
}

.advantage-card p {
  font-size: 0.86rem;
  line-height: 1.52;
  opacity: 0.9;
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 11px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 42px;
  height: 42px;
  border: 3px solid rgba(248, 240, 237, 0.3);
  border-radius: 6px;
  transform: translateY(-50%) rotate(15deg);
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1100px;
  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: 0.8px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--light-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.8rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.3rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 14px;
  box-shadow: 0 6px 16px var(--shadow-color);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
}

.product-image-container picture {
  display: flex;
  justify-content: center;
}

.product-image {
  padding: 23px;
  height: auto;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .product-image {
    padding: 23px 34px;
  }
}

.product-image:hover {
  transform: rotate(-3deg) scale(1.04);
}

.guarantee-block {
  background: var(--gradient-primary);
  color: white;
  padding: 1.7rem;
  border-radius: 14px;
  box-shadow: 0 6px 14px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -5%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translateY(-50%);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: white;
  margin-bottom: 1rem;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.guarantee-block p {
  position: relative;
  z-index: 1;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.4rem 1.1rem;
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 11px var(--shadow-color);
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
  position: relative;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 14px 14px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover {
  transform: scale(1.05);
  border-bottom-color: var(--primary-color);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.feature-item span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-color);
  font-family: var(--main-font);
  letter-spacing: 0.3px;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1.15rem 2.3rem;
  border: none;
  border-radius: 14px;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 6px 14px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.6px;
}

.cart-button:hover {
  background: linear-gradient(100deg, var(--hover-color) 0%, var(--accent-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.3rem;
  color: var(--primary-color);
  margin-bottom: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.8px;
}

.price {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.35rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.97rem;
  margin-bottom: 1.9rem;
  line-height: 1.68;
  color: var(--text-color);
}

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 1.6rem;
  border-radius: 14px;
  font-weight: 700;
  margin: 1.9rem 0;
  text-align: center;
  font-size: 1.05rem;
  box-shadow: 0 6px 14px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.5px;
  border: 2px solid rgba(184, 112, 79, 0.2);
}

.features-list {
  list-style: none;
  margin: 1.9rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.1rem;
  padding: 1.15rem 1.3rem;
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 9px var(--shadow-color);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.features-list li:hover {
  transform: translateX(-5px);
  box-shadow: 0 6px 15px var(--shadow-color);
  border-bottom-color: var(--primary-color);
}

.feature-check {
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.88rem;
  margin-top: 2px;
}

.testimonials {
  background: var(--accent-color);
  color: white;
  padding: 2.8rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.3rem;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.7rem;
  max-width: 1050px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.13);
  padding: 1.8rem;
  border-radius: 14px;
  backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.testimonial-icon {
  width: 50px;
  height: 50px;
  background: var(--light-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--main-font);
  letter-spacing: 0.5px;
}

.testimonial p {
  line-height: 1.68;
  font-size: 0.93rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.3rem 1.5rem;
}

.footer-content {
  max-width: 1100px;
  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.2rem;
  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.89rem;
}

.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.15);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}