:root {
  --primary-color: #5D6D7E;
  --secondary-color: #4A5A6C;
  --accent-color: #86B3D1;
  --light-color: #F8F9FA;
  --dark-color: #2A3E58;
  --gradient-primary: linear-gradient(135deg, #5D6D7E 0%, #6B7C8F 100%);
  --hover-color: #4A5A6C;
  --background-color: #FEFEFE;
  --text-color: #3E4A59;
  --border-color: rgba(134, 179, 209, 0.25);
  --divider-color: rgba(93, 109, 126, 0.1);
  --shadow-color: rgba(93, 109, 126, 0.15);
  --highlight-color: #F2D57F;
  --main-font: 'Lora', 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);
  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 15% 25%, rgba(134, 179, 209, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(93, 109, 126, 0.03) 0%, transparent 50%),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(134, 179, 209, 0.02) 60px, rgba(134, 179, 209, 0.02) 120px);
  background-size: 100% 100%;
  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;
  box-shadow: 0 2px 12px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 25%;
  right: 8%;
  width: 65px;
  height: 65px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: none;
}

.header-decoration::after {
  content: '';
  position: absolute;
  top: 18%;
  left: 18%;
  width: 64%;
  height: 64%;
  border: 2px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-image-container {
  position: relative;
  border-radius: 12px;
  box-shadow: 0 8px 28px var(--shadow-color);
  width: 100%;
  display: flex;
  justify-content: center;
  background: white;
  padding: 1.5rem;
}

.product-image-container picture {
  width: 50%;
}

.product-image {
  height: auto;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.02);
}

.guarantee-block {
  background: white;
  color: var(--text-color);
  padding: 1.4rem;
  border-radius: 10px;
  box-shadow: 0 4px 18px var(--shadow-color);
  position: relative;
  overflow: hidden;
  border-left: 3px solid var(--accent-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  font-size: 1rem;
  font-weight: 700;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.1rem 0.8rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 14px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px var(--shadow-color);
  border-color: var(--accent-color);
}

.feature-item .feature-icon {
  width: 46px;
  height: 46px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  color: white;
}

.feature-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--alt-font);
  line-height: 1.3;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  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 16px var(--shadow-color);
  font-family: var(--alt-font);
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--text-color);
}

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  margin: 1.5rem 0;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(242, 213, 127, 0.3);
  font-family: var(--main-font);
}

.features-list {
  list-style: none;
  margin: 1.5rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  padding: 0.9rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 12px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 3px solid var(--accent-color);
}

.features-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 5px 16px var(--shadow-color);
}

.feature-check {
  width: 24px;
  height: 24px;
  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.9rem;
}

.benefits-section {
  background: var(--light-color);
  padding: 3.5rem 1.5rem;
  margin: 0;
}

.benefits-section h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-card {
  background: white;
  padding: 1.8rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px var(--shadow-color);
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 3px solid var(--accent-color);
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.2rem;
  color: white;
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.benefit-card p {
  line-height: 1.65;
  color: var(--text-color);
  font-size: 0.9rem;
}

.testimonials {
  background: var(--primary-color);
  color: white;
  padding: 3.5rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.testimonial-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--main-font);
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.9rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.5rem 1.5rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 1.5rem;
}

@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.88rem;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--accent-color);
  text-decoration: none;
}