/* ═══════════════════════════════════════════════════════════════
   SEASONAL COLOUR — Base Design System
   base.css — Reset, custom properties, shared components
   ═══════════════════════════════════════════════════════════════ */

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

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:           #1D1610;
  --bg-2:         #2B2218;
  --bg-3:         #3C2F22;
  --bg-4:         #4A3B2C;

  /* Text */
  --text:         #FDF8ED;
  --muted:        #C4A882;
  --muted-2:      rgba(253,248,237,0.45);
  --muted-3:      rgba(253,248,237,0.25);

  /* Borders */
  --border:       rgba(193,154,107,0.18);
  --border-hover: rgba(193,154,107,0.42);
  --border-focus: rgba(193,154,107,0.7);

  /* Season family accents (overridden per-season via --season-accent) */
  --spring:         #E8834A;
  --summer:         #A8789C;
  --autumn:         #B7472A;
  --winter:         #4A6ABA;
  --season-accent:  var(--autumn); /* default; overridden by JS */

  /* Navigation */
  --nav-bg: rgba(29, 22, 16, 0.82);

  /* Shape */
  --radius-xs:    4px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    18px;
  --radius-xl:    24px;
  --radius-full:  9999px;

  /* Layout */
  --max-w:        1140px;
  --side-pad:     24px;

  /* Typography */
  --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono:    'Courier New', Courier, monospace;

  /* Motion */
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:      cubic-bezier(0.4, 0, 1, 1);
  --t-fast:       0.15s;
  --t-med:        0.25s;
  --t-slow:       0.4s;
  --theme-transition: background-color 0.7s cubic-bezier(0.22,1,0.36,1), color 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.4s cubic-bezier(0.22,1,0.36,1);
}

/* ─── Base Typography ────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
.nav,
.section-card,
.section-header,
.trait-card,
.palette-card,
.profile-card,
.hair-card,
.wardrobe-item,
.foundation-item,
.metal-chip,
.avoid-chip,
.blush-item {
  transition: var(--theme-transition);
}

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 1.875rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.25rem); font-weight: 400; }

p { line-height: 1.7; }

a { color: var(--season-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Navigation ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--side-pad);
  height: 56px;
  background: var(--nav-bg);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-brand:hover { text-decoration: none; opacity: 0.85; }

.nav-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.nav-back:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.04);
  text-decoration: none;
}
.nav-back svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ─── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

/* ─── Shared Section Card ───────────────────────────────────── */
.section-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  /* Left stripe: always 3px wide so layout never shifts — colour
     transitions from transparent → accent when the section opens */
  border-left-width: 3px;
  border-left-color: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  transition:
    border-left-color 0.3s ease,
    box-shadow        0.3s ease;
}
/* Open state: accent left stripe + soft lift shadow */
.section-card.open {
  border-left-color: var(--season-accent);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  user-select: none;
  transition: background var(--t-fast);
}
/* Collapsed header: plain */
.section-header:hover { background: rgba(255,255,255,0.03); }
/* Open header: subtle warm tint to reinforce expanded state */
.section-card.open .section-header {
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}
.section-title-icon {
  font-size: 1rem;
  margin-right: 10px;
}

/* ── Toggle pill — wraps the chevron, shows open/closed state ── */
.section-toggle {
  /* Circle pill container */
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Collapsed: outlined ring, muted colour */
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  transition:
    background     0.25s ease,
    border-color   0.25s ease,
    color          0.25s ease,
    box-shadow     0.25s ease;
}
/* Open: filled with accent colour */
.section-card.open .section-toggle {
  background: var(--season-accent);
  border-color: var(--season-accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
/* Hover on collapsed header: pre-light the pill */
.section-header:hover .section-toggle {
  border-color: var(--season-accent);
  color: var(--season-accent);
}
.section-card.open .section-header:hover .section-toggle {
  filter: brightness(1.1);
  color: #fff;
}

.section-chevron {
  width: 14px;
  height: 14px;
  /* colour inherited from .section-toggle */
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}
.section-card.open .section-chevron { transform: rotate(180deg); }

.section-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
}
.section-card.open .section-body { max-height: 4000px; }

.section-inner {
  padding: 0 24px 24px;
}

/* ─── Touch Target Utility ──────────────────────────────────── */
/*
 * Apple HIG minimum: 44×44px. Google Material minimum: 48×48dp.
 * WCAG 2.5.5 (Target Size) — applies to all interactive controls.
 *
 * Use .touch-target on any interactive element whose visual size is
 * smaller than 44px. The ::after pseudo-element expands the tap area
 * without affecting layout or the visual appearance of the element.
 */
.touch-target {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width:  44px;
  min-height: 44px;
  cursor: pointer;
}
.touch-target::after {
  content: '';
  position: absolute;
  top:  50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width:  44px;
  min-height: 44px;
}

/* ─── Tab Bar ────────────────────────────────────────────────── */
.tab-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 7px 16px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  min-height: 44px; /* Apple HIG touch target minimum */
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.tab-btn:hover {
  color: var(--text);
  border-color: var(--border-hover);
}
.tab-btn.active {
  color: var(--bg);
  background: var(--season-accent);
  border-color: var(--season-accent);
  font-weight: 600;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── Color Chip / Swatch ───────────────────────────────────── */
.color-dot {
  display: inline-block;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.swatch-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.swatch-row:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-hover);
}

/* ─── Pill / Badge ──────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  color: var(--muted);
  border: 1px solid var(--border);
}
.badge-accent {
  background: color-mix(in srgb, var(--season-accent) 18%, transparent);
  color: var(--season-accent);
  border-color: color-mix(in srgb, var(--season-accent) 35%, transparent);
}

/* ─── Affiliate Button ──────────────────────────────────────── */
.affiliate-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--season-accent);
  border: 1px solid var(--season-accent);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: opacity var(--t-fast), filter var(--t-fast);
  white-space: nowrap;
}
.affiliate-btn:hover {
  opacity: 0.88;
  text-decoration: none;
  filter: brightness(1.08);
}
.affiliate-btn.confidence-low {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
  border-style: dashed;
  font-style: italic;
  opacity: 0.6;
}
.affiliate-btn.confidence-low:hover {
  opacity: 0.8;
  border-color: var(--border-hover);
  filter: none;
}

