/* ========================================
   안목 카페거리 완벽가이드 - 스타일시트
   ======================================== */

/* CSS Variables */
:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --secondary: #F59E0B;
  --secondary-light: #FCD34D;
  --background: #F8FAFC;
  --surface: #FFFFFF;
  --text: #1E293B;
  --text-light: #64748B;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --success: #10B981;
  --error: #EF4444;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: all 0.3s ease;
}

/* ========================================
   Intro Page
   ======================================== */
.intro-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow-x: hidden;
}

.intro-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 119, 115, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 206, 84, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.intro-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.5;
}

.intro-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  color: white;
}

.intro-header {
  text-align: center;
  margin-bottom: 48px;
}

.intro-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.intro-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, #ffd700 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-subtitle-en {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3em;
}

/* Day Navigation */
.day-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.day-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.day-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.day-nav-item.active {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.4);
}

.day-nav-number {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.day-nav-item.active .day-nav-number {
  color: rgba(255, 215, 0, 0.8);
}

.day-nav-place {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.day-nav-item.active .day-nav-place {
  color: #ffd700;
}

.intro-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
}

.intro-description strong {
  color: #ffd700;
  font-weight: 600;
}

.intro-description em {
  font-style: normal;
  color: #7dd3fc;
}

.intro-description-sub {
  margin-top: 16px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Intro Steps */
.intro-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
  max-width: 100%;
}

/* When only 1 step card, center it and limit width */
.intro-steps:has(.intro-step:only-child) {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr;
}

.intro-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.intro-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.intro-step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
}

.intro-step:hover::before {
  opacity: 1;
}

