﻿:root {
  --forest: #1b3b22;
  --forest-light: #2c5936;
  --amber: #b87b28;
  --copper: #c8963e;
  --bg-parchment: #fbf9f4;
  --bg-card: #f3ece0;
  --text-dark: #2a241b;
  --text-muted: #695e4e;
  --border: #dfd5c4;
  --radius: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Georgia, "Times New Roman", -apple-system, serif;
  background-color: var(--bg-parchment);
  color: var(--text-dark);
  line-height: 1.7;
}
.container { width: 100%; max-width: 1050px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }

/* Botanical Header */
.botanical-header {
  background: var(--bg-parchment);
  border-bottom: 2px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.bot-logo { font-size: 1.5rem; font-weight: bold; color: var(--forest); letter-spacing: 1px; }
.bot-logo span { color: var(--amber); font-style: italic; }
.btn-herbal {
  background: var(--forest); color: #fff; font-family: -apple-system, sans-serif;
  font-weight: 700; padding: 12px 24px; border-radius: 6px; display: inline-block;
  border: 1px solid var(--forest-light); transition: 0.2s; cursor: pointer;
}
.btn-herbal:hover { background: var(--forest-light); }

/* Hero */
.hero { padding: 60px 0; text-align: center; }
.nature-tag {
  display: inline-block; background: #e8f0e9; color: var(--forest); font-family: -apple-system, sans-serif;
  font-size: 0.8rem; font-weight: 800; padding: 4px 14px; border-radius: 99px;
  border: 1px solid #c4d9c7; margin-bottom: 18px; text-transform: uppercase;
}
.hero-title { font-size: 2.8rem; color: var(--forest); line-height: 1.25; margin-bottom: 20px; }
.hero-lead { font-size: 1.2rem; color: var(--text-muted); max-width: 740px; margin: 0 auto 40px; }

.visual-wood-frame {
  background: #ffffff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.visual-wood-frame img { width: 100%; max-height: 480px; object-fit: contain; border-radius: var(--radius); }

/* Story Box */
.story-section { padding: 70px 0; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.story-grid { display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: center; }
.story-img { width: 100%; border-radius: var(--radius); border: 3px solid #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

/* Interactive Sauna & Cold Test */
.cold-test-box { background: #fff; border: 2px solid var(--border); border-radius: var(--radius); padding: 36px; margin: 40px 0; }
.radio-tile {
  background: var(--bg-parchment); border: 1px solid var(--border); border-radius: 6px;
  padding: 14px; margin-bottom: 10px; display: flex; align-items: center; gap: 12px; cursor: pointer;
  font-family: -apple-system, sans-serif; font-size: 0.95rem;
}
.radio-tile:hover { border-color: var(--forest); }

/* Order Page */
.pkg-wood-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.pkg-wood-card {
  background: #fff; border: 2px solid var(--border); border-radius: var(--radius);
  padding: 30px 20px; text-align: center; cursor: pointer; transition: 0.2s;
}
.pkg-wood-card:hover, .pkg-wood-card.selected { border-color: var(--forest); transform: translateY(-3px); }
.pkg-wood-card.featured { border-color: var(--amber); background: #fdfaf4; }

@media(max-width: 768px) {
  .hero-title { font-size: 2.1rem; }
  .visual-wood-frame, .story-grid, .pkg-wood-grid { grid-template-columns: 1fr; }
}

/* Rich Components for ProstAktiv Botanical */
.bot-section-title { font-size: 2.3rem; color: var(--forest); text-align: center; margin-bottom: 12px; }
.bot-section-desc { color: var(--text-muted); font-size: 1.05rem; text-align: center; max-width: 750px; margin: 0 auto 35px; }

.bot-ingr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.bot-ingr-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; border-top: 4px solid var(--forest); transition: 0.2s; }
.bot-ingr-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(27, 59, 34, 0.08); border-color: var(--amber); }
.bot-ingr-card h3 { font-size: 1.15rem; color: var(--forest); margin-bottom: 8px; }
.bot-ingr-card p { font-size: 0.92rem; color: var(--text-dark); line-height: 1.6; }

.bot-table-wrap { overflow-x: auto; margin-top: 30px; }
.bot-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; border: 2px solid var(--border); }
.bot-table th, .bot-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.bot-table th { background: #e8f0e9; color: var(--forest); font-weight: 800; }
.bot-table th.highlight, .bot-table td.highlight { background: #fdfaf4; border-left: 2px solid var(--amber); border-right: 2px solid var(--amber); font-weight: 700; color: var(--forest); }

.bot-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.bot-timeline-card { background: #fff; border: 2px solid var(--border); border-radius: var(--radius); padding: 24px; }
.bot-timeline-badge { background: var(--forest); color: #fff; font-weight: 800; font-size: 0.8rem; padding: 4px 10px; border-radius: 4px; display: inline-block; margin-bottom: 12px; font-family: -apple-system, sans-serif; }

.bot-reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 30px; }
.bot-review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }

.bot-faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.bot-faq-q { width: 100%; padding: 18px 22px; background: none; border: none; text-align: left; font-size: 1.05rem; font-weight: 700; color: var(--forest); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: Georgia, serif; }
.bot-faq-a { padding: 0 22px 18px; font-size: 0.95rem; color: var(--text-dark); line-height: 1.7; display: none; }
.bot-faq-item.active .bot-faq-a { display: block; }
.bot-faq-item.active .bot-faq-toggle { transform: rotate(45deg); color: var(--amber); }

@media(max-width: 850px) {
  .bot-ingr-grid, .bot-timeline, .bot-reviews-grid { grid-template-columns: 1fr; }
}
/* Botanical Nav & Header Anti-Collision */
.botanical-header .container {
  max-width: 1220px;
}
.botanical-header .header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}
.botanical-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: -apple-system, sans-serif;
  font-weight: 700;
}
.botanical-nav a {
  white-space: nowrap;
  font-size: 0.95rem;
  color: var(--forest);
  padding: 4px 6px;
  transition: color 0.2s;
}
.botanical-nav a:hover, .botanical-nav a.active {
  color: var(--amber);
}
.bot-logo {
  flex-shrink: 0;
}
.btn-herbal {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Botanical Modal */
.modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(20, 35, 20, 0.8) !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
  padding: 20px !important;
  backdrop-filter: blur(4px) !important;
}
.modal-overlay.active {
  display: flex !important;
}
.modal-content {
  background: #ffffff !important;
  border: 2px solid var(--forest) !important;
  border-radius: 12px !important;
  max-width: 520px !important;
  width: 100% !important;
  padding: 36px 28px !important;
  text-align: center !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3) !important;
}
