:root {
  --primary-color: #F2D57F;
  --secondary-color: #F0A55A;
  --accent-color: #FF6F61;
  --light-color: #ECF1F1;
  --dark-color: #2A3E58;
  --gradient-primary: linear-gradient(135deg, #F2D57F 0%, #F0A55A 100%);
  --hover-color: #F4DC8F;
  --background-color: #FCFCFC;
  --text-color: #2A2A2A;
  --border-color: rgba(242, 213, 127, 0.25);
  --divider-color: rgba(242, 213, 127, 0.15);
  --shadow-color: rgba(240, 165, 90, 0.16);
  --highlight-color: #5D6D7E;
  --main-font: 'Roboto Condensed', 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: 
    repeating-linear-gradient(45deg, rgba(242, 213, 127, 0.03), rgba(242, 213, 127, 0.03) 10px, transparent 10px, transparent 20px),
    repeating-linear-gradient(-45deg, rgba(240, 165, 90, 0.03), rgba(240, 165, 90, 0.03) 10px, transparent 10px, transparent 20px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  background: var(--gradient-primary);
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 16px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 22%;
  right: 9%;
  width: 68px;
  height: 68px;
  border: 2px solid rgba(255, 111, 97, 0.3);
  border-radius: 50%;
  display: none;
}

.header-decoration::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  border: 2px solid rgba(255, 111, 97, 0.2);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.72rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 41px;
  height: 41px;
  background: var(--accent-color);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.38rem;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-image-container {
  position: relative;
  border-radius: 10px;
  box-shadow: 0 8px 25px var(--shadow-color);
  width: 100%;
  display: flex;
  justify-content: center;
}

.product-image-container picture {
  width: 50%;
}

.product-image {
  height: auto;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.02);
}

.price-badge {
  position: absolute;
  top: 19px;
  right: 19px;
  background: var(--accent-color);
  color: white;
  padding: 10px 20px;
  border-radius: 21px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--main-font);
  box-shadow: 0 4px 13px rgba(255, 111, 97, 0.35);
}

.guarantee-block {
  background: var(--gradient-primary);
  color: var(--dark-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 7px 23px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  top: -27%;
  right: -11%;
  width: 92px;
  height: 92px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--dark-color);
  margin-bottom: 0.95rem;
  font-size: 1.11rem;
  font-weight: 600;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .features-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.32rem;
  background: white;
  border-radius: 9px;
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
}

.feature-item .feature-icon {
  width: 51px;
  height: 51px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.77rem;
  font-size: 1.4rem;
}

.feature-item span {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-color);
  font-family: var(--main-font);
}

.cart-button {
  background: var(--gradient-primary);
  color: var(--dark-color);
  padding: 1.12rem 2.42rem;
  border: none;
  border-radius: 9px;
  font-size: 1.16rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 6px 20px var(--shadow-color);
  font-family: var(--main-font);
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--accent-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 11px 28px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.38rem;
  color: var(--secondary-color);
  margin-bottom: 1.38rem;
  font-weight: 700;
  line-height: 1.2;
}

.price {
  font-size: 2.68rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 1.38rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.97rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  color: var(--text-color);
}

.highlight-text {
  background: var(--gradient-primary);
  color: var(--dark-color);
  padding: 2rem;
  border-radius: 9px;
  font-weight: 600;
  margin: 2rem 0;
  text-align: center;
  font-size: 1.21rem;
  box-shadow: 0 7px 23px var(--shadow-color);
  font-family: var(--main-font);
}

.features-list {
  list-style: none;
  margin: 2rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.12rem;
  padding: 1.12rem;
  background: white;
  border-radius: 9px;
  box-shadow: 0 4px 13px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 3px solid var(--secondary-color);
}

.features-list li:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 18px var(--shadow-color);
}

.feature-check {
  width: 26px;
  height: 26px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.97rem;
}

.benefits-section {
  background: var(--light-color);
  padding: 4rem 1.5rem;
  margin: 0;
}

.benefits-section h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.38rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1150px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--shadow-color);
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
}

.benefit-icon {
  width: 58px;
  height: 58px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.72rem;
  margin: 0 auto 1.38rem;
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1.27rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.benefit-card p {
  line-height: 1.6;
  color: var(--text-color);
  font-size: 0.94rem;
}

.testimonials {
  background: var(--secondary-color);
  color: white;
  padding: 4rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.38rem;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1150px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.12);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.12rem;
  margin-bottom: 1.38rem;
}

.testimonial-icon {
  width: 54px;
  height: 54px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.72rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.16rem;
  font-family: var(--main-font);
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.97rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 3rem 1.5rem;
}

.footer-content {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  padding-bottom: 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: 1.38rem;
  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.92rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.87rem;
  max-width: 1150px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}