:root {
  --primary-color: #C47B2A;
  --secondary-color: #9A5C10;
  --accent-color: #F0A55A;
  --light-color: #FDF4E9;
  --dark-color: #1D2A3C;
  --gradient-primary: linear-gradient(135deg, #E09040 0%, #C47B2A 100%);
  --hover-color: #7A4408;
  --background-color: #FAFAF7;
  --text-color: #1D2A3C;
  --border-color: rgba(196,123,42,0.15);
  --divider-color: rgba(196,123,42,0.08);
  --shadow-color: rgba(29,42,60,0.07);
  --highlight-color: #D4580A;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Roboto', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--alt-font);
  font-size: clamp(14px,4vw,16px);
  color: var(--text-color);
  background-color: var(--background-color);
  min-height: 100dvh;
  display: flex; flex-direction: column;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* PATTERN: honeycomb dots */
.pattern-bg {
  background-color: var(--background-color);
  background-image:
    radial-gradient(circle, rgba(196,123,42,0.07) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(196,123,42,0.07) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  background-position: 0 0, 13px 13px;
}

/* HEADER */
.site-header {
  padding: 1.2rem 0;
  background: var(--dark-color);
  border-bottom: 4px solid var(--accent-color);
  position: relative; overflow: hidden;
}
.header-deco { display: none; position: absolute; inset: 0; pointer-events: none; }
.header-deco::before {
  content: '';
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 80px; height: 80px;
  background-image: radial-gradient(circle, rgba(240,165,90,0.06) 1.5px, transparent 1.5px), radial-gradient(circle, rgba(240,165,90,0.06) 1.5px, transparent 1.5px);
  background-size: 16px 16px; background-position: 0 0, 8px 8px;
}
@media (min-width: 768px) { .header-deco { display: block; } }

.header-inner { max-width: 1000px; 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.6rem; text-decoration: none; }
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text { font-family: var(--main-font); font-weight: 800; font-size: clamp(19px,4vw,26px); color: #fff; letter-spacing: 0.06em; text-transform: uppercase; }
.logo-text em { font-style: normal; color: var(--accent-color); }

/* MAIN */
main { flex: 1; }

/* HERO STRIP */
.hero-strip {
  background: var(--dark-color); padding: 2.5rem 0; position: relative; overflow: hidden;
}
.hero-strip::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(240,165,90,0.04) 1.5px, transparent 1.5px), radial-gradient(circle, rgba(240,165,90,0.04) 1.5px, transparent 1.5px);
  background-size: 26px 26px; background-position: 0 0, 13px 13px; pointer-events: none;
}
.hero-inner { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; position: relative; z-index: 1; }
@media (min-width: 768px) { .hero-inner { flex-direction: row; justify-content: space-between; text-align: left; gap: 2rem; } }
.hero-copy { display: flex; flex-direction: column; gap: 0.6rem; }
.hero-eyebrow { font-family: var(--alt-font); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(240,165,90,0.7); }
.hero-title { font-family: var(--main-font); font-weight: 900; font-size: clamp(38px,7vw,66px); color: #fff; line-height: 0.95; letter-spacing: 0.04em; text-transform: uppercase; }
.hero-title em { font-style: normal; color: var(--accent-color); }
.hero-subtitle { font-family: var(--alt-font); font-size: 13.5px; color: rgba(255,255,255,0.6); max-width: 340px; line-height: 1.6; }
.hero-price { background: var(--accent-color); padding: 1.25rem 2rem; text-align: center; flex-shrink: 0; }
.hero-price .price-amount { display: block; font-family: var(--main-font); font-weight: 900; font-size: clamp(26px,5vw,40px); color: var(--dark-color); line-height: 1; letter-spacing: 0.02em; }
.hero-price .price-currency { display: block; font-family: var(--alt-font); font-weight: 700; font-size: 12px; color: rgba(29,42,60,0.6); margin-top: 3px; }

/* PRODUCT CONTENT */
.product-content { max-width: 1000px; margin: 0 auto; padding: 2rem 1.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .product-content { grid-template-columns: 260px 1fr; align-items: start; } }

.content-left { display: flex; flex-direction: column; gap: 1rem; }

.product-image-wrap { background: var(--light-color); border: 2px solid var(--primary-color); padding: 1.75rem 1rem; text-align: center; }
.product-image-wrap picture, .product-image-wrap img { display: block; max-width: 100%; height: auto; max-height: 220px; object-fit: contain; margin: 0 auto; }

.guarantee-block { background: var(--accent-color); padding: 0.85rem 1rem; display: flex; align-items: flex-start; gap: 0.65rem; }
.guarantee-icon { flex-shrink: 0; width: 18px; height: 18px; color: var(--dark-color); margin-top: 2px; }
.guarantee-block p { font-family: var(--main-font); font-weight: 700; font-size: 12px; color: var(--dark-color); line-height: 1.4; letter-spacing: 0.04em; text-transform: uppercase; }
.guarantee-block span { display: block; font-family: var(--alt-font); font-weight: 400; font-size: 11px; color: rgba(29,42,60,0.65); margin-top: 2px; text-transform: none; }

.features-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.feature-item { background: #fff; border: 1px solid var(--border-color); border-left: 4px solid var(--primary-color); padding: 0.65rem 0.85rem; display: flex; align-items: center; gap: 0.65rem; transition: border-color 0.2s; }
.feature-item:hover { border-left-color: var(--accent-color); }
.feature-icon-wrap { width: 38px; height: 38px; background: var(--light-color); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.feature-icon-wrap svg { width: 18px; height: 18px; color: var(--primary-color); }
.feature-item span { font-family: var(--alt-font); font-size: 12.5px; font-weight: 600; color: var(--text-color); line-height: 1.3; }

.btn-cart { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; min-height: 48px; padding: 0.9rem 1.5rem; background: var(--dark-color); color: #fff; font-family: var(--main-font); font-weight: 800; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border: 3px solid var(--dark-color); transition: background 0.2s, color 0.2s, border-color 0.2s; }
.btn-cart:hover { background: transparent; color: var(--dark-color); }
.btn-cart svg { width: 17px; height: 17px; }

.content-right { display: flex; flex-direction: column; gap: 1rem; }
.product-eyebrow { font-family: var(--main-font); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--secondary-color); }
.content-right h2 { font-family: var(--main-font); font-weight: 900; font-size: clamp(22px,4.5vw,34px); color: var(--dark-color); line-height: 1.1; letter-spacing: 0.04em; text-transform: uppercase; }
.content-right h2 em { font-style: normal; color: var(--primary-color); }
.product-description { font-family: var(--alt-font); font-size: clamp(13px,3.8vw,14px); line-height: 1.8; color: rgba(29,42,60,0.78); }
.cta-highlight { background: var(--dark-color); padding: 1.1rem 1.3rem; border-left: 6px solid var(--accent-color); }
.cta-highlight strong { display: block; font-family: var(--main-font); font-weight: 800; font-size: clamp(14px,4vw,17px); color: #fff; line-height: 1.35; letter-spacing: 0.04em; text-transform: uppercase; }
.cta-highlight strong em { font-style: normal; color: var(--accent-color); }

/* BAND */
.benefits-band { background: var(--light-color); padding: 2.5rem 0; border-top: 2px solid var(--border-color); }
.container { width: 100%; max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; }
.band-header { text-align: center; margin-bottom: 1.5rem; }
.band-header h2 { font-family: var(--main-font); font-weight: 800; font-size: clamp(17px,4vw,26px); color: var(--dark-color); letter-spacing: 0.06em; text-transform: uppercase; }
.band-header h2 em { font-style: normal; color: var(--primary-color); }
.band-header p { font-family: var(--alt-font); font-size: 12.5px; color: rgba(29,42,60,0.5); margin-top: 0.35rem; }

.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 0.85rem; }
@media (min-width: 580px) { .benefits-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .benefits-grid { grid-template-columns: repeat(4,1fr); } }

.benefit-card { background: #fff; border: 1px solid var(--border-color); border-top: 4px solid var(--primary-color); padding: 1.1rem 1rem; transition: background 0.2s; }
.benefit-card:hover { background: var(--background-color); }
.benefit-icon { width: 46px; height: 46px; background: var(--light-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 0.7rem; }
.benefit-icon svg { width: 22px; height: 22px; color: var(--primary-color); }
.benefit-card h3 { font-family: var(--main-font); font-weight: 800; font-size: 12.5px; color: var(--dark-color); margin-bottom: 0.3rem; letter-spacing: 0.06em; text-transform: uppercase; }
.benefit-card p { font-family: var(--alt-font); font-size: 11.5px; color: rgba(29,42,60,0.55); line-height: 1.55; }

/* TESTIMONIALS */
.testimonials-section { background: var(--dark-color); padding: 2.5rem 0; }
.section-title { text-align: center; margin-bottom: 1.5rem; }
.section-title h2 { font-family: var(--main-font); font-weight: 800; font-size: clamp(17px,4vw,24px); color: #fff; letter-spacing: 0.08em; text-transform: uppercase; }
.section-title-bar { width: 40px; height: 4px; background: var(--accent-color); margin: 0.5rem auto 0; }

.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 0.85rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }

.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(196,123,42,0.2); border-left: 4px solid var(--accent-color); padding: 1.2rem; position: relative; overflow: hidden; transition: background 0.2s; }
.testimonial-card:hover { background: rgba(255,255,255,0.08); }
.testimonial-card::after { content: '"'; position: absolute; bottom: -0.5rem; right: 0.8rem; font-size: 60px; font-family: Georgia, serif; color: rgba(240,165,90,0.1); line-height: 1; pointer-events: none; }
.t-header { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.5rem; }
.t-avatar { width: 38px; height: 38px; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--main-font); font-weight: 800; font-size: 12px; color: #fff; letter-spacing: 0.04em; }
.t-name { font-family: var(--main-font); font-weight: 800; font-size: 13px; color: #fff; letter-spacing: 0.04em; text-transform: uppercase; }
.t-loc { font-family: var(--alt-font); font-size: 11px; color: rgba(240,165,90,0.65); }
.t-stars { display: flex; gap: 2px; margin-bottom: 0.45rem; }
.t-stars svg { width: 13px; height: 13px; fill: var(--accent-color); }
.t-text { font-family: var(--alt-font); font-size: 12.5px; color: rgba(255,255,255,0.7); line-height: 1.65; font-style: italic; position: relative; z-index: 1; }

/* FOOTER */
.site-footer { background: var(--dark-color); border-top: 4px solid var(--accent-color); }
.footer-inner { max-width: 1000px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; } }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.footer-logo-icon { width: 24px; height: 24px; }
.footer-logo-text { font-family: var(--main-font); font-weight: 800; font-size: 16px; color: #fff; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-logo-text em { font-style: normal; color: var(--accent-color); }
.footer-nav { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
@media (min-width: 768px) { .footer-nav { flex-direction: row; gap: 1.3rem; } }
.footer-nav a { font-family: var(--alt-font); font-size: 11.5px; color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent-color); }
.footer-copyright { border-top: 1px solid rgba(255,255,255,0.07); padding: 0.55rem 1.5rem; text-align: center; font-family: var(--alt-font); font-size: 11px; color: rgba(255,255,255,0.22); max-width: 1000px; margin: 0 auto; width: 100%; }