/* ═══════════════════════════════════════════════════════════════
   OCEAN — editorial, jako homepage penguincoffee.cz
   ═══════════════════════════════════════════════════════════════ */
body[data-theme="ocean"] {
  --bg: #ffffff;
  --surface: #e8f2f8;
  --text: #1a3a52;
  --text-secondary: #3d5a6e;
  --muted: #6b8499;
  --border: #c5d9e8;
  --accent: #1a4a6e;
  --accent-text: #ffffff;
  --hero-overlay: rgba(26, 74, 110, 0.82);
  --hero-text-muted: rgba(255, 255, 255, 0.9);
  --radius: 6px;
}

body[data-theme="ocean"] .top-bar {
  background: #ffffff;
  border-bottom-color: #c5d9e8;
}

body[data-theme="ocean"] .design-bar {
  background: #e8f2f8;
}

body[data-theme="ocean"] .home-intro {
  background: linear-gradient(180deg, #d4e8f4 0%, #ffffff 85%);
  margin: 0 -16px 20px;
  padding: 28px 16px 24px;
}

body[data-theme="ocean"] .home-title {
  color: #1a4a6e;
}

body[data-theme="ocean"] .segment-btn.active {
  background: #1a4a6e;
}

body[data-theme="ocean"] .coffee-card {
  background: #f4f9fc;
  border-radius: 6px;
}

body[data-theme="ocean"] .coffee-card-image-wrap {
  background: #fff;
  border-radius: 6px 6px 0 0;
}

body[data-theme="ocean"] .method-card {
  background: #e8f2f8;
  border-radius: 6px;
}

body[data-theme="ocean"] .btn-primary,
body[data-theme="ocean"] .design-tab.active {
  border-radius: 6px;
}

body[data-theme="ocean"] .detail-image-wrap {
  background: #fff;
  border-radius: 6px;
}

body[data-theme="ocean"] .detail-header {
  border-bottom-color: #c5d9e8;
}

/* ═══════════════════════════════════════════════════════════════
   MINIMAL — černobílý, velká typografie, bez dekorací
   ═══════════════════════════════════════════════════════════════ */
body[data-theme="minimal"] {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #111111;
  --text-secondary: #333333;
  --muted: #666666;
  --border: #111111;
  --accent: #111111;
  --accent-text: #ffffff;
  --hero-overlay: rgba(0, 0, 0, 0.65);
  --hero-text-muted: rgba(255, 255, 255, 0.85);
  --radius: 0;
}

body[data-theme="minimal"] .brand-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--muted);
}

body[data-theme="minimal"] .design-bar {
  background: #111;
  border-bottom-color: #111;
}

body[data-theme="minimal"] .design-bar-label {
  color: #888;
}

body[data-theme="minimal"] .design-tab {
  background: #222;
  border-color: #444;
  color: #fff;
}

body[data-theme="minimal"] .design-tab.active {
  background: #fff;
  color: #111;
  border-color: #fff;
}

body[data-theme="minimal"] .design-showcase {
  background: #fff;
  border-bottom: 2px solid #111;
}

body[data-theme="minimal"] .design-showcase-title {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
  text-transform: none;
}

body[data-theme="minimal"] .home-intro {
  padding: 32px 0 28px;
  border-bottom: 1px solid #111;
  margin-bottom: 24px;
}

body[data-theme="minimal"] .home-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

body[data-theme="minimal"] .home-lead {
  font-size: 13px;
  color: #666;
}

body[data-theme="minimal"] .filter-segment {
  border-color: #111;
}

body[data-theme="minimal"] .segment-btn + .segment-btn {
  border-left-color: #111;
}

body[data-theme="minimal"] .segment-btn.active {
  background: #111;
  color: #fff;
}

body[data-theme="minimal"] .status-badge--soldout {
  background: #f0f0f0;
  color: #666;
}

body[data-theme="minimal"] .coffee-card {
  background: #fff;
}

body[data-theme="minimal"] .coffee-card-image-wrap {
  background: #fafafa;
  padding: 12px;
}

