/* ============================================================================
   HookahX Artikel-Design-System (.esh-blog)
   EINMAL site-weit laden: WP-Admin -> Design -> Customizer -> "Zusätzliches CSS"
   -> kompletten Inhalt dieser Datei einfügen -> Veröffentlichen.
   Danach nutzen alle generierten Artikel (in <div class="esh-blog">…</div>) die Klassen.
   Quelle: erprobtes Design von /xkah-lite-leak/. Einzige Änderung ggü. Original:
   Link-Farbe von Google-Blau (#1a73e8) auf Brand-Orange (#c93600).
   ========================================================================== */

.esh-blog { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #1a1a1a; line-height: 1.8; max-width: 960px; margin: 0 auto; padding: 0 16px; }
.esh-blog h1 { font-size: 2.2em; font-weight: 800; text-align: center; margin: 40px 0 10px; color: #111; }
.esh-blog .esh-subtitle { text-align: center; font-size: 1.15em; color: #555; margin-bottom: 35px; }
.esh-blog h2 { font-size: 1.6em; font-weight: 700; margin: 50px 0 18px; padding-bottom: 10px; border-bottom: 3px solid #0a0a0a; color: #111; }
.esh-blog h3 { font-size: 1.25em; font-weight: 700; margin: 30px 0 12px; color: #222; }
.esh-blog p { margin: 0 0 18px; font-size: 1.05em; }
.esh-blog ul, .esh-blog ol { margin: 0 0 20px 20px; font-size: 1.05em; }
.esh-blog li { margin-bottom: 8px; }
.esh-blog strong { color: #000; }
.esh-blog a { color: #c93600; text-decoration: none; font-weight: 600; }
.esh-blog a:hover { text-decoration: underline; }

/* Badge */
.esh-leak-badge { display: inline-block; background: linear-gradient(135deg, #c93600 0%, #ff5722 100%); color: #fff; font-weight: 800; font-size: 0.78em; padding: 4px 12px; border-radius: 14px; text-transform: uppercase; letter-spacing: 1.2px; vertical-align: middle; margin-left: 10px; box-shadow: 0 2px 6px rgba(201,54,0,0.35); }

/* Hero Image */
.esh-hero-img { width: 100%; max-width: 800px; margin: 24px auto 8px; display: block; border-radius: 14px; box-shadow: 0 6px 24px rgba(0,0,0,0.18); }
.esh-hero-caption { text-align: center; font-size: 0.92em; color: #777; font-style: italic; margin-bottom: 32px; }

/* Insider / Callout Box */
.esh-insider { background: linear-gradient(135deg, #fff8e7 0%, #fef3d3 100%); border-left: 4px solid #c93600; border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 25px 0; position: relative; }
.esh-insider::before { content: '🔒 INSIDER'; position: absolute; top: -10px; left: 12px; background: #c93600; color: #fff; padding: 2px 10px; border-radius: 12px; font-size: 0.7em; font-weight: 800; letter-spacing: 1.2px; }
.esh-insider p { margin: 8px 0 0; font-size: 1em; color: #1a1a1a; }

/* Spec Pills */
.esh-pillrow { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px; }
.esh-pill { background: #1a1a1a; color: #fff; padding: 6px 14px; border-radius: 18px; font-size: 0.88em; font-weight: 600; }
.esh-pill-gold { background: #eab11a; color: #1a1a1a; }

/* Comparison Table */
.esh-table-wrap { overflow-x: auto; margin: 25px 0 35px; border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.esh-table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 0.95em; }
.esh-table thead th { background: #111; color: #fff; padding: 14px 16px; text-align: left; font-weight: 700; font-size: 0.95em; }
.esh-table thead th:first-child { border-radius: 10px 0 0 0; }
.esh-table thead th:last-child { border-radius: 0 10px 0 0; }
.esh-table tbody td { padding: 12px 16px; border-bottom: 1px solid #eee; vertical-align: top; }
.esh-table tbody tr:nth-child(even) { background: #f9f9f9; }
.esh-table tbody tr:hover { background: #f0f4ff; }
.esh-table .esh-highlight { background: #efffef !important; font-weight: 600; }
.esh-table .esh-check { color: #22c55e; font-weight: 700; }
.esh-table .esh-cross { color: #ef4444; font-weight: 700; }
.esh-table .esh-meh { color: #f59e0b; font-weight: 700; }

/* Product Cards */
.esh-product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 30px 0; }
.esh-product-card { background: #fff; border: 2px solid #e0e0e0; border-radius: 12px; overflow: hidden; text-align: center; transition: box-shadow 0.3s, border-color 0.3s; }
.esh-product-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.12); border-color: #bbb; }
.esh-product-card img { width: 100%; height: 250px; object-fit: contain; padding: 15px; background: #fafafa; }
.esh-product-card .esh-card-body { padding: 15px 20px 20px; }
.esh-product-card .esh-card-title { font-weight: 700; font-size: 1.05em; margin-bottom: 10px; color: #111; }
.esh-product-card .esh-card-price { font-size: 1.05em; font-weight: 800; color: #d4380d; margin-bottom: 12px; line-height: 1.4; }
.esh-product-card .esh-card-price .esh-price-uvp { display: block; color: #555; font-size: 0.78em; font-weight: 500; text-decoration: line-through; }
.esh-product-card .esh-card-price .esh-price-final { display: block; color: #c93600; font-weight: 800; }
.esh-product-card .esh-card-price .esh-price-final small { display: inline-block; color: #1a1a1a; font-weight: 700; font-size: 0.62em; background: #fef3d3; padding: 2px 8px; border-radius: 4px; margin-left: 6px; border: 1px solid #eab11a; vertical-align: middle; letter-spacing: 0.5px; }
.esh-product-card .esh-card-btn { display: inline-block; background: #111; color: #fff; padding: 10px 28px; border-radius: 6px; font-weight: 700; font-size: 0.95em; text-decoration: none; transition: background 0.3s; }
.esh-product-card .esh-card-btn:hover { background: #333; }

/* CTA Box */
.esh-cta { background: linear-gradient(135deg, #0f0f0f 0%, #2a2a2a 100%); color: #fff; padding: 35px 30px; border-radius: 14px; text-align: center; margin: 40px 0; }
.esh-cta h3 { color: #f7c948; margin: 0 0 12px; font-size: 1.4em; }
.esh-cta p { color: #ddd; margin-bottom: 20px; font-size: 1.05em; }
.esh-cta strong { color: #fff !important; }
.esh-cta .esh-cta-btn { display: inline-block; background: #f7c948; color: #111; padding: 14px 36px; border-radius: 8px; font-weight: 800; font-size: 1.1em; text-decoration: none; transition: background 0.3s, transform 0.2s; }
.esh-cta .esh-cta-btn:hover { background: #ffd866; transform: translateY(-2px); }

/* Top Promo Banner */
.esh-promo-banner { background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 50%, #2a2200 100%); color: #fff; padding: 22px 26px; border-radius: 14px; margin: 24px 0 32px; box-shadow: 0 8px 28px rgba(234,177,26,0.22); border: 2px solid #eab11a; position: relative; overflow: hidden; }
.esh-promo-banner::before { content: ''; position: absolute; top: -40%; right: -10%; width: 240px; height: 240px; background: radial-gradient(circle, rgba(234,177,26,0.25) 0%, transparent 70%); pointer-events: none; }
.esh-promo-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; position: relative; z-index: 1; }
.esh-promo-icon-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 86px; }
.esh-promo-icon { font-size: 2.4em; line-height: 1; }
.esh-promo-discount { background: #eab11a; color: #1a1a1a; font-weight: 800; font-size: 1.05em; padding: 4px 14px; border-radius: 14px; letter-spacing: 0.5px; box-shadow: 0 2px 8px rgba(0,0,0,0.25); }
.esh-promo-headline { font-size: 1.38em; font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1.25; }
.esh-promo-headline span { color: #eab11a; }
.esh-promo-sub { font-size: 1em; color: #f0f0f0; line-height: 1.55; }
.esh-promo-sub strong { color: #fff !important; }
.esh-promo-sub small { display: block; margin-top: 6px; font-size: 0.92em; color: #d8d8d8; }
.esh-promo-sub small strong { color: #fff !important; }
.esh-promo-code { background: #eab11a; color: #1a1a1a; padding: 3px 12px; border-radius: 6px; font-family: 'Courier New', monospace; font-size: 1.1em; letter-spacing: 1.6px; box-shadow: 0 2px 6px rgba(0,0,0,0.25); font-weight: 800; }
.esh-promo-btn { display: inline-block; background: #eab11a; color: #1a1a1a !important; padding: 14px 26px; border-radius: 8px; font-weight: 800; font-size: 1.05em; text-decoration: none !important; transition: transform 0.2s, background 0.2s; white-space: nowrap; }
.esh-promo-btn:hover { background: #ffd866; transform: translateY(-1px); }

/* Inline Promo Box */
.esh-promo-inline { background: linear-gradient(135deg, #fff8e7 0%, #fef3d3 100%); border: 2px solid #eab11a; border-radius: 12px; padding: 18px 22px; margin: 28px 0; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.esh-promo-inline-text { flex: 1; min-width: 240px; color: #1a1a1a; }
.esh-promo-inline-text strong { color: #1a1a1a !important; }
.esh-promo-inline strong.esh-promo-code-inline { background: #1a1a1a; color: #eab11a !important; padding: 4px 12px; border-radius: 6px; font-family: 'Courier New', monospace; letter-spacing: 1.5px; font-size: 1.05em; box-shadow: 0 2px 6px rgba(0,0,0,0.18); font-weight: 800; }
.esh-promo-inline-cta { background: #1a1a1a; color: #fff !important; padding: 11px 22px; border-radius: 6px; font-weight: 800; text-decoration: none !important; transition: background 0.2s; white-space: nowrap; }
.esh-promo-inline-cta:hover { background: #333; }

/* TOC */
.esh-toc { background: #f7f7f7; border: 1px solid #e0e0e0; border-radius: 10px; padding: 22px 28px; margin: 30px 0 40px; }
.esh-toc h3 { margin: 0 0 14px; font-size: 1.1em; color: #111; }
.esh-toc ol { margin: 0; padding-left: 20px; }
.esh-toc li { margin-bottom: 6px; font-size: 0.98em; }
.esh-toc a { color: #333; font-weight: 500; }

/* Color Swatches */
.esh-colors { display: flex; gap: 24px; flex-wrap: wrap; margin: 24px 0; justify-content: center; }
.esh-color { text-align: center; }
.esh-color-dot { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.18); border: 3px solid #fff; }
.esh-color-graphit { background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%); }
.esh-color-blue { background: linear-gradient(135deg, #1e3a8a 0%, #0c1e4a 100%); }
.esh-color-red { background: linear-gradient(135deg, #c93600 0%, #7a1f00 100%); }
.esh-color-label { font-weight: 700; font-size: 0.95em; color: #1a1a1a; }

/* FAQ Accordion */
.esh-faq { margin: 30px 0; }
.esh-faq-item { border: 1px solid #e0e0e0; border-radius: 8px; margin-bottom: 12px; overflow: hidden; }
.esh-faq-q { background: #f7f7f7; padding: 16px 20px; font-weight: 700; font-size: 1.05em; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.esh-faq-q::after { content: '+'; font-size: 1.4em; font-weight: 300; color: #888; }
.esh-faq-a { padding: 16px 20px; font-size: 1em; line-height: 1.7; display: none; }
.esh-faq-item.active .esh-faq-q::after { content: '−'; }
.esh-faq-item.active .esh-faq-a { display: block; }

/* Pro/Con boxes */
.esh-blog .esh-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 32px; }
.esh-blog .esh-pro, .esh-blog .esh-con { padding: 18px 20px; border-radius: 10px; }
.esh-blog .esh-pro { background: #efffef; border-left: 4px solid #22c55e; }
.esh-blog .esh-con { background: #fff5f5; border-left: 4px solid #ef4444; }
.esh-blog .esh-pro h4 { margin: 0 0 10px; font-size: 1em; color: #14532d; }
.esh-blog .esh-con h4 { margin: 0 0 10px; font-size: 1em; color: #7f1d1d; }
.esh-blog .esh-pro ul, .esh-blog .esh-con ul { margin: 0; padding-left: 18px; font-size: 0.95em; }
.esh-blog .esh-pro li, .esh-blog .esh-con li { margin-bottom: 6px; }

/* Responsive */
@media (max-width: 768px) {
  .esh-blog h1 { font-size: 1.55em; }
  .esh-blog h2 { font-size: 1.3em; }
  .esh-product-grid { grid-template-columns: 1fr; }
  .esh-cta { padding: 25px 18px; }
  .esh-promo-grid { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .esh-promo-headline { font-size: 1.18em; }
  .esh-promo-icon-wrap { flex-direction: row; justify-content: center; }
  .esh-promo-inline { text-align: center; justify-content: center; }
  .esh-colors { gap: 12px; }
  .esh-color-dot { width: 48px; height: 48px; }
  .esh-blog .esh-proscons { grid-template-columns: 1fr; }
}
