:root {
  --bg: #090807;
  --surface: #141211;
  --surface2: #1c1917;
  --surface3: #252220;
  --accent: #d4a574;
  --accent-dim: #a67c4a;
  --text: #fafaf9;
  --text2: #a8a29e;
  --border: rgba(212,165,116,0.12);
  --shadow: 0 4px 20px rgba(0,0,0,0.4);
  --glow: 0 0 30px rgba(212,165,116,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
  font-family: 'DM Sans', -apple-system,system-ui,sans-serif; 
  background-color: var(--bg); 
  background-image: 
    radial-gradient(at 0% 0%, rgba(212,165,116,0.05) 0, transparent 40%),
    radial-gradient(at 100% 100%, rgba(166,124,74,0.03) 0, transparent 40%);
  color: var(--text); 
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1000;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.app { max-width: 480px; margin: 0 auto; padding-bottom: 60px; }

/* Header */
.header { 
  padding: 1rem; 
  display: flex; 
  align-items: center; 
  gap: 0.75rem;
  background: linear-gradient(180deg, var(--bg) 60%, transparent);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}
.header h1 { font-size: 1.1rem; font-weight: 700; color: var(--accent); letter-spacing: -0.02em; }
.logo-wrapper { display: flex; align-items: center; justify-content: flex-start; height: 42px; overflow: hidden; }
.main-logo { 
  height: 42px; 
  width: auto; 
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212,165,116,0.15));
  transition: transform 0.3s var(--ease);
}
.main-logo:hover { transform: scale(1.05); }
.header-tools { display: flex; gap: 2px; align-items: center; flex-shrink: 0; }
.icon-btn {
  background: none;
  border: none;
  color: var(--text2);
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  text-decoration: none;
  padding: 0;
}
.icon-btn:hover, .icon-btn:active { color: var(--accent); background: rgba(212,165,116,0.08); }
.icon-btn.active { color: var(--accent); opacity: 1; }
.icon-btn.dim { opacity: 0.4; }
.icon-btn.dim:hover, .icon-btn.dim.active { opacity: 1; }

/* Category cards for main menu */
/* ── Category Bar ── */
.cat-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 60px;
  z-index: 9;
  backdrop-filter: blur(12px);
}
.cat-bar-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cat-bar-icon {
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface3);
  border-radius: 10px;
}
#cat-bar-title { font-weight: 600; color: var(--text); font-size: 0.92rem; }

/* Navigation back button (used in cat-bar and detail) */
.nav-back {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.5rem 0;
  font-weight: 500;
  min-height: 40px;
  transition: opacity 0.2s;
}
.nav-back:hover { opacity: 0.7; }
.nav-arrow { font-size: 1.5rem; line-height: 1; font-weight: 300; }

