/* ==========================================================================
   MatchFit Color - Smartphone-Friendly Modern Stylesheet
   Slogan: 옷알못들을 위한 컬러 제안 | Partner: 3LOOK (https://looklooklook.pe.kr/)
   ========================================================================== */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  --bg-main: #0a0d14;
  --bg-subtle: #10141f;
  --bg-card: rgba(19, 24, 38, 0.78);
  --bg-card-hover: rgba(28, 35, 54, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border-glass: rgba(255, 255, 255, 0.09);
  --border-glass-strong: rgba(255, 255, 255, 0.18);
  
  --primary: #38bdf8;
  --primary-glow: rgba(56, 189, 248, 0.28);
  --accent: #f43f5e;
  --accent-glow: rgba(244, 63, 94, 0.25);
  --accent-amber: #fbbf24;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-inverse: #0f172a;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(56, 189, 248, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.16s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.26s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-color: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Global Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
}

body {
  min-height: 100vh;
  background: 
    radial-gradient(circle at 15% 10%, rgba(56, 189, 248, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(244, 63, 94, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(99, 102, 241, 0.07) 0%, transparent 50%),
    var(--bg-main);
  background-attachment: fixed;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}

/* --- Typography Helpers --- */
.font-outfit {
  font-family: 'Outfit', 'Pretendard', sans-serif;
}

/* 화면에는 안 보이지만 스크린리더·검색엔진에는 노출되는 텍스트 (SEO용 h1 등) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 13, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.7rem 1.25rem;
  transition: var(--transition-base);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.brand-wrapper:hover .brand-logo-img {
  transform: scale(1.04);
}

.brand-text-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  white-space: nowrap;
}

.brand-title .accent {
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-slogan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.25);
  padding: 0.12rem 0.55rem;
  border-radius: var(--radius-full);
  width: fit-content;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-shop-header {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff;
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.btn-shop-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.45);
  filter: brightness(1.08);
}

/* ==========================================================================
   Mobile Sticky Quick Preview Bar (모바일 스크롤 시 자동 등장)
   ========================================================================== */
.mobile-sticky-bar {
  position: sticky;
  top: 57px;
  z-index: 45;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-glass-strong);
  padding: 0.45rem 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.mobile-sticky-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.sticky-preview-chips {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.sticky-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid var(--border-glass);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  color: #fff;
  font-weight: 600;
}

.chip-label {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.chip-color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.chip-divider {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-sticky-action {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid var(--border-glass);
  color: #fff;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.btn-sticky-action:hover {
  background: rgba(56, 189, 248, 0.25);
  border-color: #38bdf8;
}

.btn-sticky-shop {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: #fbbf24;
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
}

/* --- Hero Banner Bar --- */
.hero-banner-bar {
  background: linear-gradient(90deg, #1e293b, #0f172a);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.65rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.hero-banner-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  animation: shimmer 8s infinite linear;
}

@keyframes shimmer {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

.hero-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.hero-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #e2e8f0;
}

.hero-highlight {
  color: #38bdf8;
  font-weight: 700;
}

.hero-link {
  color: #fbbf24;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.hero-link:hover {
  color: #fde68a;
  text-decoration: underline;
}

/* --- Main Layout --- */
.main-layout {
  flex: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

/* --- Top Grid Section (Visual Preview + Controls) --- */
.matching-studio-grid {
  display: block;
}

/* --- Glassmorphism Card Style --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  position: relative;
  transition: border-color var(--transition-fast);
}

.glass-card:hover {
  border-color: var(--border-glass-strong);
}

/* --- Visual Preview Panel (통합 스튜디오) --- */
.preview-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.panel-header-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-glass);
}

.panel-title {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
}

.preview-mode-tag {
  font-size: 0.725rem;
  color: #38bdf8;
  font-weight: 700;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.mannequin-stage {
  width: 100%;
  background: radial-gradient(circle at 50% 35%, rgba(30, 41, 59, 0.75), rgba(15, 23, 42, 0.96));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.45);
}

.garment-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 280px;
}

/* SVG Container Box & Interactive Selection */
.svg-container-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: var(--radius-md);
  padding: 4px;
  transition: transform var(--transition-fast), filter var(--transition-fast);
  user-select: none;
  outline: none;
}

.svg-container-box:hover {
  transform: scale(1.025);
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.45));
}

