:root {
  --primary-color: #2A3E58;
  --secondary-color: #1D2A3C;
  --accent-color: #5A9F77;
  --light-color: #ECF1F1;
  --dark-color: #0C0F24;
  --gradient-primary: linear-gradient(135deg, #2A3E58 0%, #1D2A3C 100%);
  --hover-color: #3A5068;
  --background-color: #F5F5F5;
  --text-color: #2C3E50;
  --border-color: rgba(42, 62, 88, 0.2);
  --divider-color: rgba(29, 42, 60, 0.1);
  --shadow-color: rgba(29, 42, 60, 0.1);
  --highlight-color: #F2D57F;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Open Sans', 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-image: 
    radial-gradient(circle at 20% 50%, rgba(42, 62, 88, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(90, 159, 119, 0.03) 0%, transparent 50%),
    linear-gradient(135deg, rgba(42, 62, 88, 0.01) 25%, transparent 25%);
  background-size: 400px 400px, 350px 350px, 80px 80px;
  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: -60px;
  right: -30px;
  width: 150px;
  height: 150px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(90, 159, 119, 0.12);
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--highlight-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 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.3rem;
}

.product-image-wrapper {
  position: relative;
}

.product-image {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px var(--shadow-color);
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: translateY(-2px);
}

.guarantee-block {
  background: var(--light-color);
  padding: 1.2rem;
  border-radius: 8px;
  border-left: 3px solid var(--accent-color);
  box-shadow: 0 2px 8px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.guarantee-block p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.9rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px var(--shadow-color);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.feature-item .feature-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.feature-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-color);
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 8px var(--shadow-color);
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0.9rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  line-height: 1.65;
  color: var(--text-color);
}

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 0.9rem;
  border-radius: 6px;
  font-weight: 600;
  margin: 1.2rem 0;
  text-align: center;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.features-list {
  list-style: none;
  margin: 1.2rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  padding: 0.6rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 6px var(--shadow-color);
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}

.features-list li:hover {
  transform: translateX(3px);
}

.feature-check {
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.benefits-section {
  background: var(--primary-color);
  color: white;
  padding: 2.3rem 1rem;
}

.benefits-content {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}

@media (min-width: 768px) {
  .benefits-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-box {
  background: rgba(255, 255, 255, 0.07);
  padding: 1.2rem;
  border-radius: 8px;
  text-align: center;
}

.benefit-box-icon {
  width: 48px;
  height: 48px;
  background: var(--highlight-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 0.7rem;
  color: var(--dark-color);
}

.benefit-box h3 {
  font-family: var(--main-font);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.2px;
}

.benefit-box p {
  line-height: 1.55;
  font-size: 0.85rem;
}

.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 2.3rem 1rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 1050px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  border-radius: 8px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.testimonial-icon {
  width: 40px;
  height: 40px;
  background: var(--highlight-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark-color);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial p {
  line-height: 1.55;
  font-size: 0.85rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.8rem 1rem;
}

.footer-content {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  padding-bottom: 0.9rem;
}

@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: 0.9rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.8rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  max-width: 1050px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}