/* ── Detail Toolbar ── */
.detail-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  gap: 0.5rem;
}
.detail-toolbar .nav-back { margin: 0; }
.detail-tools { display: flex; gap: 2px; align-items: center; }
.tool-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 1.05rem;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  padding: 0;
}
.tool-btn:hover, .tool-btn:active { border-color: var(--accent); color: var(--accent); background: rgba(212,165,116,0.06); }
.tool-btn.fav-active { color: #ef4444; border-color: rgba(239,68,68,0.3); }

/* AI Search Toggle */
.ai-search-toggle {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text2);
  cursor: pointer;
  padding: 0.6rem 0.7rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ai-search-toggle:hover { color: var(--accent); background: var(--surface3); }
.ai-search-toggle.active {
  background: rgba(212,165,116,0.12);
  border-color: var(--accent-dim);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(212,165,116,0.15);
}
.ai-badge {
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: var(--bg);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ai-search-toggle.active .ai-badge { box-shadow: 0 0 8px rgba(212,165,116,0.4); }

/* Categories - Dropdown */
.cats { padding: 0 1rem 0.75rem; }
#cat-select { 
  width: 100%; 
  padding: 0.6rem 0.8rem; 
  background: var(--surface); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  color: var(--text); 
  font-size: 0.85rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a8a29e' d='M3 4.5L6 7.5L9 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}
#cat-select:focus { outline: none; border-color: var(--accent); }

/* Category Grid */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1rem;
}
.cat-card {
  background: linear-gradient(145deg, var(--surface2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  animation: slideUp 0.4s var(--ease) backwards;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.cat-card:hover::before, .cat-card:active::before { opacity: 1; }
.cat-card:hover, .cat-card:active {
  border-color: var(--accent-dim);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px rgba(212,165,116,0.08);
  transform: translateY(-3px);
}
.cat-card-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface3);
  border-radius: var(--radius-sm);
  transition: transform 0.3s;
}
.cat-card:hover .cat-card-icon { transform: scale(1.05); }
.cat-card-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.cat-card-count {
  font-size: 0.7rem;
  color: var(--text2);
  background: rgba(212,165,116,0.08);
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
}
.cat-card.fav-card { border-color: rgba(239,68,68,0.2); }
.cat-card.fav-card:hover { border-color: rgba(239,68,68,0.4); box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px rgba(239,68,68,0.06); }
.cat-card.fav-card::before { background: linear-gradient(90deg, transparent, rgba(239,68,68,0.4), transparent); }

/* ── Hero Section ── */
.hero-section {
  padding: 2.5rem 1rem 1rem;
  text-align: center;
  background: var(--bg);
}
.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  background: linear-gradient(135deg, var(--accent), #f0e6d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}
.hero-desc {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto;
  opacity: 0.9;
  font-weight: 400;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-brand {
  width: 76px; height: 76px;
  margin: 0 auto 0.8rem;
  background: linear-gradient(145deg, rgba(212,165,116,0.18), rgba(212,165,116,0.04));
  border: 1px solid rgba(212,165,116,0.22);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,165,116,0.06), inset 0 1px 0 rgba(255,255,255,0.04);
}
.hero-title {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f0e6d8 0%, var(--accent) 35%, var(--accent-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.15rem;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 0.8rem;
  color: var(--accent-dim);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-desc {
  font-size: 0.84rem;
  color: #b0a89e;
  line-height: 1.65;
  max-width: 320px;
  margin: 0 auto 1.1rem;
}
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  max-width: 360px;
  margin: 0 auto 1.3rem;
}
.hero-feat {
  background: linear-gradient(160deg, rgba(212,165,116,0.06), transparent);
  border-radius: 14px;
  padding: 0.7rem 0.4rem;
  text-align: center;
  border: 1px solid rgba(212,165,116,0.1);
  transition: all 0.25s;
}
.hero-feat:hover { border-color: rgba(212,165,116,0.25); background: rgba(212,165,116,0.08); transform: translateY(-2px); }
.hero-feat-icon { font-size: 1.4rem; margin-bottom: 0.3rem; display: block; }
.hero-feat-label { font-size: 0.64rem; color: var(--text2); font-weight: 500; line-height: 1.35; }
.hero-cta {
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 2.4rem;
  font-size: 0.9rem;
  box-shadow: 0 4px 24px rgba(212,165,116,0.25);
  transition: all 0.25s;
}
.hero-cta:hover { box-shadow: 0 6px 32px rgba(212,165,116,0.4); transform: translateY(-2px); }

/* Cards - Glass Morphic */
.main { 
  display: flex; 
  flex-direction: column; 
  gap: 0.6rem; 
  padding: 0 1rem; 
}
.recipe-card { 
  display: flex; 
  gap: 0.9rem; 
  padding: 0.85rem; 
  background: linear-gradient(135deg, var(--surface2), var(--surface));
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  cursor: pointer;
  transition: all 0.3s var(--ease);
  animation: slideUp 0.4s var(--ease) backwards;
}
.recipe-card:active { transform: scale(0.98); }
.recipe-card:hover { 
  border-color: var(--accent-dim);
  box-shadow: var(--shadow);
}
.card-img { 
  width: 58px; 
  height: 58px; 
  background: var(--surface3); 
  border-radius: var(--radius-sm); 
  background-size: cover; 
  background-position: center;
  flex-shrink: 0;
}
.card-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.card-title { 
  font-size: 0.95rem; 
  font-weight: 600; 
  margin-bottom: 0.2rem;
}
.card-meta { 
  font-size: 0.72rem; 
  color: var(--text2); 
  display: flex; 
  gap: 0.5rem; 
  align-items: center;
}
.card-meta span { display: flex; align-items: center; gap: 0.2rem; }

/* Detail */
.detail { 
  padding: 1rem; 
  animation: slideUp 0.35s var(--ease);
}
.hidden { display: none !important; }
.back-btn { 
  background: none; 
  border: none; 
  color: var(--accent); 
  font-size: 0.95rem; 
  margin-bottom: 0.75rem; 
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0;
}
.back-btn::before { content: '←'; }
.back-btn:active { transform: scale(0.95); }

.hero { 
  margin-bottom: 1rem;
  animation: fadeIn 0.4s var(--ease);
}
.hero h2 { font-size: 1.6rem; margin-bottom: 0.4rem; font-weight: 700; }
.hero p { color: var(--text2); font-size: 0.85rem; line-height: 1.5; }
.detail-hero-img {
  width: 100%; height: 180px;
  background-size: cover; background-position: center;
  border-radius: var(--radius); background-color: var(--surface2);
  margin-bottom: 0.75rem;
}
.hero-img-icon {
  font-size: 4rem;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}

.meta { display: flex; gap: 0.4rem; margin-bottom: 1rem; flex-wrap: wrap; }
.meta span { 
  padding: 0.35rem 0.7rem; 
  background: var(--surface); 
  border-radius: 20px; 
  font-size: 0.72rem; 
  color: var(--text2);
  border: 1px solid var(--border);
}

/* Info Grid - Compact */
.info-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 0.4rem; 
  margin-bottom: 1rem; 
}
.info-row { display: contents; }
.info-row span { 
  padding: 0.45rem 0.6rem; 
  background: linear-gradient(135deg, var(--surface2), var(--surface));
  border-radius: var(--radius-sm); 
  font-size: 0.75rem;
  border: 1px solid var(--border);
}

/* Calc - Floating */
.calc { 
  display: flex; 
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem; 
  background: linear-gradient(135deg, var(--surface2), var(--surface));
  border-radius: var(--radius); 
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}
.calc span { font-size: 0.85rem; color: var(--text2); }
.calc button { 
  width: 28px; 
  height: 28px; 
  border-radius: 50%; 
  border: 1px solid var(--border); 
  background: var(--surface3); 
  color: var(--text); 
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s var(--ease);
}
.calc button:active { transform: scale(0.9); background: var(--accent); color: var(--bg); }
.calc-results { display: flex; gap: 0.75rem; }
.calc-results span { 
  font-size: 1.1rem; 
  font-weight: 700; 
  color: var(--accent); 
}

/* Ingredients */
.ingrs { margin-bottom: 0.75rem; padding: 0.85rem; background: var(--surface); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.ingrs h3 { font-size: 0.85rem; margin-bottom: 0.4rem; color: var(--text2); }
#ingredients-list { display: flex; flex-direction: column; gap: 0.35rem; }
.ing-item { margin-bottom: 0.35rem; }
.ing-check-label { display: flex; align-items: flex-start; gap: 0.5rem; cursor: pointer; padding: 0.45rem 0.7rem; background: var(--surface); border-radius: var(--radius-sm); font-size: 0.8rem; border-left: 2px solid var(--accent-dim); }
.ing-check { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); cursor: pointer; }
.ing-check:checked + .ing-check-text { opacity: 0.5; text-decoration: line-through; }
.ing-check-text { flex: 1; }
.ing-qty { font-weight: 600; color: var(--accent); }
.ing-critical-badge { font-size: 0.8rem; cursor: help; margin-left: 2px; }
.ing-catalog-badge { font-size: 0.7rem; cursor: help; margin-left: 2px; opacity: 0.6; }
.ing-catalog-badge:hover { opacity: 1; }
.ing-substitute { font-size: 0.68rem; color: var(--text2); margin-top: 2px; opacity: 0.8; font-style: italic; }

/* Substitutions */
.subs-section { margin-bottom: 0.75rem; padding: 0.85rem; background: var(--surface); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.subs-item { padding: 0.4rem 0; font-size: 0.78rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.subs-item:last-child { border-bottom: none; }
.subs-orig { color: var(--text2); text-decoration: line-through; opacity: 0.7; }
.subs-alt { color: var(--accent); font-weight: 600; }
.subs-note { font-size: 0.68rem; color: var(--text2); width: 100%; margin-top: 2px; font-style: italic; padding-left: 1.5rem; }
.subs-empty { font-size: 0.78rem; color: var(--text2); padding: 0.5rem 0; }

#accessories-section { margin-bottom: 0.75rem; padding: 0.85rem; background: var(--surface); border-radius: var(--radius-sm); border: 1px solid var(--border); }
#accessories-section h3 { font-size: 0.85rem; margin-bottom: 0.4rem; color: var(--text2); }
#accessories-list { display: flex; flex-direction: column; gap: 0.35rem; }

/* Flavor Profile */
.flavor-section { margin-bottom: 0.75rem; padding: 0.85rem; background: var(--surface); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.flavor-bars { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.flavor-bar-item { display: flex; align-items: center; gap: 0.6rem; }
.flavor-label { font-size: 0.72rem; width: 55px; color: var(--text2); font-weight: 500; }
.flavor-track { flex: 1; height: 5px; background: var(--surface3); border-radius: 3px; overflow: hidden; }
.flavor-fill { height: 100%; background: linear-gradient(90deg, var(--accent-dim), var(--accent)); border-radius: 3px; transition: width 0.6s var(--ease); }
.flavor-pct { font-size: 0.68rem; width: 28px; text-align: right; color: var(--accent); font-weight: 600; }

/* Tasting notes */
.tasting-section {
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, rgba(212,165,116,0.05), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
}

/* Tag chips */
.tag-chip {
  display: inline-block;
  font-size: 0.65rem;
  background: rgba(212,165,116,0.1);
  color: var(--accent-dim);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  border: 1px solid rgba(212,165,116,0.15);
  margin-left: 0.3rem;
}

/* Premium temp alert */
.premium-temp-alert {
  background: rgba(251,146,60,0.12);
  border: 1px solid rgba(251,146,60,0.3);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  margin-bottom: 0.8rem;
  color: #fb923c;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
  animation: fadeIn 0.3s var(--ease);
}

/* Fun Facts */
.premium-fact {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: rgba(212,165,116,0.06);
  border: 1px solid rgba(212,165,116,0.12);
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  margin-top: 1rem;
  animation: fadeIn 0.5s var(--ease);
}
.premium-fact-icon { font-size: 1.1rem; flex-shrink: 0; }
.premium-fact-text { font-size: 0.72rem; color: var(--text2); line-height: 1.4; }

/* Batch section */
.batch-section {
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, rgba(99,102,241,0.05), var(--surface));
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius);
  padding: 0.85rem;
}
.batch-header { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.5rem; }
.batch-header h3 { font-size: 0.88rem; font-weight: 600; color: var(--text); margin: 0 0 0.1rem 0; }
.batch-notes {
  font-size: 0.78rem;
  color: var(--text2);
  margin-bottom: 0.6rem;
  padding: 0.5rem;
  background: var(--surface2);
  border-radius: var(--radius-sm);
  font-style: italic;
}
.batch-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem;
  margin-bottom: 0.75rem;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius);
  color: #818cf8;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.batch-toggle:hover { background: rgba(99,102,241,0.12); color: #a5b4fc; }

/* Step image in premium */
.premium-step-image {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  margin: 0.5rem auto;
  border: 1px solid var(--border);
}
.premium-step-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Post-Experience Overlay */
.post-exp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9,8,7,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 1.5rem;
  animation: fadeIn 0.4s;
}
.post-exp-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  max-width: 320px;
  width: 100%;
}
.post-exp-card h3 { font-size: 1.1rem; margin: 0.5rem 0 0.3rem; }
.post-exp-icon { font-size: 2.5rem; margin-bottom: 0.3rem; }
.post-exp-msg { font-size: 0.8rem; color: var(--text2); margin-bottom: 1rem; }
.post-exp-stars { font-size: 2rem; display: flex; gap: 0.4rem; justify-content: center; margin-bottom: 1.2rem; cursor: pointer; }
.post-exp-stars span { color: var(--text2); transition: all 0.15s; }
.post-exp-stars span.active { color: var(--accent); }
.post-exp-stars span:hover { transform: scale(1.2); }
.post-exp-actions { display: flex; gap: 0.5rem; }

/* ── Help Popover ── */
.help-popover {
  position: fixed;
  background: var(--surface2); border: 1px solid var(--accent-dim);
  border-radius: var(--radius-sm); padding: 0.6rem 0.8rem;
  max-width: 220px; z-index: 270;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  animation: fadeIn 0.2s var(--ease);
}
.help-popover p {
  font-size: 0.75rem; color: var(--text2);
  line-height: 1.4; margin: 0;
}

/* ── Main Search (Mood Bar) ── */
.mood-bar {
  margin: 0 1rem 0.75rem;
  background: linear-gradient(135deg, var(--surface2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem;
  animation: slideUp 0.4s var(--ease);
}
.mood-input-wrap {
  display: flex; gap: 0.3rem; align-items: center;
}
.mood-icon { font-size: 1.2rem; flex-shrink: 0; opacity: 0.6; }
#mood-input {
  flex: 1; padding: 0.6rem 0.8rem;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.85rem;
}
#mood-input:focus { outline: none; border-color: var(--accent); box-shadow: var(--glow); }
#mood-input::placeholder { color: var(--text2); opacity: 0.5; }
.mood-response {
  margin-top: 0.6rem;
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.mood-result {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--text);
  display: flex; align-items: center; gap: 0.4rem;
  transition: all 0.2s;
}
.mood-result:hover { border-color: var(--accent); background: rgba(212,165,116,0.06); }
.mood-result .mood-result-icon { font-size: 1rem; }
.mood-loading { font-size: 0.78rem; color: var(--text2); padding: 0.5rem; }

/* Timer - Large Display */
.timer-wrap { 
  background: linear-gradient(135deg, var(--surface2), var(--surface)); 
  border-radius: var(--radius); 
  padding: 1rem; 
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
}
.timer-bar { margin-bottom: 0.75rem; }
#timer-total { 
  font-size: 0.8rem; 
  color: var(--text2); 
  display: block; 
  margin-bottom: 0.35rem; 
}
.progress { height: 3px; background: var(--surface3); border-radius: 2px; overflow: hidden; }
#progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent-dim), var(--accent)); width: 0%; transition: 0.3s var(--ease); }
#progress-text { font-size: 0.75rem; color: var(--text2); }
.timer-main { 
  text-align: center; 
  padding: 1rem 0; 
}
#current-step { 
  display: block; 
  font-size: 0.8rem; 
  color: var(--accent); 
  margin-bottom: 0.25rem; 
  font-weight: 500;
}
#timer-display { 
  display: block; 
  font-size: 2.8rem; 
  font-weight: 700; 
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