.svg-container-box.is-active-target {
  filter: drop-shadow(0 0 16px rgba(56, 189, 248, 0.85));
}

.svg-container-box.is-active-target::after {
  content: "선택됨 🎯";
  position: absolute;
  top: 10px;
  left: 6px;
  font-size: 0.675rem;
  font-weight: 800;
  color: #0f172a;
  background: #38bdf8;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(56, 189, 248, 0.5);
  pointer-events: none;
  z-index: 10;
  animation: badgePop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes badgePop {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

/* 추천 컬러 다이나믹 순환 미리보기 연출 (앰버 글로우 펄스) */
.svg-container-box.is-cycling {
  animation: cyclingPulse 1.3s ease-in-out infinite;
}

.svg-container-box.is-cycling::after {
  content: "추천 미리보기 ✨";
  position: absolute;
  top: 10px;
  left: 6px;
  font-size: 0.675rem;
  font-weight: 800;
  color: #0f172a;
  background: #fbbf24;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.5);
  pointer-events: none;
  z-index: 10;
  animation: badgePop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cyclingPulse {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.4)); }
  50% { filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.8)); }
}

/* SVG Graphic Elements */
.svg-garment {
  display: block;
  overflow: visible;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
  transition: transform var(--transition-fast);
}

.svg-top {
  width: 240px;
  height: 210px;
  z-index: 2;
  margin-bottom: -12px;
}

.svg-bottom {
  width: 222px;
  height: 240px;
  z-index: 1;
}

.garment-fill-target {
  transition: fill var(--transition-color), stroke var(--transition-color);
}

/* Floating Color Badges on Preview */
.floating-color-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass-strong);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  font-size: 0.775rem;
  font-weight: 600;
  color: #fff;
  z-index: 5;
  cursor: pointer;
  pointer-events: auto;
  transition: all var(--transition-fast);
}

.floating-color-badge:hover {
  transform: scale(1.06);
  border-color: #38bdf8;
}

.floating-color-badge.is-active-target {
  border-color: #38bdf8;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.45), 0 4px 16px rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  font-weight: 700;
}

.floating-top-badge {
  top: 6px;
  right: 2px;
}

.floating-bottom-badge {
  bottom: 20px;
  right: 2px;
}

.badge-color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.mannequin-click-hint {
  margin-top: 0.65rem;
  font-size: 0.75rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(15, 23, 42, 0.5);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
}

/* Silhouette Toggle Pills */
.bottom-type-selector {
  margin-top: 1.15rem;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  padding: 0.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
}

.type-toggle-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition-fast);
  min-height: 38px;
}

.type-toggle-btn.active {
  background: #334155;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.type-toggle-btn:hover:not(.active) {
  color: #fff;
}

/* Auxiliary Action Toolbar (3분할 아래 전폭 보조 바) */
.mannequin-extra {
  width: 100%;
  max-width: 640px;
  margin: 1.25rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preview-toolbar {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.tool-btn {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: all var(--transition-fast);
  min-height: 44px;
  min-width: 0;
  flex-wrap: wrap;
}

.tool-btn:hover {
  background: rgba(51, 65, 85, 0.85);
  border-color: var(--border-glass-strong);
  transform: translateY(-1px);
}

.tool-btn:active {
  transform: translateY(0);
}

.tool-btn.primary-tool {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.35);
  color: #38bdf8;
}

.tool-btn.primary-tool:hover {
  background: rgba(56, 189, 248, 0.25);
  border-color: #38bdf8;
}

/* Color Harmony Meter */
.harmony-status-card {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.harmony-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.harmony-title {
  font-size: 0.725rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.harmony-desc {
  font-size: 0.875rem;
  font-weight: 700;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.harmony-chips {
  display: flex;
  align-items: center;
  gap: -6px;
}

.harmony-chip {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #0f172a;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* --- 통합 스튜디오 3분할 레이아웃 (마네킹 | 팔레트 | 세로 탭 레일) ---
   마네킹 존이 스튜디오 폭의 절반 이상을 차지하도록 1.5fr:1fr 비율 */
.studio-split {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: start;
  width: 100%;
}

.mannequin-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  min-height: 700px;
}

.palette-zone {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.step-label-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
}

.step-num {
  background: #38bdf8;
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Color Theme Tabs (세로 레일 - 스튜디오 제일 우측, 마네킹 존 높이에 맞춰 장착) */
.color-theme-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 104px;
  align-self: stretch;
  scrollbar-width: none;
}

.color-theme-tabs::-webkit-scrollbar {
  display: none;
}

.theme-tab-btn {
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.7rem 0.4rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
  line-height: 1.3;
  transition: all var(--transition-fast);
  flex: 1;
  min-height: 64px;
}

.theme-tab-btn:hover {
  background: rgba(51, 65, 85, 0.9);
  color: #fff;
  border-color: var(--border-glass-strong);
}

.theme-tab-btn.active {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(99, 102, 241, 0.25));
  color: #38bdf8;
  border-color: #38bdf8;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.3);
  font-weight: 700;
}

.theme-tab-btn .tab-emoji {
  font-size: 0.95rem;
}

/* 모바일 세로 레일용 짧은 라벨 (데스크톱에서는 숨김) */
.theme-tab-btn .tab-label-short {
  display: none;
}

/* Palette Swatches Grid (15 Fashion Colors)
   통합 스튜디오에서는 마네킹 창과 같은 높이의 세로 스크롤형 1열 리스트 (JS로 높이 동기화) */
.palette-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  overflow-y: auto;
  padding: 0.35rem 0.5rem 0.35rem 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 189, 248, 0.35) rgba(148, 163, 184, 0.1);
}

.palette-grid::-webkit-scrollbar {
  width: 6px;
}

.palette-grid::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, 0.35);
  border-radius: 999px;
}

