:root {
  --primary-color: #8B1A4A;
  --secondary-color: #C4788A;
  --accent-color: #D4AA70;
  --light-color: #F9F0EC;
  --dark-color: #2C0E1C;
  --gradient-primary: linear-gradient(135deg, #C4788A 0%, #8B1A4A 100%);
  --hover-color: #6E1438;
  --background-color: #FFFCFA;
  --text-color: #5A3040;
  --border-color: rgba(139, 26, 74, 0.16);
  --divider-color: rgba(139, 26, 74, 0.08);
  --shadow-color: rgba(44, 14, 28, 0.14);
  --highlight-color: #7A5C2E;
  --highlight-bg: #FBF4E7;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Roboto Condensed', 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, 15px);
  color: var(--text-color);
  background: var(--background-color);
  min-height: 100dvh;
  display: flex; flex-direction: column;
  line-height: 1.65; -webkit-font-smoothing: antialiased;
}

/* ── PATTERN: subtle crosshatch ── */
.pattern-bg {
  background-color: var(--background-color);
  background-image:
    repeating-linear-gradient(0deg, rgba(139,26,74,0.04) 0px, rgba(139,26,74,0.04) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(90deg, rgba(139,26,74,0.04) 0px, rgba(139,26,74,0.04) 1px, transparent 1px, transparent 28px);
}

/* ════ HEADER ════ */
.site-header { padding: 1.2rem 0; background: var(--dark-color); position: relative; overflow: hidden; }
.header-inner { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; }
.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-style: italic; font-weight: 700; font-size: clamp(18px,4vw,22px); color: #fff; }
.logo-text em { font-style: normal; color: var(--accent-color); }

main { flex: 1; }
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

/* ════ PRODUCT SECTION — REVERSED, image right ════ */
.product-section { padding: 2.5rem 0 2rem; }
.product-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) {
  .product-grid { grid-template-columns: 1fr 400px; gap: 3.5rem; align-items: start; }
  .info-col { order: 1; }
  .media-col { order: 2; }
}

/* ── INFO COL ── */
.info-col { display: flex; flex-direction: column; gap: 1.25rem; }

.product-eyebrow { font-family: var(--alt-font); font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--secondary-color); }
.info-col h1 { font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: clamp(28px,5.5vw,46px); color: var(--dark-color); line-height: 1.18; }
.info-col h1 span { color: var(--primary-color); font-style: normal; }

.price-row { display: flex; align-items: baseline; gap: 0.45rem; padding: 0.85rem 0; border-top: 2px solid var(--light-color); border-bottom: 2px solid var(--light-color); }
.price-amount { font-family: var(--main-font); font-weight: 700; font-size: clamp(30px,5.5vw,42px); color: var(--primary-color); line-height: 1; }
.price-currency { font-family: var(--alt-font); font-weight: 700; font-size: 16px; color: var(--text-color); }

.product-description { font-family: var(--alt-font); font-size: clamp(13px,4vw,14.5px); line-height: 1.8; color: var(--text-color); }
.product-description + .product-description { margin-top: -0.4rem; }

/* Features — 3 wide horizontal cards stacked */
.features-label { font-family: var(--alt-font); font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary-color); margin-bottom: 0.65rem; }
.features-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.feature-card {
  background: var(--light-color); border-left: 4px solid var(--primary-color);
  padding: 0.85rem 1.1rem; display: flex; align-items: center; gap: 1rem;
  transition: background 0.2s, transform 0.15s;
}
.feature-card:hover { background: #fff; transform: translateX(4px); }
.feature-icon { width: 36px; height: 36px; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon svg { width: 18px; height: 18px; color: #fff; }
.feature-text p { font-family: var(--alt-font); font-weight: 700; font-size: 13px; color: var(--dark-color); line-height: 1.3; }
.feature-text small { font-family: var(--alt-font); font-weight: 400; font-size: 11.5px; color: var(--text-color); margin-top: 2px; display: block; }

.advantages-label { font-family: var(--alt-font); font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary-color); margin-bottom: 0.55rem; }
.advantages-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.advantages-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-family: var(--alt-font); font-size: 13px; color: var(--text-color); line-height: 1.5; padding: 0.5rem 0.85rem; background: var(--light-color); }
.advantages-list li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--accent-color); }