/* Steps - Accordion Style */
.steps { 
  display: flex; 
  flex-direction: column; 
  gap: 0.35rem; 
  margin-bottom: 0.75rem;
  max-height: none;
}
.step-item { 
  display: flex; 
  align-items: center; 
  gap: 0.6rem; 
  padding: 0.6rem; 
  background: var(--surface); 
  border-radius: var(--radius-sm); 
  border: 1px solid var(--border); 
  opacity: 0.5; 
  transition: all 0.25s var(--ease);
}
.step-item.active { 
  border-color: var(--accent); 
  opacity: 1; 
  transform: translateX(3px);
  background: linear-gradient(135deg, var(--surface2), var(--surface));
}
.step-item.completed { opacity: 0.25; }
.step-check { 
  width: 20px; 
  height: 20px; 
  border-radius: 50%; 
  background: var(--surface3); 
  color: var(--text2); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 0.65rem; 
  font-weight: 700; 
  flex-shrink: 0;
}
.step-item.active .step-check { background: var(--accent); color: var(--bg); }
.step-item.completed .step-check { background: var(--accent-dim); color: var(--bg); }
.step-body { flex: 1; }
.step-instr { font-size: 0.8rem; }
.step-duration { font-size: 0.65rem; color: var(--accent); font-weight: 500; }