.palette-grid::-webkit-scrollbar-track {
  background: rgba(148, 163, 184, 0.1);
  border-radius: 999px;
}

.swatch-card {
  position: relative;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.45rem 0.7rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
  min-height: 62px;
}

.swatch-card:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: var(--border-glass-strong);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.swatch-card.active {
  border-color: #38bdf8;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.45), 0 8px 20px rgba(56, 189, 248, 0.25);
  background: rgba(30, 41, 59, 0.95);
  transform: translateY(-2px);
}

.swatch-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.swatch-card:hover .swatch-circle {
  transform: scale(1.08);
}

.swatch-card.active .swatch-circle::after {
  content: "✓";
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--swatch-text, #fff);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.swatch-name {
  flex: 1;
  min-width: 0;
  font-size: 0.725rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.swatch-hex {
  font-size: 0.625rem;
  font-family: 'Outfit', monospace;
  color: var(--text-muted);
  margin-left: auto;
}

/* Selected Color Information Card */
.selected-color-meta {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.meta-color-pill {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.meta-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-color-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.meta-hex {
  font-size: 0.75rem;
  font-family: 'Outfit', monospace;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

.meta-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* --- Section: Smart Recommendations (Bottom) --- */
.recommendation-section {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.section-header-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.section-title .target-highlight {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  padding: 0.1rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.section-subtitle {
  font-size: 0.825rem;
  color: var(--text-secondary);
}

.rec-swipe-hint {
  font-size: 0.75rem;
  color: #fbbf24;
  display: none;
}

/* Recommendation Cards Grid / Mobile Carousel */
.rec-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.15rem;
}

.rec-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.rec-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.rec-card.active {
  border-color: #38bdf8;
  background: rgba(30, 45, 68, 0.9);
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.45), 0 12px 28px rgba(56, 189, 248, 0.2);
}

.rec-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.rec-color-preview-group {
  display: flex;
  align-items: center;
}

.rec-swatch-chip {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.rec-active-badge {
  display: none;
  font-size: 0.7rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.rec-card.active .rec-active-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.rec-vibe-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.725rem;
  font-weight: 700;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  width: fit-content;
  white-space: nowrap;
}

.rec-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.rec-color-name {
  font-size: 1.025rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rec-color-hex {
  font-size: 0.725rem;
  font-family: 'Outfit', monospace;
  color: var(--text-muted);
}

.rec-style-tip {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.rec-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--border-glass);
}

.btn-apply-rec {
  flex: 1;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: all var(--transition-fast);
  min-height: 42px;
}

.rec-card.active .btn-apply-rec {
  background: #38bdf8;
  color: #0f172a;
  border-color: #38bdf8;
}

.btn-apply-rec:hover {
  background: #38bdf8;
  color: #0f172a;
}

.btn-shop-item-link {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.775rem;
  font-weight: 600;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all var(--transition-fast);
  min-height: 42px;
  white-space: nowrap;
}

.btn-shop-item-link:hover {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.4);
  color: #fbbf24;
}

/* --- Section: 3LOOK Shopping Mall Promo Showcase --- */
.promo-showcase-card {
  background: linear-gradient(135deg, rgba(20, 27, 45, 0.95), rgba(15, 23, 42, 0.95));
  border: 1px solid var(--border-glass-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
}

.promo-image-container {
  position: relative;
  height: 100%;
  min-height: 260px;
  overflow: hidden;
}

.promo-banner-img,
.promo-banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.promo-showcase-card:hover .promo-banner-img,
.promo-showcase-card:hover .promo-banner-video {
  transform: scale(1.03);
}

.promo-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(15, 23, 42, 0.95) 100%);
}

.promo-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  width: fit-content;
}

.promo-heading {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
}

.promo-desc {
  font-size: 0.885rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.promo-cta-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn-promo-primary {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  font-size: 0.925rem;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.btn-promo-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.5);
  filter: brightness(1.1);
}

.promo-url-text {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Mobile Bottom Floating Dock (모바일 엄지손가락 원핸드 컨트롤)
   ========================================================================== */
.mobile-bottom-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(10, 13, 20, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border-glass-strong);
  padding: 0.45rem 1rem calc(0.55rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
  justify-content: space-around;
  align-items: center;
}

.dock-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  min-width: 60px;
}

.dock-btn:hover, .dock-btn:active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.dock-btn.highlight {
  color: #38bdf8;
}

.dock-btn.highlight:hover {
  background: rgba(56, 189, 248, 0.15);
}

.dock-btn.shop-dock {
  color: #fbbf24;
}

.dock-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.dock-label {
  font-size: 0.675rem;
  white-space: nowrap;
}

/* --- Toast Notification --- */
.toast-container {
  position: fixed;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  width: 90%;
  max-width: 360px;
}

.toast {
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid var(--primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 16px rgba(56, 189, 248, 0.35);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  animation: toastIn 0.28s cubic-bezier(0.16, 1, 0.3, 1), toastOut 0.28s cubic-bezier(0.16, 1, 0.3, 1) 2.7s forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(15px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(-10px) scale(0.92); }
}

/* --- Footer --- */
.site-footer {
  background: #080a0f;
  border-top: 1px solid var(--border-glass);
  padding: 2.5rem 1.25rem calc(4.5rem + env(safe-area-inset-bottom));
  color: var(--text-muted);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-glass);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}

.footer-slogan {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.825rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: #38bdf8;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.775rem;
}

.footer-copy {
  color: var(--text-muted);
}

/* ==========================================================================
   Responsive & Smartphone Breakpoints
   ========================================================================== */
@media (max-width: 960px) {
  /* 스마트폰 기준: 마네킹 | 세로 스크롤 팔레트 | 세로 탭 레일 3분할을 한눈에
     (마네킹 존이 스튜디오 폭의 절반 이상 차지) */
  .studio-split {
    grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr) 46px;
    gap: 0.6rem;
  }
  .mannequin-zone {
    min-height: 420px;
  }
  .palette-zone {
    gap: 0.6rem;
  }

  /* 세로 탭 레일: 좁은 폭 + 짧은 라벨 */
  .color-theme-tabs {
    width: 46px;
    gap: 0.35rem;
  }
  .theme-tab-btn {
    padding: 0.4rem 0.15rem;
    gap: 0.3rem;
    border-radius: var(--radius-sm);
    min-height: 0;
    font-size: 0.6rem;
  }
  .theme-tab-btn .tab-emoji {
    font-size: 0.85rem;
  }
  .theme-tab-btn .tab-label-full {
    display: none;
  }
  .theme-tab-btn .tab-label-short {
    display: block;
  }

  /* 팔레트: 컴팩트 2열 세로 스크롤 (마네킹 창 높이와 동기화) */
  .palette-grid {
    gap: 0.4rem;
    padding: 0.25rem 0.3rem 0.25rem 0.25rem;
  }
  .swatch-card {
    min-height: 52px;
    padding: 0.35rem 0.45rem;
    gap: 0.35rem;
  }
  .swatch-circle {
    width: 30px;
    height: 30px;
  }
  .swatch-name {
    font-size: 0.62rem;
  }
  .swatch-hex {
    display: none;
  }
  .step-label-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .selected-color-meta {
    padding: 0.6rem 0.7rem;
    gap: 0.5rem;
  }
  .meta-color-pill {
    width: 34px;
    height: 34px;
  }
  .meta-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
  }
  .meta-desc {
    display: none;
  }

  /* 마네킹 스테이지 컴팩트 (높이 30% 확대 반영) */
  .mannequin-stage {
    padding: 0.9rem 0.5rem;
  }
  .svg-top {
    width: 130px;
    height: 114px;
    margin-bottom: -8px;
  }
  .svg-bottom {
    width: 122px;
    height: 132px;
  }
  .bottom-type-selector {
    margin-top: 0.8rem;
  }
  .type-toggle-btn {
    font-size: 0.7rem;
    padding: 0.4rem 0.5rem;
    gap: 0.25rem;
    min-height: 32px;
  }
  .mannequin-click-hint {
    display: none;
  }
  .floating-color-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    gap: 0.3rem;
  }
  .svg-container-box.is-active-target::after {
    content: "🎯";
    font-size: 0.6rem;
    padding: 0.1rem 0.35rem;
    top: 6px;
    left: 4px;
  }
  .svg-container-box.is-cycling::after {
    content: "✨";
    font-size: 0.6rem;
    padding: 0.1rem 0.35rem;
    top: 6px;
    left: 4px;
  }

  .promo-showcase-card {
    grid-template-columns: 1fr;
  }
  .promo-img-overlay {
    background: linear-gradient(to bottom, transparent 60%, rgba(15, 23, 42, 0.95) 100%);
  }
}

