:root {
  --primary-color: #F0A55A;
  --secondary-color: #F4D03F;
  --accent-color: #F2D4C9;
  --light-color: #ECF1F1;
  --dark-color: #0C0F24;
  --gradient-primary: linear-gradient(135deg, #F0A55A 0%, #F4D03F 100%);
  --hover-color: #D89148;
  --background-color: #F5F5F5;
  --text-color: #2C3E50;
  --border-color: rgba(240, 165, 90, 0.24);
  --divider-color: rgba(244, 208, 63, 0.16);
  --shadow-color: rgba(240, 165, 90, 0.14);
  --highlight-color: #5D6D7E;
  --main-font: 'Lato', sans-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);
  background-color: var(--background-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
}

.pattern-bg {
  background-color: var(--background-color);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(240, 165, 90, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(244, 208, 63, 0.035) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(242, 212, 201, 0.025) 0%, transparent 40%);
  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;
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 4.5%;
  width: 75px;
  height: 75px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  transform: translateY(-50%) rotate(30deg);
  display: none;
}

.header-decoration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  transform: translate(-50%, -50%) rotate(-60deg);
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.36rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.55rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.22rem;
}

.product-image-wrapper {
  position: relative;
  background: white;
  padding: 1.72rem;
  border-radius: 15px;
  box-shadow: 0 3px 13px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.product-image {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  border-radius: 11px;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.022);
}

.guarantee-block {
  background: linear-gradient(135deg, rgba(240, 165, 90, 0.048) 0%, rgba(242, 212, 201, 0.065) 100%);
  padding: 1.22rem;
  border-radius: 12px;
  border: 2px solid var(--accent-color);
  box-shadow: 0 2px 10px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.64rem;
  font-size: 1rem;
  font-weight: 700;
}

.guarantee-block p {
  font-size: 0.87rem;
  line-height: 1.54;
  color: var(--text-color);
}

.features-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
}

.feature-item {
  flex: 1;
  min-width: calc(50% - 0.39rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.68rem;
  padding: 1.08rem 0.88rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  text-align: center;
}

@media (max-width: 767px) {
  .feature-item {
    min-width: 100%;
  }
}

.feature-item:hover {
  border-color: var(--primary-color);
  transform: scale(1.03);
  box-shadow: 0 4px 14px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.38rem;
  flex-shrink: 0;
  color: white;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.feature-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.38;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.94rem 2.18rem;
  border: none;
  border-radius: 10px;
  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 13px var(--shadow-color);
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 17px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.12rem;
  color: var(--primary-color);
  margin-bottom: 1.06rem;
  font-weight: 700;
  line-height: 1.2;
}

.price {
  font-size: 1.96rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1.04rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.89rem;
  margin-bottom: 1.26rem;
  line-height: 1.67;
  color: var(--text-color);
}

.highlight-text {
  background: var(--highlight-color);
  color: white;
  padding: 1.06rem 1.3rem;
  border-radius: 10px;
  font-weight: 600;
  margin: 1.26rem 0;
  text-align: center;
  font-size: 0.93rem;
  box-shadow: 0 3px 12px rgba(93, 109, 126, 0.25);
}

.features-list {
  list-style: none;
  margin: 1.26rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.76rem;
  margin-bottom: 0.76rem;
  padding: 0.8rem 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 3px solid var(--accent-color);
  font-size: 0.87rem;
}

.features-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 3px 10px var(--shadow-color);
  border-left-color: var(--primary-color);
}

.feature-check {
  width: 20px;
  height: 20px;
  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.73rem;
}

.benefits-section {
  background: linear-gradient(180deg, var(--background-color) 0%, var(--light-color) 100%);
  color: var(--text-color);
  padding: 2.72rem 1rem;
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(0deg, transparent 24%, rgba(240, 165, 90, 0.02) 25%, rgba(240, 165, 90, 0.02) 26%, transparent 27%, transparent 74%, rgba(244, 208, 63, 0.025) 75%, rgba(244, 208, 63, 0.025) 76%, transparent 77%, transparent);
  background-size: 55px 55px;
  pointer-events: none;
}

.benefits-section h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.18rem;
  font-size: 1.96rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
}

.benefits-content {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.36rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .benefits-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-box {
  background: white;
  padding: 1.58rem;
  border-radius: 13px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px var(--shadow-color);
}

.benefit-box:hover {
  transform: scale(1.03);
  border-color: var(--primary-color);
  box-shadow: 0 5px 18px var(--shadow-color);
}

.benefit-box-icon {
  width: 62px;
  height: 62px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.72rem;
  margin-bottom: 0.88rem;
  color: white;
  box-shadow: 0 3px 11px var(--shadow-color);
}

.benefit-box h3 {
  font-family: var(--main-font);
  font-size: 1.1rem;
  margin-bottom: 0.64rem;
  color: var(--primary-color);
  font-weight: 700;
}

.benefit-box p {
  line-height: 1.6;
  font-size: 0.87rem;
  color: var(--text-color);
}

.testimonials {
  background: var(--background-color);
  color: var(--text-color);
  padding: 2.72rem 1rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.18rem;
  font-size: 1.96rem;
  font-weight: 700;
  color: var(--primary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.36rem;
  max-width: 1150px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.36rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--shadow-color);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px var(--shadow-color);
  border-color: var(--primary-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.76rem;
  margin-bottom: 0.94rem;
}

.testimonial-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.36rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 2px 9px var(--shadow-color);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-color);
}

.testimonial p {
  line-height: 1.64;
  font-size: 0.87rem;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.8rem 1rem;
}

.footer-content {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  padding-bottom: 1rem;
}

@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.85);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}

.footer-nav a:hover {
  color: var(--secondary-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  max-width: 1150px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--secondary-color);
  text-decoration: none;
}