:root {
  --primary-color: #6B6E3D;
  --secondary-color: #7A7E4B;
  --accent-color: #8A8E59;
  --light-color: #EFF0E6;
  --dark-color: #3A3C20;
  --gradient-primary: linear-gradient(95deg, #6B6E3D 0%, #8A8E59 100%);
  --hover-color: #757948;
  --background-color: #FAFAF6;
  --text-color: #54563A;
  --border-color: rgba(107, 110, 61, 0.16);
  --divider-color: rgba(122, 126, 75, 0.09);
  --shadow-color: rgba(107, 110, 61, 0.09);
  --highlight-color: #E3E5D1;
  --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: 
    linear-gradient(30deg, rgba(107, 110, 61, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(107, 110, 61, 0.03) 87.5%, rgba(107, 110, 61, 0.03)),
    linear-gradient(150deg, rgba(107, 110, 61, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(107, 110, 61, 0.03) 87.5%, rgba(107, 110, 61, 0.03)),
    linear-gradient(30deg, rgba(138, 142, 89, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(138, 142, 89, 0.02) 87.5%, rgba(138, 142, 89, 0.02)),
    linear-gradient(150deg, rgba(138, 142, 89, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(138, 142, 89, 0.02) 87.5%, rgba(138, 142, 89, 0.02));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.advantages-section {
  padding: 2.7rem 1.5rem;
  background: linear-gradient(95deg, #6B6E3D 0%, #7A7E4B 50%, #8A8E59 100%);
  color: white;
  position: relative;
}

.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 60px
  );
}

.advantages-content {
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.advantages-section h2 {
  font-family: var(--main-font);
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.advantage-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 1.8rem 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.advantage-card:hover {
  transform: translateX(5px);
}

.advantage-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
}

.advantage-card h3 {
  font-family: var(--main-font);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: 0.4px;
}

.advantage-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.92;
}

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: 48px;
  height: 48px;
  background: rgba(239, 240, 230, 0.15);
  transform: translateY(-50%) rotate(45deg);
  display: none;
}

.header-decoration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  background: rgba(239, 240, 230, 0.1);
  transform: translate(-50%, -50%);
}

@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.7rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.7px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--light-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transform: rotate(-10deg);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.7rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  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;
  display: flex;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 5px 14px var(--shadow-color);
  background: white;
}

.product-image-container picture {
  display: flex;
  justify-content: center;
}

.product-image {
  padding: 22px;
  height: auto;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .product-image {
    padding: 22px 33px;
  }
}

.product-image:hover {
  transform: scale(1.05);
}

.guarantee-block {
  background: var(--gradient-primary);
  color: white;
  padding: 1.6rem;
  border-radius: 12px;
  box-shadow: 0 5px 12px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -12%;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.guarantee-block::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: white;
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  position: relative;
  z-index: 1;
}

.guarantee-block p {
  position: relative;
  z-index: 1;
}

.features-icons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.05rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.25rem 1.3rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.feature-item:hover {
  transform: translateX(5px);
  border-left-color: var(--primary-color);
  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;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
  letter-spacing: 0.3px;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1.1rem 2.2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 5px 12px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.5px;
}

.cart-button:hover {
  background: linear-gradient(95deg, var(--hover-color) 0%, var(--accent-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 7px 18px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.7px;
}

.price {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.3rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.96rem;
  margin-bottom: 1.8rem;
  line-height: 1.66;
  color: var(--text-color);
}

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  margin: 1.8rem 0;
  text-align: center;
  font-size: 1.02rem;
  box-shadow: 0 5px 12px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.4px;
  border-left: 4px solid var(--primary-color);
}

.features-list {
  list-style: none;
  margin: 1.8rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.05rem;
  padding: 1.1rem 1.2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 8px var(--shadow-color);
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.features-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 13px var(--shadow-color);
  border-top-color: var(--primary-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.85rem;
  margin-top: 2px;
}

.testimonials {
  background: var(--accent-color);
  color: white;
  padding: 2.7rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.2rem;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  max-width: 1050px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.12);
  padding: 1.7rem;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: scale(1.02);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.testimonial-icon {
  width: 48px;
  height: 48px;
  background: var(--light-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transform: rotate(-5deg);
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.02rem;
  font-family: var(--main-font);
  letter-spacing: 0.4px;
}

.testimonial p {
  line-height: 1.66;
  font-size: 0.92rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.2rem 1.5rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  padding-bottom: 1.6rem;
}

@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.15rem;
  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.88rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}