.cta-highlight { background: var(--gradient-primary); padding: 1.1rem 1.5rem; text-align: center; }
.cta-highlight strong { display: block; font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: clamp(14px,4vw,17px); color: #fff; line-height: 1.4; }
.cta-highlight strong em { font-style: normal; color: var(--accent-color); }

/* ── MEDIA COL ── */
.media-col { display: flex; flex-direction: column; gap: 1rem; }

.image-frame {
  background: var(--dark-color); padding: 2rem 1.5rem; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 24px 60px var(--shadow-color);
}
.image-frame::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary-color), var(--accent-color)); }
.image-frame picture, .image-frame img { display: block; max-width: 100%; height: auto; max-height: 250px; object-fit: contain; margin: 0 auto; }

.guarantee-block { background: var(--light-color); border-left: 4px solid var(--accent-color); padding: 0.9rem 1.1rem; display: flex; align-items: flex-start; gap: 0.7rem; }
.guarantee-icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--primary-color); margin-top: 2px; }
.guarantee-block p { font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: 13px; color: var(--dark-color); line-height: 1.4; }
.guarantee-block span { display: block; font-family: var(--alt-font); font-style: normal; font-weight: 400; font-size: 11.5px; color: var(--text-color); margin-top: 3px; }

.btn-cart { display: flex; align-items: center; justify-content: center; gap: 0.55rem; width: 100%; padding: 0.9rem 1.5rem; min-height: 48px; background: var(--dark-color); color: var(--accent-color); font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: 16px; text-decoration: none; border: 2px solid var(--accent-color); transition: background 0.2s, color 0.2s; }
.btn-cart:hover { background: var(--accent-color); color: var(--dark-color); }
.btn-cart svg { width: 18px; height: 18px; }

/* ════ BENEFITS ════ */
.benefits-band { background: var(--light-color); border-top: 2px solid var(--primary-color); padding: 2.75rem 0; }
.band-header { text-align: center; margin-bottom: 1.75rem; }
.band-header h2 { font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: clamp(20px,4.5vw,28px); color: var(--dark-color); }
.band-header h2 em { font-style: normal; color: var(--primary-color); }
.band-header p { font-size: 13px; color: var(--text-color); margin-top: 0.35rem; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@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-top: 3px solid var(--primary-color); padding: 1.2rem 1rem; text-align: center; box-shadow: 0 4px 18px var(--shadow-color); }
.benefit-icon { width: 44px; height: 44px; background: var(--light-color); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.7rem; }
.benefit-icon svg { width: 20px; height: 20px; color: var(--primary-color); }
.benefit-card h3 { font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: 13.5px; color: var(--dark-color); margin-bottom: 0.35rem; }
.benefit-card p { font-size: 12px; color: var(--text-color); line-height: 1.55; }

/* ════ TESTIMONIALS ════ */
.testimonials-section { background: var(--dark-color); padding: 2.75rem 0; }
.section-title { text-align: center; margin-bottom: 1.75rem; }
.section-title h2 { font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: clamp(18px,4vw,26px); color: #fff; }
.section-title h2 em { font-style: normal; color: var(--accent-color); }
.section-title-bar { width: 40px; height: 2px; background: var(--accent-color); margin: 0.55rem auto 0; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
.testimonial-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(212,170,112,0.2); padding: 1.35rem; }
.t-header { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.55rem; }
.t-avatar { width: 40px; height: 40px; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: 13px; color: #fff; }
.t-name { font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: 13px; color: #fff; }
.t-loc  { font-family: var(--alt-font); font-size: 11px; color: var(--secondary-color); }
.t-stars { display: flex; gap: 2px; margin-bottom: 0.5rem; }
.t-stars svg { width: 13px; height: 13px; fill: var(--accent-color); }
.t-text { font-family: var(--alt-font); font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.65; }

/* ════ FOOTER ════ */
.site-footer { background: var(--dark-color); border-top: 2px solid var(--primary-color); }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 1.15rem 1.5rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
@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: 26px; height: 26px; }
.footer-logo-text { font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: 16px; color: #fff; }
.footer-logo-text em { font-style: normal; color: var(--accent-color); }
.footer-nav { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; }
@media (min-width: 768px) { .footer-nav { flex-direction: row; gap: 1.5rem; } }
.footer-nav a { font-size: 12px; color: rgba(255,255,255,0.5); 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.6rem 1.5rem; text-align: center; font-size: 11px; color: rgba(255,255,255,0.28); max-width: 1160px; margin: 0 auto; width: 100%; }