/* --- Mobile Specific (Screens <= 768px) --- */
/* ==========================================================================
   🍁 계절별 패션 트렌드 컬러 큐레이션 (Seasonal Trend Card)
   ========================================================================== */
.seasonal-trend-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(20, 26, 40, 0.85) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 20px rgba(245, 158, 11, 0.08);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.seasonal-trend-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #ec4899, #8b5cf6, #3b82f6);
  opacity: 0.85;
}

.seasonal-trend-card:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), 0 0 28px rgba(245, 158, 11, 0.15);
}

.trend-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.trend-badge-group {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.season-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(180, 83, 9, 0.35));
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #fbbf24;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.season-edit-notice {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.season-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
}

.season-quote-box {
  background: rgba(15, 23, 42, 0.6);
  border-left: 3px solid #f59e0b;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 0.85rem 1.15rem;
  margin-top: 0.25rem;
}

.season-guide-text {
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1.6;
  color: #f1f5f9;
  margin-bottom: 0.35rem;
}

.season-subtext {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* --- Trend Color Chips Area --- */
.trend-colors-wrap {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trend-colors-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #e2e8f0;
}

.trend-hint {
  font-size: 0.775rem;
  color: var(--color-primary);
  font-weight: 500;
}

.trend-color-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn-trend-color {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.95rem;
  color: #fff;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 44px;
}

.btn-trend-color:hover {
  transform: translateY(-2px);
  background: rgba(51, 65, 85, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.btn-trend-color:active {
  transform: scale(0.97);
}

.btn-trend-color.is-active {
  border-color: #fbbf24;
  background: rgba(245, 158, 11, 0.15);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.35);
}

.trend-swatch-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.trend-color-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.trend-color-tag {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  white-space: nowrap;
}

/* --- 1-Click Season Best Co-ord Sets --- */
.season-quick-styles-wrap {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.quick-styles-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #cbd5e1;
  white-space: nowrap;
}

.quick-styles-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-quick-style {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  color: #f8fafc;
  font-size: 0.775rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 38px;
  transition: all var(--transition-fast);
}

.btn-quick-style:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(30, 41, 59, 0.9));
  border-color: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.btn-quick-style .quick-style-vibe {
  font-size: 0.675rem;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .mobile-bottom-dock {
    display: flex;
  }
  .mobile-sticky-bar {
    display: block;
  }
  .rec-swipe-hint {
    display: inline-block;
  }

  /* 추천 카드를 모바일에서 가로 스와이프 캐러셀로 전환하여 세로 스크롤 피로도 제거 */
  .rec-cards-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.75rem;
    gap: 0.85rem;
  }

  .rec-card {
    min-width: 255px;
    max-width: 285px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .main-layout {
    padding: 1rem 0.85rem 6.5rem;
    gap: 1.5rem;
  }

  .glass-card {
    padding: 1.15rem 0.95rem;
    border-radius: var(--radius-md);
  }

  .promo-content {
    padding: 1.35rem 1rem;
  }

  .promo-heading {
    font-size: 1.25rem;
  }
}

/* --- Extra Small Screens (<= 400px, e.g. iPhone SE, 작은 스마트폰) --- */
@media (max-width: 400px) {
  /* 헤더가 320px 폭에서 넘치지 않도록 압축 */
  .site-header {
    padding: 0.7rem 0.75rem;
  }
  .header-container {
    gap: 0.5rem;
  }
  .brand-logo-img {
    height: 30px;
  }
  .btn-shop-header {
    font-size: 0.72rem;
    padding: 0.4rem 0.55rem;
  }
  .brand-title {
    font-size: 0.98rem;
  }
  .brand-slogan-badge {
    display: none;
  }
  .btn-shop-header span.arrow-icon {
    display: none;
  }
}

/* ==========================================================================
   Global Navigation Bar (GNB) & Multi-Page Navigation
   ========================================================================== */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-glass);
}

