:root {
  --primary-color: #7A4F10;
  --secondary-color: #B07828;
  --accent-color: #D4A843;
  --light-color: #FDF6E3;
  --dark-color: #2C1F08;
  --gradient-primary: linear-gradient(135deg, #7A4F10 0%, #B07828 100%);
  --hover-color: #613E0C;
  --background-color: #FAFAF3;
  --text-color: #2E2208;
  --border-color: rgba(212, 168, 67, 0.3);
  --shadow-color: rgba(122, 79, 16, 0.12);
  --highlight-color: #F4D03F;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Lato', 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;
}

/* Pattern: scattered small diamonds rotated */
.pattern-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.035;
  background-image:
    linear-gradient(135deg, var(--primary-color) 20%, transparent 20%),
    linear-gradient(225deg, var(--primary-color) 20%, transparent 20%),
    linear-gradient(315deg, var(--primary-color) 20%, transparent 20%),
    linear-gradient(45deg,  var(--primary-color) 20%, transparent 20%);
  background-size: 24px 24px;
  background-position: 0 0, 12px 0, 12px -12px, 0 12px;
}

.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 ===== */
header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  box-shadow: 0 2px 8px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.header-decor {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0.1;
  pointer-events: none;
}

.header-decor .ring {
  border-radius: 50%;
  border: 3px solid #ffffff;
  flex-shrink: 0;
}

.header-decor .ring.lg { width: 52px; height: 52px; }
.header-decor .ring.md { width: 36px; height: 36px; }
.header-decor .ring.sm { width: 22px; height: 22px; }

header .container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #ffffff;
  font-family: var(--main-font);
  font-size: 1.52rem;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.logo-icon {
  font-size: 1.7rem;
}

/* ===== MAIN ===== */
main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

main .container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 2.2rem;
  align-items: start;
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image {
  width: 100%;
  display: flex;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 16px var(--shadow-color);
  padding: 1.4rem 1rem;
  border-bottom: 4px solid var(--accent-color);
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.guarantee-block {
  background: linear-gradient(135deg, #fff9ec 0%, #fef3d0 100%);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  box-shadow: 0 2px 8px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  font-size: 0.97rem;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guarantee-block p {
  font-size: 0.84rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* Feature items — full-width tags with icon left, arrow right */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 4px var(--shadow-color);
  transition: background 0.2s ease, transform 0.2s ease;
}

.feature-item:hover {
  background: var(--light-color);
  transform: translateX(4px);
}

.feature-item-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.feature-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.feature-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.3;
}

.feature-arrow {
  color: var(--accent-color);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.cart-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: #ffffff;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: all 0.3s ease;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
}

/* Right column */
.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.35rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.price {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.95rem;
  font-family: var(--main-font);
}

.product-description {
  margin-bottom: 1rem;
}

.product-description p {
  margin-bottom: 0.85rem;
  color: var(--text-color);
  font-size: 0.91rem;
  line-height: 1.7;
}

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(244, 208, 63, 0.7);
  box-shadow: 0 2px 8px rgba(212, 168, 67, 0.25);
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
  padding: 0.55rem 0.8rem 0.55rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
  transition: padding-left 0.2s ease;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li:hover {
  padding-left: 0.4rem;
}

.feature-check {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== BENEFITS SECTION — horizontal scrolling-style comparison table ===== */
.benefits-section {
  margin-top: 1.5rem;
  background: var(--dark-color);
  padding: 2.8rem 0;
}

.benefits-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.85rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.4px;
}

.benefits-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.benefits-row {
  display: contents;
}

.benefits-cell {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s ease;
}

.benefits-cell:hover {
  background: rgba(255,255,255,0.08);
}

.benefits-cell .bc-icon {
  font-size: 1.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits-cell h3 {
  font-family: var(--main-font);
  font-size: 0.95rem;
  color: var(--highlight-color);
  margin-bottom: 0.3rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.benefits-cell p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--light-color);
  padding: 3rem 0;
  border-top: 3px solid var(--accent-color);
}

.testimonials h2 {
  font-family: var(--main-font);
  font-size: 1.9rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.4px;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.testimonials-grid {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.testimonial {
  background: #ffffff;
  padding: 1.3rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow-color);
  border-top: 3px solid var(--accent-color);
  transition: transform 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.testimonial-icon {
  font-size: 2.1rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--primary-color);
  font-family: var(--main-font);
}

.testimonial-city {
  font-size: 0.78rem;
  color: var(--secondary-color);
}

.testimonial p {
  color: var(--text-color);
  line-height: 1.65;
  font-size: 0.87rem;
  font-style: italic;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--dark-color);
  color: rgba(255,255,255,0.78);
  padding: 1.8rem 0 1rem;
}

.footer-content {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

footer .logo {
  color: #ffffff;
  font-size: 1.3rem;
}

.footer-nav {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}

.footer-credit a:hover { color: #ffffff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .product-section {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .benefits-table {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.65rem;
    align-items: center;
  }

  .header-decor { display: none; }
}

@media (max-width: 640px) {
  .product-right h1 { font-size: 2rem; }
  .price { font-size: 1.55rem; }
}