/* ─── Skeleton ──────────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-2) 25%, var(--bg-3) 50%, var(--bg-2) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: var(--radius-md);
}

#skeleton-overlay {
  padding: 32px var(--side-pad);
}
#skeleton-overlay .sk-hero {
  height: 220px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}
#skeleton-overlay .sk-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
#skeleton-overlay .sk-card {
  height: 120px;
  flex: 1;
  border-radius: var(--radius-md);
}
#skeleton-overlay .sk-line {
  height: 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}
#skeleton-overlay .sk-line.short { width: 40%; }
#skeleton-overlay .sk-line.med   { width: 65%; }
#skeleton-overlay .sk-line.full  { width: 100%; }

#skeleton-overlay.fade-out {
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* ─── DNA Color Strip ───────────────────────────────────────── */
.dna-strip {
  height: 14px;
  width: 100%;
  display: flex;
}
.dna-strip span {
  flex: 1;
  display: block;
}

/* ─── Affiliate Disclosure (FTC) ───────────────────────────── */
footer { width: 100%; }
.affiliate-disclosure {
  font-size: 0.75rem;
  color: rgba(196, 168, 130, 0.55); /* --muted at 55% opacity */
  text-align: center;
  padding: 16px var(--side-pad) 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --side-pad: 16px; }
  .section-inner { padding: 0 16px 20px; }
  .section-header { padding: 16px; }
}