.nav-link.active {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.15);
}

/* 모바일 전용 상단 가로 스크롤 서브 탭바 */
.mobile-subnav-bar {
  display: none;
  position: sticky;
  top: 57px;
  z-index: 45;
  background: rgba(10, 13, 20, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.45rem 0.85rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.mobile-subnav-bar::-webkit-scrollbar {
  display: none;
}
.mobile-subnav-inner {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: max-content;
}
.mobile-subnav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  white-space: nowrap;
}
.mobile-subnav-link.active {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.16);
  border-color: rgba(56, 189, 248, 0.45);
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }
  .mobile-subnav-bar {
    display: flex;
  }
}

/* 모바일 하단 독 5탭 네비게이션 전용 활성 표시 */
.dock-btn.active {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.14);
}
.dock-btn.active .dock-label {
  font-weight: 700;
}

/* ==========================================================================
   신규 전문 페이지 공통 레이아웃 & 히어로 배너
   ========================================================================== */
.page-hero-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(28, 35, 54, 0.85), rgba(15, 23, 42, 0.95));
  border: 1px solid var(--border-glass-strong);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-md);
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  font-size: 0.825rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.page-hero-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.page-hero-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 780px;
}

/* ==========================================================================
   🌤️ 날씨에 따른 코디 추천 (Weather Page)
   ========================================================================== */
