:root {
  --primary-color: #F0A55A;
  --secondary-color: #C97842;
  --accent-color: #5D6D7E;
  --light-color: #FFF8F0;
  --dark-color: #3E2723;
  --gradient-primary: linear-gradient(135deg, #F0A55A 0%, #C97842 100%);
  --hover-color: #FFB870;
  --background-color: #FFFCF8;
  --text-color: #4E5A5F;
  --border-color: rgba(240, 165, 90, 0.22);
  --divider-color: rgba(201, 120, 66, 0.14);
  --shadow-color: rgba(201, 120, 66, 0.12);
  --highlight-color: #B3D0D9;
  --main-font: 'Lora', serif;
  --alt-font: 'Poppins', 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(240, 165, 90, 0.025) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(93, 109, 126, 0.02) 0%, transparent 40%),
    linear-gradient(90deg, transparent 49%, rgba(240, 165, 90, 0.015) 49%, rgba(240, 165, 90, 0.015) 51%, transparent 51%);
  background-size: 100% 100%, 100% 100%, 50px 50px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.benefits-section {
  background: var(--accent-color);
  padding: 3rem 1rem;
  margin: 2rem 0 0 0;
  position: relative;
}

.benefits-content {
  max-width: 1100px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
  text-align: center;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: white;
  padding: 2.2rem 1.4rem;
  border-radius: 6px;
  text-align: left;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-color);
}

.benefit-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.benefit-card-icon {
  width: 58px;
  height: 58px;
  background: var(--primary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.1rem;
  color: white;
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--accent-color);
  text-transform: none;
  letter-spacing: 0.3px;
}

.benefit-card p {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text-color);
}

header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
  border-bottom: 2px solid var(--primary-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 6%;
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  transform: translateY(-50%) rotate(30deg);
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: white;
  border-radius: 6px;
  transform: rotate(45deg);
}

.logo-icon span {
  transform: rotate(-45deg);
  display: block;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.8rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 6px;
  box-shadow: 0 4px 14px var(--shadow-color);
  border: 2px solid var(--border-color);
}

.product-image {
  width: 100%;
  padding: 24px;
  height: auto;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .product-image {
    padding: 24px 44px;
  }
}

.guarantee-block {
  background: var(--light-color);
  color: var(--text-color);
  padding: 1.35rem;
  border-radius: 6px;
  border: 2px solid var(--border-color);
  border-top: 4px solid var(--primary-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.3px;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.15rem 0.55rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-item:hover::after {
  transform: scaleX(1);
}

.feature-item:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
  box-shadow: 0 6px 18px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 46px;
  height: 46px;
  background: var(--primary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: white;
}

.feature-item span {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--text-color);
  font-family: var(--main-font);
  text-transform: capitalize;
  letter-spacing: 0.2px;
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 1.05rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 14px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 0.95rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0.95rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.9rem;
  margin-bottom: 1.3rem;
  line-height: 1.75;
  color: var(--text-color);
}

.product-description p {
  margin-bottom: 0.9rem;
}

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 1.35rem;
  border-radius: 6px;
  font-weight: 700;
  margin: 1.3rem 0;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 4px 14px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.features-list {
  list-style: none;
  margin: 1.3rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  margin-bottom: 0.95rem;
  padding: 1.05rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
}

.features-list li:hover {
  transform: translateX(7px);
  border-color: var(--primary-color);
  box-shadow: 0 5px 16px var(--shadow-color);
}

.feature-check {
  width: 25px;
  height: 25px;
  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.82rem;
}

.testimonials {
  background: var(--light-color);
  color: var(--text-color);
  padding: 2.6rem 1rem;
  border-top: 4px solid var(--primary-color);
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.2rem;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.4rem;
  border-radius: 6px;
  box-shadow: 0 4px 14px var(--shadow-color);
  transition: transform 0.3s ease;
  border: 2px solid var(--border-color);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 7px 20px var(--shadow-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-icon {
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
  color: white;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.96rem;
  font-family: var(--main-font);
  color: var(--accent-color);
  text-transform: none;
  letter-spacing: 0.3px;
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.88rem;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  padding-bottom: 1.2rem;
}

@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: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-content .logo {
  color: white;
}

.footer-content .logo-icon {
  background: white;
  color: var(--dark-color);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.84rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}