.intro-step:nth-child(1) { --step-color: #60a5fa; }
.intro-step:nth-child(2) { --step-color: #34d399; }
.intro-step:nth-child(3) { --step-color: #fbbf24; }

.step-number {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--step-color);
  margin-bottom: 8px;
}

.step-phase {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.step-place {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: white;
}

.step-keyword {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--step-color);
  letter-spacing: 1px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  margin-bottom: 20px;
}

.step-question {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 2px solid var(--step-color);
}

.step-value {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.value-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.value-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--step-color);
  padding: 4px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}

.step-context {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.step-action {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.step-action strong {
  color: var(--step-color);
}

/* Intro Summary */
.intro-summary {
  max-width: 800px;
  margin: 0 auto 48px;
}

.summary-box {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.summary-box h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffd700;
  margin-bottom: 20px;
}

.summary-box p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.summary-box strong {
  color: #ffd700;
}

.summary-closing {
  font-size: 0.95rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-style: italic;
  margin-top: 24px !important;
}

/* Schedule Section */
.intro-schedule {
  max-width: 700px;
  margin: 0 auto 48px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.schedule-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.schedule-icon {
  font-size: 1.5rem;
}

.schedule-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.schedule-timeline {
  position: relative;
  padding-left: 24px;
}

.schedule-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #3b82f6, #10b981, #eab308, rgba(255, 255, 255, 0.1));
  border-radius: 1px;
}

.schedule-item {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.schedule-item::before {
  content: '';
  position: absolute;
  left: -22px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: #3b82f6;
  border-radius: 50%;
  border: 2px solid #1a1a2e;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

.schedule-item.meal::before {
  background: #f97316;
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.5);
}

.schedule-item.finish::before {
  background: #a855f7;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.5);
}

.schedule-time {
  flex-shrink: 0;
  width: 110px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 2px;
}

.schedule-content {
  flex: 1;
}

.schedule-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.schedule-badge.step1 {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.schedule-badge.step2 {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.schedule-badge.step3 {
  background: rgba(234, 179, 8, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(234, 179, 8, 0.3);
}

.schedule-badge.meal-badge {
  background: rgba(249, 115, 22, 0.2);
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.schedule-badge.finish-badge {
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.schedule-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.schedule-duration {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.schedule-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.schedule-info {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  font-size: 1rem;
}

/* Schedule Responsive */
@media (max-width: 600px) {
  .intro-schedule {
    padding: 28px 20px;
    margin-left: 12px;
    margin-right: 12px;
  }

  .schedule-item {
    flex-direction: column;
    gap: 8px;
  }

  .schedule-time {
    width: auto;
    font-size: 0.85rem;
  }

  .schedule-timeline {
    padding-left: 20px;
  }

  .schedule-item::before {
    left: -18px;
    width: 10px;
    height: 10px;
  }
}

/* Intro CTA */
.intro-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  padding: 18px 48px;
  background: linear-gradient(135deg, #ffd700 0%, #f59e0b 100%);
  color: #1a1a2e;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.intro-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

.intro-cta svg {
  transition: transform 0.3s ease;
}

.intro-cta:hover svg {
  transform: translateX(4px);
}

/* Intro Wrapup AI Section */
.intro-wrapup {
  margin-top: 48px;
  text-align: center;
}

.wrapup-box {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px 32px;
  max-width: 600px;
}

.wrapup-box h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.wrapup-box p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  word-break: break-all;
}

.wrapup-box a {
  color: #fbbf24;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wrapup-box a:hover {
  color: #fcd34d;
  text-decoration: underline;
}

.wrapup-instruction {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-top: 8px;
}

/* Main Site Hidden by Default */
.main-site {
  display: none;
}

.main-site.visible {
  display: block;
}

.intro-page.hidden {
  display: none;
}

/* Intro Page Responsive */
@media (max-width: 768px) {
  .intro-content {
    padding: 40px 16px 60px;
  }

  .intro-steps {
    grid-template-columns: 1fr;
  }

  .intro-step {
    padding: 24px;
  }

  .summary-box {
    padding: 24px;
  }

  .intro-cta {
    padding: 16px 36px;
    font-size: 1rem;
  }
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-icon {
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 50%, #38BDF8 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><defs><linearGradient id="wave" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0.05)"/></linearGradient></defs><path d="M0,50 Q25,30 50,50 T100,50 L100,100 L0,100 Z" fill="url(%23wave)"/></svg>');
  background-size: 200% 100%;
  animation: wave 10s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.hero-cta {
  display: inline-block;
  background: var(--secondary);
  color: var(--text);
  padding: 16px 40px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.hero-cta:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* ========================================
   Quick Filter
   ======================================== */
.quick-filter {
  background: var(--surface);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 70px;
  z-index: 100;
}

.filter-buttons {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  color: var(--text-light);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ========================================
   Cafe Section
   ======================================== */
.cafes-section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
}

.sort-options {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.sort-options select {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 0.9rem;
  cursor: pointer;
}

.cafe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

/* Cafe Card */
.cafe-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.cafe-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.cafe-card:hover .cafe-image img {
  transform: scale(1.05);
}

/* Cafe Image */
.cafe-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--background);
}

.cafe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cafe-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cafe-image-placeholder::before {
  content: '☕';
  font-size: 3rem;
  opacity: 0.3;
}

.cafe-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cafe-image-overlay .cafe-tag {
  font-size: 0.7rem;
  padding: 2px 8px;
  background: rgba(255,255,255,0.9);
}

.cafe-header {
  padding: 20px 24px 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.cafe-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cafe-category {
  font-size: 0.875rem;
  opacity: 0.9;
}

.cafe-body {
  padding: 20px 24px;
}

.cafe-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.cafe-address::before {
  content: '📍';
}

.cafe-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.cafe-hours::before {
  content: '🕐';
}

.cafe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.cafe-tag {
  padding: 4px 12px;
  background: var(--background);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  color: var(--text-light);
}

.cafe-tag.group { background: #EDE9FE; color: #5B21B6; }
.cafe-tag.rooftop { background: #FEF3C7; color: #92400E; }
.cafe-tag.pet { background: #D1FAE5; color: #065F46; }
.cafe-tag.dessert { background: #FCE7F3; color: #9D174D; }

.cafe-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--background);
  border-top: 1px solid var(--border);
}

.cafe-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--secondary);
}

.cafe-reviews {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ========================================
   Courses Section
   ======================================== */
.courses-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--background) 0%, #E0F2FE 100%);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.course-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.course-header {
  padding: 24px;
  background: linear-gradient(135deg, var(--secondary) 0%, #D97706 100%);
  color: white;
}

.course-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.course-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.course-content {
  padding: 24px;
}

.course-desc {
  color: var(--text-light);
  margin-bottom: 20px;
}

.course-stops {
  counter-reset: stop;
}

.course-stops li {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}

.course-stops li:last-child {
  border-bottom: none;
}

.stop-time {
  grid-row: span 2;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
}

.stop-name {
  font-weight: 600;
}

.stop-note {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ========================================
   Info Section
   ======================================== */
.info-section {
  padding: 80px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.info-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--text);
  color: white;
  padding: 60px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.footer-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-update {
  color: var(--secondary) !important;
}

.footer-links h4,
.footer-disclaimer h4 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-disclaimer p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ========================================
   Modal
   ======================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--background);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: var(--border);
}

.modal-body {
  padding: 32px;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 32px;
  margin: -32px -32px 24px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-category {
  opacity: 0.9;
}

.modal-section {
  margin-bottom: 24px;
}

.modal-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}

.modal-info-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.modal-info-label {
  color: var(--text-light);
  min-width: 80px;
}

.modal-menu-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}

.modal-menu-name {
  font-weight: 500;
}

.modal-menu-price {
  color: var(--primary);
  font-weight: 600;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-highlights {
  background: var(--background);
  padding: 16px;
  border-radius: var(--radius);
}

.modal-highlights li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.modal-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.modal-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: white;
  text-align: center;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  margin-top: 24px;
}

.modal-cta:hover {
  background: var(--primary-dark);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .cafe-grid {
    grid-template-columns: 1fr;
  }

  .quick-filter {
    top: 60px;
  }

  .filter-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .course-stops li {
    grid-template-columns: 50px 1fr;
  }
}

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

.cafe-card {
  animation: fadeIn 0.5s ease forwards;
}

.cafe-card:nth-child(1) { animation-delay: 0.1s; }
.cafe-card:nth-child(2) { animation-delay: 0.2s; }
.cafe-card:nth-child(3) { animation-delay: 0.3s; }
.cafe-card:nth-child(4) { animation-delay: 0.4s; }
.cafe-card:nth-child(5) { animation-delay: 0.5s; }
.cafe-card:nth-child(6) { animation-delay: 0.6s; }

/* ========================================
   Nightlife Section
   ======================================== */
.nightlife-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
}

.nightlife-section .section-title {
  color: white;
}

.nightlife-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.nightlife-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.nightlife-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.nightlife-card.featured {
  border: 2px solid #FCD34D;
  background: rgba(252, 211, 77, 0.15);
}

.nightlife-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #EF4444, #F97316);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.nightlife-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.nightlife-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.nightlife-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #FCD34D;
}

.nightlife-category {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nightlife-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
}

.nightlife-info {
  text-align: left;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
}

.nightlife-info li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.nightlife-info strong {
  color: #FCD34D;
}

.nightlife-link {
  display: inline-block;
  padding: 12px 28px;
  background: #FCD34D;
  color: #1a1a2e;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}

.nightlife-link:hover {
  background: #F59E0B;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .nightlife-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Main Tab Navigation
   ======================================== */
.main-tabs {
  background: var(--surface);
  border-bottom: 2px solid var(--border);
  padding: 0;
  position: sticky;
  top: 70px;
  z-index: 500;
}

.tab-buttons {
  display: flex;
  gap: 0;
}

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  border: none;
  background: var(--background);
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.tab-btn:hover {
  background: var(--surface);
  color: var(--primary);
}

.tab-btn.active {
  background: var(--surface);
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-icon {
  font-size: 1.3rem;
}

.tab-text {
  font-size: 1rem;
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ========================================
   Restaurant Section Styles
   ======================================== */
.restaurant-hero {
  background: linear-gradient(135deg, #065F46 0%, #10B981 50%, #34D399 100%);
}

.restaurants-section {
  padding: 80px 0;
  background: var(--background);
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

/* Restaurant Card */
.restaurant-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}

.restaurant-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.restaurant-card.hotplace {
  border: 2px solid #EF4444;
}

.restaurant-card .hotplace-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #EF4444, #F97316);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  z-index: 10;
}

/* Card Image (restaurant & cafe shared) */
.restaurant-card > .card-image,
.cafe-card > .card-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--background);
}

.restaurant-card > .card-image img,
.cafe-card > .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.restaurant-card:hover > .card-image img,
.cafe-card:hover > .card-image img {
  transform: scale(1.05);
}

.restaurant-header {
  padding: 20px 24px 12px;
  background: linear-gradient(135deg, #065F46 0%, #10B981 100%);
  color: white;
}

.restaurant-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.restaurant-category {
  font-size: 0.875rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.restaurant-location-badge {
  background: rgba(255,255,255,0.2);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
}

.restaurant-body {
  padding: 20px 24px;
  flex: 1;
}

.restaurant-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.restaurant-address::before {
  content: '📍';
}

.restaurant-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.restaurant-hours::before {
  content: '🕐';
}

.restaurant-hours.sunday {
  color: var(--success);
  font-weight: 600;
}

.restaurant-hours.sunday::before {
  content: '☀️';
}

.restaurant-break {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.restaurant-break::before {
  content: '⏸️';
}

.restaurant-closed {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--error);
  margin-bottom: 12px;
}

.restaurant-closed::before {
  content: '🚫';
}

.restaurant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.restaurant-tag {
  padding: 4px 12px;
  background: var(--background);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  color: var(--text-light);
}

.restaurant-tag.group { background: #EDE9FE; color: #5B21B6; }
.restaurant-tag.hotplace { background: #FEE2E2; color: #991B1B; }
.restaurant-tag.breakfast { background: #DBEAFE; color: #1E40AF; }
.restaurant-tag.always-open { background: #D1FAE5; color: #065F46; }

.restaurant-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--background);
  border-top: 1px solid var(--border);
}

.restaurant-reviews {
  font-size: 0.875rem;
  color: var(--text-light);
}

.restaurant-reviews strong {
  color: var(--text);
  font-weight: 600;
}

.restaurant-link {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.restaurant-link:hover {
  color: var(--primary-dark);
}

/* Restaurant Filter Styles */
.restaurant-filter .filter-btn.hotplace-filter {
  border-color: #EF4444;
  color: #EF4444;
}

.restaurant-filter .filter-btn.hotplace-filter:hover,
.restaurant-filter .filter-btn.hotplace-filter.active {
  background: #EF4444;
  border-color: #EF4444;
  color: white;
}

/* Restaurant Info Section */
.restaurant-info {
  background: linear-gradient(180deg, var(--background) 0%, #D1FAE5 100%);
}

/* Responsive */
@media (max-width: 768px) {
  .tab-btn {
    padding: 14px 12px;
    flex-direction: column;
    gap: 4px;
  }

  .tab-text {
    font-size: 0.85rem;
  }

  .main-tabs {
    top: 60px;
  }

  .restaurant-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Editor's Pick Section
   ======================================== */
.editors-pick-hero {
  background: linear-gradient(135deg, #1F2937 0%, #374151 50%, #4B5563 100%);
}

.editors-pick-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.editors-pick-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.editors-pick-intro p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

.editors-pick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

/* Pick Card Base */
.pick-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pick-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

/* Pick Card Image */
.pick-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.pick-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pick-card:hover .pick-image img {
  transform: scale(1.05);
}

/* Pick Card Header */
.pick-header {
  padding: 20px 24px 16px;
  background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
  color: white;
  position: relative;
}

.pick-number {
  position: absolute;
  top: -28px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #FFD700 0%, #F59E0B 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #1F2937;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 3px solid white;
  z-index: 10;
}

.pick-category {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.pick-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pick-location {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 4px;
}

.pick-location::before {
  content: '📍';
  font-size: 0.8rem;
}

/* Pick Card Body */
.pick-body {
  padding: 20px 24px;
  flex: 1;
}

.pick-description {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pick-comment {
  padding: 14px 16px;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: #78350F;
  line-height: 1.6;
  position: relative;
  margin-bottom: 16px;
}

.pick-comment::before {
  content: '"';
  position: absolute;
  top: 4px;
  left: 8px;
  font-size: 2rem;
  font-family: Georgia, serif;
  color: #D97706;
  opacity: 0.3;
  line-height: 1;
}

.pick-info {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.pick-info-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.pick-info-item::before {
  flex-shrink: 0;
}

.pick-address::before { content: '🏠'; }
.pick-phone::before { content: '📞'; }
.pick-hours::before { content: '🕐'; }
.pick-closed::before { content: '🚫'; }
.pick-price::before { content: '💰'; }

.pick-menu {
  margin-bottom: 12px;
}

.pick-menu-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pick-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pick-menu-item {
  font-size: 0.85rem;
  padding: 4px 10px;
  background: var(--background);
  border-radius: 6px;
  color: var(--text);
}

.pick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pick-tag {
  padding: 4px 12px;
  background: #E0F2FE;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #0369A1;
}

/* Pick Card Footer */
.pick-footer {
  padding: 16px 24px;
  background: var(--background);
  border-top: 1px solid var(--border);
}

.pick-link {
  display: block;
  width: 100%;
  padding: 12px;
  background: #1F2937;
  color: white;
  text-align: center;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.pick-link:hover {
  background: #374151;
}

/* Secret Card Styling */
.pick-card.secret-card {
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  color: white;
  border: 2px solid #4B5563;
}

.pick-card.secret-card .pick-header {
  background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
}

.pick-card.secret-card .pick-number {
  background: rgba(167, 139, 250, 0.9);
  color: #1F2937;
}

.pick-card.secret-card .pick-body {
  background: transparent;
}

.pick-card.secret-card .pick-description {
  color: rgba(255, 255, 255, 0.9);
}

.pick-card.secret-card .pick-comment {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
  border: 1px solid rgba(167, 139, 250, 0.3);
  color: #E9D5FF;
}

.pick-card.secret-card .pick-comment::before {
  color: #A78BFA;
  opacity: 0.5;
}

.pick-card.secret-card .pick-tags {
  justify-content: center;
}

.pick-card.secret-card .pick-tag {
  background: rgba(167, 139, 250, 0.2);
  border: 1px solid rgba(167, 139, 250, 0.3);
  color: #C4B5FD;
}

.pick-card.secret-card .pick-footer {
  background: rgba(0, 0, 0, 0.2);
  border-top-color: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.secret-icon {
  font-size: 3rem;
  margin: 20px 0;
  text-align: center;
  filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.5));
}

.secret-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-style: italic;
}

/* Editor's Pick Responsive */
@media (max-width: 768px) {
  .editors-pick-grid {
    grid-template-columns: 1fr;
  }

  .pick-card {
    margin: 0 8px;
  }

  .pick-name {
    font-size: 1.2rem;
  }
}
