:root {
  --primary-color: #2D5C7F;
  --secondary-color: #1E4060;
  --accent-color: #86B3D1;
  --light-color: #EAF3F9;
  --dark-color: #1A2E3D;
  --gradient-primary: linear-gradient(135deg, #2D5C7F 0%, #1E4060 100%);
  --hover-color: #3A709A;
  --background-color: #F5F9FC;
  --text-color: #2C3E50;
  --border-color: rgba(45, 92, 127, 0.18);
  --divider-color: rgba(45, 92, 127, 0.12);
  --shadow-color: rgba(30, 64, 96, 0.10);
  --highlight-color: #F2D57F;
  --main-font: 'Montserrat', 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 - diagonal lines */
.pattern-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--background-color);
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 38px,
      rgba(45, 92, 127, 0.03) 38px,
      rgba(45, 92, 127, 0.03) 40px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 38px,
      rgba(134, 179, 209, 0.03) 38px,
      rgba(134, 179, 209, 0.03) 40px
    );
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.header-deco {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  gap: 10px;
  align-items: center;
}

.header-deco span {
  display: block;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}

@media (min-width: 768px) {
  .header-deco {
    display: flex;
  }
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.03em;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: rgba(242, 213, 127, 0.22);
  border: 1.5px solid rgba(242, 213, 127, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
  width: 100%;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1.1fr;
  }
}

/* LEFT COLUMN */
.product-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image-container {
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 14px var(--shadow-color);
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image-container picture {
  display: flex;
  justify-content: center;
}

.product-img {
  width: 68%;
  height: auto;
  transition: transform 0.3s ease;
}

.product-img:hover {
  transform: scale(1.03);
}

/* Guarantee block */
.guarantee-block {
  background: white;
  border-left: 4px solid var(--highlight-color);
  padding: 0.9rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.35rem;
}

.guarantee-block p {
  font-size: 0.82rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* Features icons grid */
.features-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.85rem 0.5rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.25s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.feature-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
  line-height: 1.3;
}

/* Cart button */
.cart-button {
  display: block;
  text-align: center;
  background: var(--gradient-primary);
  color: white;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-family: var(--main-font);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 12px var(--shadow-color);
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px var(--shadow-color);
}

/* RIGHT COLUMN */
.product-right {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.price-tag {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  font-family: var(--main-font);
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 8px;
}

.product-description {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-color);
}

.product-description p {
  margin-bottom: 0.7rem;
}

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  font-family: var(--main-font);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(242, 213, 127, 0.3);
}

/* Features list */
.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  background: white;
  border-radius: 7px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 6px var(--shadow-color);
  font-size: 0.85rem;
  line-height: 1.4;
  transition: all 0.2s ease;
}

.features-list li:hover {
  border-color: var(--accent-color);
  transform: translateX(3px);
}

.feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  min-width: 17px;
  background: var(--accent-color);
  color: white;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 1px;
}

/* Mid banner */
.mid-banner {
  background: var(--gradient-primary);
  color: white;
  padding: 2.2rem 1.5rem;
  text-align: center;
}

.mid-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mid-banner h2 {
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.mid-banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 900px;
}

@media (min-width: 640px) {
  .mid-banner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .mid-banner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mid-banner-item {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 1rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.mid-banner-item .icon {
  font-size: 1.8rem;
}

.mid-banner-item h3 {
  font-family: var(--main-font);
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
}

.mid-banner-item p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* Testimonials */
.testimonials {
  background: var(--light-color);
  padding: 2.5rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1060px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 1rem 1.1rem;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px var(--shadow-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.testimonial-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-color);
}

.testimonial-city {
  font-size: 0.78rem;
  color: #7f8c8d;
}

.testimonial p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  padding: 1.5rem 1rem;
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  text-decoration: none;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-logo .logo-icon {
  background: rgba(242, 213, 127, 0.18);
  border-color: rgba(242, 213, 127, 0.4);
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  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;
  font-size: 0.78rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: white;
}

.footer-credit {
  max-width: 1060px;
  margin: 0.9rem auto 0;
  text-align: center;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.5);
}

.footer-credit a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}