/* Button - Gradient */
.btn { 
  width: 100%; 
  padding: 0.9rem; 
  background: linear-gradient(135deg, var(--accent), var(--accent-dim)); 
  border: none; 
  border-radius: var(--radius); 
  color: var(--bg); 
  font-size: 0.95rem; 
  font-weight: 600; 
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 15px rgba(212,165,116,0.3);
}
.btn:active { 
  transform: scale(0.97); 
  box-shadow: 0 2px 8px rgba(212,165,116,0.2);
}

/* Tips */
.tips { 
  background: linear-gradient(135deg, var(--surface2), var(--surface)); 
  border-radius: var(--radius); 
  padding: 0.85rem; 
  border: 1px solid var(--border);
}
.tips h3 { font-size: 0.8rem; margin-bottom: 0.4rem; color: var(--text2); }
.tips ul { list-style: none; }
.tips li { font-size: 0.78rem; color: var(--text2); margin-bottom: 0.3rem; padding-left: 0.75rem; position: relative; }
.tips li::before { 
  content: ''; 
  position: absolute; 
  left: 0; 
  top: 0.45em; 
  width: 4px; 
  height: 4px; 
  border-radius: 50%; 
  background: var(--accent); 
}

/* Skeleton Loader */
.skeleton { 
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface2) 50%, var(--surface) 75%); 
  background-size: 200% 100%; 
  animation: shimmer 1.5s infinite; 
  border-radius: var(--radius-sm);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Animations */
