:root {
  --primary-color: #4A7068;
  --secondary-color: #2E4F49;
  --accent-color: #6BA89A;
  --light-color: #EAF3F1;
  --dark-color: #1C3530;
  --gradient-primary: linear-gradient(125deg, #4A7068 0%, #2E4F49 100%);
  --hover-color: #3A5C55;
  --background-color: #F5FAFA;
  --text-color: #344845;
  --border-color: rgba(107, 168, 154, 0.22);
  --shadow-color: rgba(74, 112, 104, 0.11);
  --highlight-color: #F2D57F;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

/* Pattern: cross/plus signs */
.pattern-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--primary-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary-color) 1px, transparent 1px),
    linear-gradient(var(--accent-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-color) 1px, transparent 1px);
  background-size: 60px 60px, 60px 60px, 20px 20px, 20px 20px;
  background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  box-shadow: 0 2px 6px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

/* Header decoration: diagonal slash shapes */
header::before {
  content: '';
  position: absolute;
  right: 3%;
  top: 0;
  width: 60px;
  height: 100%;
  background: rgba(255,255,255,0.04);
  transform: skewX(-15deg);
  pointer-events: none;
}
header::after {
  content: '';
  position: absolute;
  right: 6%;
  top: 0;
  width: 35px;
  height: 100%;
  background: rgba(255,255,255,0.03);
  transform: skewX(-15deg);
  pointer-events: none;
}

@media (max-width: 640px) { header::before, header::after { display: none; } }

header .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #ffffff;
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  transition: opacity 0.3s ease;
}
.logo:hover { opacity: 0.88; }
.logo-icon { font-size: 1.6rem; }

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

main .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 14px var(--shadow-color);
  padding: 1.2rem;
  border: 1px solid var(--border-color);
}
.product-image img { width: 52%; height: auto; display: block; }

/* Guarantee: double-border elegant card */
.guarantee-block {
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 9px var(--shadow-color);
  border: 1px solid var(--border-color);
  outline: 3px solid var(--light-color);
  outline-offset: -5px;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  font-size: 0.93rem;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.guarantee-block p {
  color: var(--text-color);
  font-size: 0.82rem;
  line-height: 1.62;
}

/* Feature items: minimal text rows with icon dot */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.72rem 1rem;
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.25s ease;
}
.feature-item:last-child { border-bottom: none; }
.feature-item:hover { background-color: var(--light-color); }

.feature-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-color);
}

.feature-item span {
  font-size: 0.81rem;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.3;
}

.cart-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: #ffffff;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow-color);
  transition: all 0.3s ease;
}
.cart-button:hover {
  background: linear-gradient(125deg, var(--hover-color) 0%, var(--dark-color) 100%);
  transform: translateY(-2px);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.25rem;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-family: var(--main-font);
}

.product-description { margin-bottom: 1rem; }
.product-description p {
  margin-bottom: 0.8rem;
  color: var(--text-color);
  font-size: 0.87rem;
  line-height: 1.75;
}

.highlight-text {
  background: var(--highlight-color);
  color: #2a1e00;
  padding: 0.82rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.91rem;
  text-align: center;
  margin-bottom: 1rem;
  border: 2px solid #d4b655;
  box-shadow: 0 2px 8px rgba(242,213,127,0.28);
}

.features-list { list-style: none; padding: 0; }
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.38rem 0.6rem;
  font-size: 0.86rem;
  background: rgba(255,255,255,0.85);
  border-radius: 4px;
  border-left: 3px solid transparent;
  transition: border-color 0.25s ease;
}
.features-list li:hover { border-left-color: var(--accent-color); }

.feature-check {
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Benefits banner: asymmetric two-column split */
.benefits-banner {
  background: var(--light-color);
  padding: 2rem 0;
  margin-top: 1.2rem;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
}

.benefits-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.benefits-banner h2 {
  font-family: var(--main-font);
  font-size: 1.75rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1.4rem;
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.benefit-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.2rem;
  box-shadow: 0 2px 8px var(--shadow-color);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.benefit-card:first-child {
  grid-row: span 2;
  justify-content: center;
}
.benefit-card:hover {
  box-shadow: 0 5px 16px var(--shadow-color);
  transform: translateY(-3px);
}

.benefit-icon {
  font-size: 1.8rem;
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--light-color);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card:first-child .benefit-icon {
  width: 64px; height: 64px;
  font-size: 2.1rem;
  border-radius: 14px;
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 0.97rem;
  color: var(--primary-color);
  font-weight: 700;
}
.benefit-card:first-child h3 { font-size: 1.1rem; }

.benefit-card p {
  color: var(--text-color);
  font-size: 0.81rem;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  background-color: var(--dark-color);
  padding: 2rem 0;
  margin-top: 1.2rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  font-size: 1.75rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.4rem;
  font-weight: 700;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.testimonials-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.1rem 1.2rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  border-left: 4px solid var(--accent-color);
}
.testimonial:hover { background: rgba(255,255,255,0.1); }

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.testimonial-icon { font-size: 1.9rem; }

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--highlight-color);
  font-family: var(--main-font);
}

.testimonial p {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-size: 0.83rem;
  font-style: italic;
}

footer {
  background-color: var(--dark-color);
  color: rgba(255,255,255,0.86);
  padding: 1.5rem 0 0.9rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}
footer .logo { color: #ffffff; }

.footer-nav {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.82rem;
}
.footer-nav a:hover { color: #ffffff; }

.footer-credit {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
}
.footer-credit a { color: var(--highlight-color); text-decoration: none; }
.footer-credit a:hover { color: #ffffff; }

@media (max-width: 968px) {
  .product-section { grid-template-columns: 1fr; gap: 1.5rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card:first-child { grid-row: span 1; }
  .benefit-card:first-child .benefit-icon { width: 52px; height: 52px; font-size: 1.8rem; border-radius: 10px; }
  .benefit-card:first-child h3 { font-size: 0.97rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-nav { flex-direction: column; gap: 0.55rem; align-items: center; }
}

@media (max-width: 640px) {
  .product-right h1 { font-size: 1.85rem; }
  .price { font-size: 1.42rem; }
  .benefits-banner h2, .testimonials h2 { font-size: 1.45rem; }
}