@media (max-width: 480px) {
  :root { --side-pad: 12px; }
  .tab-btn { padding: 6px 12px; font-size: 0.75rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   PWA UI — Update toast, Android install banner, iOS install modal
   ═══════════════════════════════════════════════════════════════════ */

/* ── SW Update toast ──────────────────────────────────────────────── */
.update-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-2, #2A2018);
  border: 1px solid var(--border, rgba(193,154,107,0.2));
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text, #FDF8ED);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  z-index: 9999;
  white-space: nowrap;
  animation: toast-in 0.25s ease-out both;
}

.update-toast__btn {
  margin-left: 0.75rem;
  font-weight: 600;
  color: var(--accent, #B7472A);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  font-size: inherit;
  padding: 0;
  min-height: 44px;  /* touch target */
}

@keyframes toast-in {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Android install banner (slide up from bottom) ────────────────── */
.pwa-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface-2, #2A2018);
  border-top: 1px solid var(--border, rgba(193,154,107,0.2));
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.pwa-banner--visible {
  transform: translateY(0);
}

.pwa-banner__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted, #C4A882);
  flex: 1;
}

.pwa-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.pwa-banner__btn {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  transition: opacity 0.15s;
}

.pwa-banner__btn--primary {
  background: var(--accent, #B7472A);
  color: #FDF8ED;
  border-color: var(--accent, #B7472A);
}

.pwa-banner__btn--ghost {
  background: transparent;
  color: var(--text-muted, #C4A882);
  border-color: var(--border, rgba(193,154,107,0.3));
}

.pwa-banner__btn:hover { opacity: 0.85; }

/* ── iOS install modal ────────────────────────────────────────────── */
.pwa-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 5, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 9997;
  animation: modal-fade-in 0.25s ease-out both;
}

.pwa-modal--hiding {
  animation: modal-fade-out 0.3s ease-in both;
}

.pwa-modal__inner {
  background: var(--surface-2, #2A2018);
  border: 1px solid var(--border, rgba(193,154,107,0.2));
  border-bottom: none;
  border-radius: 1rem 1rem 0 0;
  padding: 1.75rem 1.5rem 2rem;
  width: 100%;
  max-width: 480px;
  animation: modal-slide-up 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pwa-modal--hiding .pwa-modal__inner {
  animation: modal-slide-down 0.3s ease-in both;
}

.pwa-modal__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--text, #FDF8ED);
  margin: 0 0 1.25rem;
  text-align: center;
}

.pwa-modal__step {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1rem;
  color: var(--text-muted, #C4A882);
}

.pwa-modal__step svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  opacity: 0.75;
}

.pwa-modal__step-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.pwa-modal__tip {
  font-size: 0.8rem;
  color: var(--text-subtle, rgba(196,168,130,0.6));
  text-align: center;
  margin: 1rem 0 1.5rem;
  padding: 0.75rem;
  border: 1px dashed var(--border, rgba(193,154,107,0.15));
  border-radius: 0.5rem;
}

.pwa-modal__dismiss {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 1px solid var(--border, rgba(193,154,107,0.3));
  border-radius: 0.5rem;
  color: var(--text-muted, #C4A882);
  font-size: 0.9rem;
  cursor: pointer;
  min-height: 44px;
  transition: background 0.15s, color 0.15s;
}

.pwa-modal__dismiss:hover {
  background: rgba(193,154,107,0.08);
  color: var(--text, #FDF8ED);
}

@keyframes modal-fade-in  { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-fade-out { from { opacity: 1; } to { opacity: 0; } }

@keyframes modal-slide-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

@keyframes modal-slide-down {
  from { transform: translateY(0); }
  to   { transform: translateY(100%); }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION QUICK-NAV
   Sticky strip at top of sections list — scrollable icon+label pills,
   explore-progress counter, and expand-all toggle.
   ═══════════════════════════════════════════════════════════════════ */

.section-quicknav {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px var(--side-pad);
  margin-bottom: 16px;
  /* Frosted-glass background — blends with any season theme */
  background: rgba(15, 15, 18, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

/* Explored counter pill (left anchor) */
.section-quicknav__count {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-mono);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-2);
  transition: color var(--t-fast), border-color var(--t-fast);
}

/* Scrollable button row (centre, flex-grow) */
.section-quicknav__scroll {
  display: flex;
  gap: 6px;
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px; /* prevents clipped box-shadow on .visited */
}
.section-quicknav__scroll::-webkit-scrollbar { display: none; }

/* Individual section icon+label button */
.section-quicknav__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 6px 9px 5px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--muted);
  cursor: pointer;
  transition:
    background var(--t-fast),
    color var(--t-fast),
    border-color var(--t-fast),
    box-shadow var(--t-fast);
}
.section-quicknav__icon  { font-size: 1.05rem; line-height: 1; }
.section-quicknav__label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Hover / focus */
.section-quicknav__btn:hover,
.section-quicknav__btn:focus-visible {
  background: var(--season-accent);
  color: var(--bg);
  border-color: var(--season-accent);
  outline: none;
}

/* Visited (explored) state — accent ring */
.section-quicknav__btn.visited {
  border-color: var(--season-accent);
  color: var(--season-accent);
  box-shadow: 0 0 0 1px var(--season-accent) inset;
}
.section-quicknav__btn.visited:hover,
.section-quicknav__btn.visited:focus-visible {
  color: var(--bg);
  box-shadow: none;
}

/* Expand / Collapse all toggle (right anchor) */
.section-quicknav__toggle {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.section-quicknav__toggle:hover,
.section-quicknav__toggle:focus-visible {
  background: var(--season-accent);
  color: var(--bg);
  border-color: var(--season-accent);
  outline: none;
}

/* ─── Section header attention pulse ────────────────────────── */
/* Triggered by IntersectionObserver when a collapsed section      */
/* scrolls into view — a gentle invitation to expand it.           */
.section-header--pulse {
  animation: sectionPulse 1.6s ease-out forwards;
}

@keyframes sectionPulse {
  0%   { background: transparent; }
  18%  { background: rgba(255, 255, 255, 0.06); }
  55%  { background: rgba(255, 255, 255, 0.03); }
  100% { background: transparent; }
}

/* ─── Section body smooth expand transition ─────────────────── */
/* Override the static 4000px cap with a proper transition so     */
/* opening feels fluid across all section sizes.                   */
.section-body {
  transition: max-height 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Quicknav responsive tweaks ───────────────────────────── */
@media (max-width: 480px) {
  .section-quicknav { gap: 6px; padding: 6px var(--side-pad); }
  .section-quicknav__btn { padding: 5px 7px 4px; }
  .section-quicknav__icon { font-size: 0.95rem; }
  .section-quicknav__label { font-size: 0.5rem; }
  .section-quicknav__toggle { width: 30px; height: 30px; font-size: 0.875rem; }
  .section-quicknav__count { font-size: 0.5625rem; padding: 3px 6px; }
}