.weather-control-card {
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.city-selection-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.city-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-city-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-city-chip:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-glass-strong);
}

.btn-city-chip.active {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.4);
}

.btn-gps-city {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}
.btn-gps-city:hover {
  background: rgba(16, 185, 129, 0.22);
}

/* 현재 날씨 대시보드 */
.current-weather-dashboard {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 840px) {
  .current-weather-dashboard {
    grid-template-columns: 1fr;
  }
}

.weather-metric-box {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at 50% 20%, rgba(56, 189, 248, 0.12), transparent 70%), var(--bg-card);
}

.weather-city-badge {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.weather-emoji-large {
  font-size: 4rem;
  line-height: 1;
  margin: 0.5rem 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.weather-temp-huge {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}

.weather-status-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #38bdf8;
  margin-top: 0.4rem;
}

.weather-sub-metrics {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-glass);
  font-size: 0.825rem;
  color: var(--text-secondary);
}

/* 오늘 추천 코디 카드 (날씨 맞춤) */
.weather-matched-outfit-box {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.weather-fit-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.weather-temp-pill {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #fbbf24;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.weather-fit-items-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
  margin: 1rem 0;
}

.fit-category-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.95rem;
}
.fit-category-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  display: block;
}
.fit-category-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.weather-colors-palette-wrap {
  margin-top: 0.75rem;
}
.weather-color-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.weather-color-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  color: var(--text-secondary);
}
.color-circle-mini {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-fit-in-mannequin {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 0.925rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.3);
}
.btn-fit-in-mannequin:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.45);
}