body[data-theme="minimal"] .coffee-card-body {
  padding: 10px 10px 12px;
}

body[data-theme="minimal"] .coffee-card h2 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[data-theme="minimal"] .detail-image-wrap {
  background: #fafafa;
}

body[data-theme="minimal"] .detail-info h1 {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body[data-theme="minimal"] .detail-header {
  border-bottom-color: #111;
}

body[data-theme="minimal"] .filter-segment {
  border-radius: 0;
}

body[data-theme="minimal"] .method-card {
  background: #fff;
  padding: 24px 12px 18px;
}

body[data-theme="minimal"] .method-card:hover {
  background: #111;
  color: #fff;
}

body[data-theme="minimal"] .method-card:hover .method-icon,
body[data-theme="minimal"] .method-card:hover .method-card-body > span {
  color: #fff;
}

body[data-theme="minimal"] .method-card:hover strong {
  color: #fff;
}

body[data-theme="minimal"] .btn-primary,
body[data-theme="minimal"] .btn-outline,
body[data-theme="minimal"] .btn-ghost,
body[data-theme="minimal"] .design-card {
  border-radius: 0;
}

body[data-theme="minimal"] .param-pill {
  border-width: 1px;
  border-color: #111;
}

body[data-theme="minimal"] .timer-ring-progress {
  stroke-width: 2;
}

body[data-theme="minimal"] .search-input {
  border-bottom-width: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   WARM — krémové pozadí, hnědé tóny pražírny
   ═══════════════════════════════════════════════════════════════ */
body[data-theme="warm"] {
  --bg: #f5efe6;
  --surface: #ebe3d6;
  --text: #2a1f18;
  --text-secondary: #5c4638;
  --muted: #8a7260;
  --border: #d4c4b0;
  --accent: #6b4c3b;
  --accent-text: #faf6f0;
  --hero-overlay: rgba(42, 31, 24, 0.75);
  --hero-text-muted: rgba(250, 246, 240, 0.9);
  --radius: 12px;
}

body[data-theme="warm"] .top-bar,
body[data-theme="warm"] .design-bar,
body[data-theme="warm"] .loading {
  background: #f5efe6;
}

body[data-theme="warm"] .design-bar {
  background: #ebe3d6;
}

body[data-theme="warm"] .brand-sub {
  color: #8a7260;
}

body[data-theme="warm"] .design-showcase {
  background: #ebe3d6;
  border-radius: 12px;
  margin: 0 0 16px;
  border: 1px solid #d4c4b0;
}

body[data-theme="warm"] .home-intro {
  text-align: center;
  padding: 24px 16px;
  margin: 0 -16px 20px;
  background: #6b4c3b;
  color: #faf6f0;
}

body[data-theme="warm"] .home-title,
body[data-theme="warm"] .home-lead,
body[data-theme="warm"] .home-brand-tag {
  color: #faf6f0;
}

body[data-theme="warm"] .home-lead {
  opacity: 0.85;
}

body[data-theme="warm"] .segment-btn.active {
  background: #6b4c3b;
  border-color: #6b4c3b;
}

body[data-theme="warm"] .coffee-card {
  background: #faf6f0;
  border-radius: 12px;
}

body[data-theme="warm"] .coffee-card-image-wrap {
  background: #fff;
  border-radius: 12px 12px 0 0;
  padding: 12px;
}

body[data-theme="warm"] .detail-image-wrap {
  background: #fff;
  border-radius: 12px;
}

body[data-theme="warm"] .detail-header {
  border-bottom-color: #d4c4b0;
}

body[data-theme="warm"] .method-card {
  background: #faf6f0;
  border-radius: 12px;
}

body[data-theme="warm"] .filter-segment {
  border-radius: 12px;
  overflow: hidden;
}

body[data-theme="warm"] .btn-primary,
body[data-theme="warm"] .design-tab.active {
  border-radius: 12px;
}

body[data-theme="warm"] .notes-box,
body[data-theme="warm"] .param-pill {
  border-radius: 8px;
  background: #faf6f0;
}

body[data-theme="warm"] .step-num {
  border-radius: 50%;
}