@keyframes slideUp { 
  from { opacity: 0; transform: translateY(15px); } 
  to { opacity: 1; transform: translateY(0); } 
}
@keyframes fadeIn { 
  from { opacity: 0; } 
  to { opacity: 1; } 
}

/* Scrollbar minimal */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 2px; }

/* Shopping list */
.shop-section {
  background: linear-gradient(135deg, rgba(212,165,116,0.12), var(--surface));
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius);
  padding: 0.85rem;
  margin-bottom: 0.75rem;
}
.shop-section h3 { font-size: 0.85rem; margin-bottom: 0.6rem; color: var(--accent); }
.shop-item {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.shop-item:last-of-type { border-bottom: none; }
.shop-total {
  display: flex;
  justify-content: space-between;
  padding-top: 0.5rem;
  margin-top: 0.4rem;
  border-top: 1px solid var(--accent-dim);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}
.shop-empty { text-align: center; opacity: 0.7; }
.shop-empty p { font-size: 0.78rem; color: var(--text2); margin: 0; }
.shop-hint { font-size: 0.68rem !important; opacity: 0.6; margin-top: 0.3rem !important; }

/* Order button in meta row */
.order-btn-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  background: linear-gradient(135deg, #1a4d2e, #0d3320);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 20px;
  color: #4ade80;
  font-weight: 600;
  font-size: 0.72rem;
  text-decoration: none;
  transition: all 0.2s;
  margin-left: auto;
}
.order-btn-meta:hover { background: linear-gradient(135deg, #1f5c37, #124028); color: #6ee7a0; }

/* Barista notes */
.barista-notes {
  background: linear-gradient(135deg, rgba(255,255,0,0.05), var(--surface));
  border: 1px dashed var(--accent-dim);
  border-radius: var(--radius);
  padding: 0.85rem;
  margin-bottom: 0.75rem;
}
.barista-notes h3 { font-size: 0.82rem; margin-bottom: 0.4rem; color: var(--accent); }
.barista-notes p { font-size: 0.78rem; color: var(--text2); line-height: 1.5; }

/* Q&A Section */
.qa-section {
  margin-bottom: 0.75rem;
  padding: 0.7rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
#qa-body, #fix-body { display: flex; flex-direction: column; gap: 0.5rem; }
.qa-input-row { display: flex; gap: 0.5rem; align-items: center; }
#qa-input, #fix-input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.8rem;
  background: var(--surface2) !important;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.82rem;
}
#qa-input:focus, #fix-input:focus { outline: none; border-color: var(--accent); background: var(--surface3) !important; }
#qa-input::placeholder, #fix-input::placeholder { color: var(--text2); opacity: 0.5; }

#qa-send, #fix-send { 
  flex: 0 0 auto;
  width: auto;
  padding: 0.65rem 1.2rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

#qa-response, #fix-response {
  padding: 0.5rem 0.7rem;
  background: var(--surface2);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.5;
  border-left: 2px solid var(--accent);
  display: none;
  margin-top: 0.3rem;
}

/* Help tooltips */
.section-help {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
/* Section headers */
.section-header {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.section-icon {
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface3);
  border-radius: 10px;
  flex-shrink: 0;
}
.section-header h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.1rem 0;
}
.section-desc {
  font-size: 0.72rem;
  color: var(--text2);
  margin: 0;
  line-height: 1.4;
}
.help-hint {
  font-size: 0.75rem;
  cursor: help;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.help-hint:hover { opacity: 1; }
.help-badge {
  font-size: 0.6rem;
  background: var(--accent-dim);
  color: var(--bg);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-weight: 600;
  vertical-align: middle;
  cursor: help;
  opacity: 0.7;
}
.help-badge:hover { opacity: 1; }
.timer-help {
  font-size: 0.7rem;
  color: var(--text2);
  text-align: center;
  margin-top: 0.5rem;
  opacity: 0.7;
  font-style: italic;
}

/* Fav button */
.fav-btn { opacity: 0.4; transition: opacity 0.2s; }
.fav-btn:hover { opacity: 1; }

/* Detail action toolbar */
.detail-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.detail-actions .back-btn { margin-bottom: 0; }
.detail-tools { display: flex; gap: 0.3rem; align-items: center; }
.tool-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.tool-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Print mode */
@media print {
  body { background: white; color: black; }
  .header, .cat-bar, .cat-grid, .detail-actions, #shopping-list,
  .timer-wrap, .premium-overlay, #recipe-qa, #barista-notes { display: none !important; }
  .detail { padding: 0; display: block !important; }
  .detail.hidden { display: block !important; }
  .app { max-width: 100%; }
  .hero h2 { color: black; font-size: 1.5rem; }
  .hero p { color: #333; }
  .ingrs h3, .tips h3 { color: #333; }
  .ing-item { border-left-color: #999; color: #333; background: none; border: 1px solid #ddd; }
  .tips li { color: #333; }
  .meta span { background: #f5f5f5; color: #333; border-color: #ddd; }
  .info-row span { background: #f5f5f5; color: #333; border-color: #ddd; }
}

/* ---- Premium Full-Screen Timer ---- */
.premium-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, #1a1512 0%, #090807 70%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  gap: 1rem;
  animation: fadeIn 0.5s var(--ease);
}
.premium-overlay.hidden { display: none; }
.premium-exit {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  transition: all 0.2s;
}
.premium-exit:hover { color: var(--text); background: rgba(255,255,255,0.15); }
.premium-progress {
  width: 80%;
  max-width: 320px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}
#premium-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  width: 0%;
  transition: width 0.5s var(--ease);
}
.premium-hero {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--surface2), var(--surface));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.premium-step-counter {
  font-size: 0.75rem;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}
.premium-instruction {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  max-width: 300px;
  line-height: 1.4;
  min-height: 3rem;
}
.premium-timer {
  font-size: 6rem;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 0 40px rgba(212,165,116,0.3);
}
@media (max-width: 400px) { .premium-timer { font-size: 4.5rem; } }
.premium-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.premium-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.premium-btn:hover { background: rgba(255,255,255,0.12); }
.premium-btn:active { transform: scale(0.92); }
.premium-btn.main {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  border: none;
  color: var(--bg);
  font-size: 1.4rem;
  box-shadow: 0 0 30px rgba(212,165,116,0.4);
}
.premium-total {
  font-size: 0.78rem;
  color: var(--text2);
  margin-top: 0.5rem;
}
/* DIY Guided Flow Styles */

/* Flavor Profile */
.flavor-profile {
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.flavor-profile h3 {
  font-size: 0.85rem;
  color: var(--text2);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.flavor-bars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.flavor-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.flavor-label {
  font-size: 0.75rem;
  width: 60px;
  color: var(--text2);
}
.flavor-track {
  flex: 1;
  height: 6px;
  background: var(--surface3);
  border-radius: 3px;
  overflow: hidden;
}
.flavor-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  border-radius: 3px;
  transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.flavor-pct {
  font-size: 0.7rem;
  width: 30px;
  text-align: right;
  color: var(--accent);
  font-weight: 600;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
}

/* --- MASTER GUIDE UI --- */

.help-trigger {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(212,165,116,0.15);
  border: 1px solid var(--accent-dim);
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  vertical-align: middle;
  transition: all 0.2s;
}
.help-trigger:hover { background: var(--accent); color: var(--bg); }

/* ── Recipe Wizard Navigation ── */
.wizard-nav {
  display: flex;
  padding: 0.5rem 0.3rem;
  margin: 0 0.5rem 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: sticky;
  top: 50px;
  z-index: 11;
  backdrop-filter: blur(8px);
}
.wizard-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.5rem 0.2rem;
  background: none;
  border: none;
  color: var(--text2);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  font-family: inherit;
  position: relative;
}
.wizard-tab span { font-size: 1.1rem; }
.wizard-tab small { font-size: 0.6rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.03em; }
.wizard-tab.active {
  color: var(--accent);
  background: rgba(212,165,116,0.08);
}
.wizard-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.wizard-tab:hover { color: var(--accent); }

.recipe-sticky-name {
  font-size: 1.15rem; font-weight: 700;
  padding: 0.3rem 0.5rem 0.6rem;
  margin: 0;
  color: var(--text);
  text-align: center;
}

/* ── Discovery Carousel & Master Guide ── */
.discovery-overlay, .guide-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.4s var(--ease);
}

.discovery-card, .guide-card {
  background: linear-gradient(135deg, var(--surface), #1a1817);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 450px; width: 100%;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
  overflow: hidden;
  position: relative;
}

.discovery-slides { display: flex; transition: transform 0.4s var(--ease); }
.discovery-slide {
  flex: 0 0 100%; padding: 3rem 2rem 2rem;
  text-align: center;
}
.discovery-icon { font-size: 4rem; margin-bottom: 1.5rem; display: block; filter: drop-shadow(0 0 20px var(--accent-dim)); }
.discovery-slide h3 { font-size: 1.6rem; margin-bottom: 1rem; color: var(--accent); }
.discovery-slide p { font-size: 0.95rem; color: var(--text2); line-height: 1.6; }

.discovery-dots { display: flex; justify-content: center; gap: 10px; margin-bottom: 2rem; }
.dot { width: 8px; height: 8px; border-radius: 4px; background: var(--surface2); transition: all 0.3s; }
.dot.active { background: var(--accent); width: 24px; }

.discovery-footer { padding: 1.5rem; display: flex; gap: 1rem; border-top: 1px solid var(--border); }

.guide-card { height: 85vh; display: flex; flex-direction: column; }
.guide-header { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.guide-close-btn { background: none; border: none; color: var(--text2); font-size: 1.5rem; cursor: pointer; transition: color 0.2s; }
.guide-close-btn:hover { color: var(--accent); }

.guide-tabs { display: flex; background: rgba(0,0,0,0.2); border-bottom: 1px solid var(--border); }
.guide-tab { 
  flex: 1; padding: 1.2rem 0.5rem; background: none; border: none; 
  color: var(--text2); font-size: 0.8rem; font-weight: 600; cursor: pointer;
  border-bottom: 3px solid transparent; text-transform: uppercase; letter-spacing: 1px;
}
.guide-tab.active { color: var(--accent); border-bottom-color: var(--accent); background: rgba(212,165,116,0.05); }

.guide-body { flex: 1; overflow-y: auto; padding: 2rem; }
.guide-item { margin-bottom: 2rem; }
.guide-item h4 { color: var(--accent); font-size: 1.1rem; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 10px; }
.guide-item p { font-size: 0.9rem; color: var(--text2); line-height: 1.5; }

/* ── Help Popover ── */
.help-popover {
  position: fixed; z-index: 3000;
  background: var(--surface2); border: 1px solid var(--accent-dim);
  padding: 1rem; border-radius: var(--radius-sm);
  max-width: 250px; box-shadow: var(--shadow);
  animation: slideUp 0.3s var(--ease);
}
#popover-text { font-size: 0.8rem; color: var(--text); line-height: 1.4; margin: 0; }

.services-row {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  overflow-x: auto;
  padding: 0.2rem 0.2rem 0.6rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.services-row::-webkit-scrollbar { display: none; }


.service-chip {
  flex: 1;
  min-width: 140px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 165, 116, 0.2);
  color: var(--accent) !important; /* Forzar color de acento para visibilidad */
  padding: 0.8rem 1rem;
  border-radius: 14px;
  text-decoration: none !important;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.service-chip:hover, .service-chip:active {
  background: rgba(212, 165, 116, 0.1);
  border-color: var(--accent);
  color: var(--text) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.15);
}
.service-chip i, .service-chip span {
  font-size: 1.1rem;
}