/* 기온별 옷차림 8단계 조견표 */
.temp-table-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.temp-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  transition: all var(--transition-base);
}
.temp-step-card.is-current {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}
.temp-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}
.temp-step-badge {
  font-size: 0.85rem;
  font-weight: 800;
  color: #38bdf8;
  font-family: 'Outfit', sans-serif;
}
.temp-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.temp-step-desc {
  font-size: 0.825rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

/* ==========================================================================
   ✈️ 출장·여행 날씨 & 패킹 플래너 (Trip Page)
   ========================================================================== */
.trip-purpose-group {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.btn-purpose-pill {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-purpose-pill:hover {
  background: var(--bg-card-hover);
  color: #fff;
  border-color: var(--border-glass-strong);
}
.btn-purpose-pill.active {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.22), rgba(129, 140, 248, 0.22));
  border-color: #38bdf8;
  color: #fff;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.25);
}

/* 여행 일정 선택 영역 */
.trip-date-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.trip-date-inputs-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.trip-date-field {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.trip-date-label {
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.trip-date-input {
  background: rgba(10, 13, 20, 0.8);
  border: 1px solid var(--border-glass-strong);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: all var(--transition-fast);
  color-scheme: dark;
}
.trip-date-input:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.25);
}
.trip-date-arrow {
  color: var(--text-muted);
  font-size: 1.1rem;
  padding-top: 1.2rem;
}
.duration-preset-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.preset-row-label {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-right: 0.25rem;
}
.btn-preset-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-preset-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.btn-preset-chip.active {
  background: rgba(56, 189, 248, 0.18);
  border-color: #38bdf8;
  color: #38bdf8;
  font-weight: 700;
}
.trip-summary-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
  color: #38bdf8;
  font-weight: 700;
  align-self: flex-start;
}

.trip-forecast-cards-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
  gap: 0.65rem;
  margin: 1.5rem 0;
}
@media (max-width: 768px) {
  .trip-forecast-cards-wrap {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.65rem;
    scroll-snap-type: x mandatory;
  }
  .day-forecast-card {
    min-width: 110px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

.day-forecast-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.95rem 0.65rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition-fast);
}
.day-forecast-card.today {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
}
.day-name {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-primary);
}
.day-date {
  font-size: 0.725rem;
  color: var(--text-muted);
}
.day-icon {
  font-size: 1.85rem;
  margin: 0.25rem 0;
}
.day-temp-range {
  font-size: 0.825rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}
.day-rain-prob {
  font-size: 0.72rem;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
}

/* 캡슐 패킹 체크리스트 */
.capsule-packing-section {
  margin-top: 2rem;
}

.packing-progress-bar-wrap {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  height: 8px;
  overflow: hidden;
  margin: 0.85rem 0 1.5rem;
}
.packing-progress-fill {
  background: linear-gradient(90deg, #38bdf8, #10b981);
  height: 100%;
  width: 0%;
  transition: width 0.35s ease;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 0.85rem;
}

.checklist-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}
.checklist-item-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-strong);
}
.checklist-item-card.is-checked {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
}
.checklist-item-card.is-checked .checklist-text {
  text-decoration: line-through;
  color: var(--text-muted);
}
.custom-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--border-glass-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}
.checklist-item-card.is-checked .custom-checkbox {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}
.checklist-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  flex-grow: 1;
}
.checklist-count-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   📅 매일매일 코디 추천 (Daily Outfit Page)
   ========================================================================== */
.tpo-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.btn-tpo-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-tpo-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn-tpo-tab.active {
  background: linear-gradient(135deg, #f43f5e, #fb7185);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 16px rgba(244, 63, 94, 0.35);
}

.daily-outfit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
}

.daily-outfit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  transition: all var(--transition-base);
}
.daily-outfit-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glass-strong);
  box-shadow: var(--shadow-md);
}

.daily-card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.daily-tpo-badge {
  font-size: 0.775rem;
  font-weight: 700;
  color: #fb7185;
  background: rgba(244, 63, 94, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}
.daily-vibe-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.daily-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0.4rem 0 0.2rem;
}
.daily-card-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.daily-color-pairing-preview {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  margin: 0.5rem 0;
}
.color-swatch-box {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
}
.swatch-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}
.swatch-meta {
  display: flex;
  flex-direction: column;
}
.swatch-part {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.swatch-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}
.swatch-plus {
  color: var(--text-muted);
  font-weight: 700;
}

.daily-points-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.825rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.daily-points-list li::before {
  content: "• ";
  color: #38bdf8;
  font-weight: bold;
}

