/* =================================================================
   WedWows Onboarding Wizard - Stylesheet
   ================================================================= */

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors - From WedWows Brand Identity */
  --ww-gold: #FBBE15;        /* Primary Yellow */
  --ww-green: #66C58B;       /* Success Green */
  --ww-orange: #F05B35;      /* Primary Orange/Coral */
  --ww-blue: #003f5f;        /* Deep Blue (keeping for contrast) */
  --ww-red: #E63946;         /* Accent Red */
  --ww-black: #000000;
  --ww-white: #ffffff;

  /* Semantic Colors */
  --ww-bg: #F7F8FA;
  --ww-surface: #FFFFFF;
  --ww-border: #E6E8EE;
  --ww-text: #0F172A;
  --ww-text-secondary: #475569;
  --ww-muted: #94A3B8;
  --ww-danger: #E63946;
  --ww-warning: #F59E0B;
  --ww-success: #66C58B;

  /* Shadows */
  --ww-shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06);
  --ww-shadow-md: 0 6px 18px rgba(16, 24, 40, 0.10);
  --ww-shadow-lg: 0 14px 40px rgba(16, 24, 40, 0.14);

  /* Border Radius */
  --radius-btn: 12px;
  --radius-input: 12px;
  --radius-card: 16px;

  /* Spacing */
  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;

  /* Typography */
  --font-display: "Great Vibes", cursive;
  --font-heading: "Playfair Display", serif;
  --font-accent: "Dancing Script", cursive;
  --font-special: "Pacifico", cursive;
  --font-body: "Poppins", system-ui, -apple-system, sans-serif;
}

/* ===== BASE RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  background: transparent;
  color: var(--ww-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: var(--space-16);
}

@media (min-width: 1024px) {
  .container {
    padding: var(--space-24);
  }
}

/* ===== TOPBAR ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: transparent;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 232, 238, 0.3);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand__name {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  background: linear-gradient(135deg, #FF6B9D 0%, var(--ww-orange) 50%, var(--ww-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(240, 91, 53, 0.1);
}

.brand__tag {
  font-size: 11px;
  line-height: 14px;
  background: linear-gradient(90deg, var(--ww-orange), var(--ww-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== PAGE LAYOUT ===== */
.page {
  padding-top: 18px;
  padding-bottom: 84px;
}

/* ===== HERO SECTION ===== */
.hero {
  margin-bottom: 32px;
  text-align: center;
  padding: 24px;
  background: transparent;
  border-radius: var(--radius-card);
  border: 1px solid rgba(251, 190, 21, 0.1);
}

.hero__content {
  max-width: 600px;
  margin: 0 auto;
}

.hero__logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.hero__title {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  background: linear-gradient(135deg, #FF6B9D 0%, var(--ww-orange) 30%, var(--ww-gold) 60%, #66C58B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 10px rgba(240, 91, 53, 0.2);
}

.hero__subtitle {
  font-size: 17px;
  line-height: 26px;
  color: var(--ww-text-secondary);
  margin: 0;
  font-weight: 400;
}

.hero.hidden {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    padding: 20px;
    margin-bottom: 24px;
  }

  .hero__logo {
    max-width: 240px;
  }

  .hero__title {
    font-size: 24px;
    line-height: 32px;
  }

  .hero__subtitle {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ===== STEPPER ===== */
.stepper {
  margin-bottom: 14px;
}

.stepper__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-12);
  margin-bottom: 10px;
}

.kicker {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  color: var(--ww-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stepper__title {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  margin-top: var(--space-4);
  background: linear-gradient(135deg, #E91E63 0%, var(--ww-orange) 50%, #FF6B6B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stepper__pill {
  height: 28px;
  padding: 0 var(--space-12);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(251, 190, 21, 0.15), rgba(240, 91, 53, 0.15));
  color: var(--ww-orange);
  border: 1px solid rgba(240, 91, 53, 0.3);
}

/* Progress Bar */
.progress {
  height: 8px;
  border-radius: 999px;
  background: #E9EDF3;
  overflow: hidden;
}

.progress__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #FF6B9D 0%, var(--ww-orange) 30%, var(--ww-gold) 70%, var(--ww-green) 100%);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.progress__fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer-progress 2s infinite;
}

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

/* ===== CARD ===== */
.card {
  background: transparent;
  border: 1px solid var(--ww-border);
  border-radius: var(--radius-card);
  box-shadow: var(--ww-shadow-sm);
  padding: var(--space-20);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ww-gold), var(--ww-orange));
}

@media (min-width: 1024px) {
  .card {
    padding: var(--space-24);
    box-shadow: var(--ww-shadow-md);
  }
}

.card__header {
  margin-bottom: 18px;
}

.card__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  margin: 0 0 10px 0;
  background: linear-gradient(135deg, #D946EF 0%, var(--ww-orange) 50%, var(--ww-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card__sub {
  margin: 0;
  color: var(--ww-text-secondary);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

/* ===== FORM ELEMENTS ===== */
.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step-mount {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.label {
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, var(--ww-orange), #E91E63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-8);
  display: block;
  letter-spacing: 0.3px;
}

/* Input, Select, Textarea */
.input,
.select,
.textarea {
  width: 100%;
  height: 48px;
  border-radius: var(--radius-input);
  border: 1px solid var(--ww-border);
  padding: 0 14px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  outline: none;
  background: transparent;
  color: var(--ww-text);
  transition: border 0.2s ease;
}

.input:focus,
.select:focus,
.textarea:focus {
  border: 2px solid var(--ww-blue);
}

.input::placeholder {
  color: var(--ww-muted);
}

.textarea {
  height: auto;
  min-height: 88px;
  padding: 12px 14px;
  resize: vertical;
}

.select {
  cursor: pointer;
}

/* Helper and Error Text */
.helper {
  font-size: 13px;
  line-height: 18px;
  color: var(--ww-muted);
  margin-top: var(--space-8);
}

.error {
  font-size: 13px;
  line-height: 18px;
  color: var(--ww-danger);
  margin-top: var(--space-8);
  display: none;
}

/* Grid Layout */
.grid {
  display: grid;
  gap: var(--space-12);
}

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

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

/* ===== BUTTONS ===== */
.btn {
  height: 48px;
  border-radius: var(--radius-btn);
  padding: 0 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn--sm {
  height: 40px;
  padding: 0 14px;
  font-size: 13px;
}

.btn--primary {
  background: linear-gradient(135deg, #FF6B9D 0%, var(--ww-orange) 50%, var(--ww-gold) 100%);
  color: var(--ww-white);
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #E91E63 0%, #F05B35 50%, #FBBE15 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.5);
}

.btn--secondary {
  background: transparent;
  border: 1px solid var(--ww-border);
  color: var(--ww-text);
}

.btn--secondary:hover:not(:disabled) {
  background: rgba(241, 245, 249, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--ww-blue);
  border: 1px solid transparent;
}

.btn--ghost:hover:not(:disabled) {
  text-decoration: underline;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid var(--ww-border);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: background 0.18s ease;
}

.icon-btn:hover {
  background: rgba(241, 245, 249, 0.5);
}

/* ===== FOOTER NAVIGATION ===== */
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
  padding-top: 10px;
  border-top: 1px solid var(--ww-border);
}

.footer-nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

.save-hint {
  font-size: 12px;
  color: var(--ww-muted);
}

/* Sticky footer on mobile */
@media (max-width: 767px) {
  .footer-nav {
    position: sticky;
    bottom: 10px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(230, 232, 238, 0.5);
    border-radius: 14px;
    padding: 10px;
    box-shadow: var(--ww-shadow-md);
  }
}

/* ===== OPTION CARDS ===== */
.option-card {
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 16px;
  min-height: 64px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  gap: var(--space-12);
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(251, 190, 21, 0.2);
}

.option-card:hover {
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.2);
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 107, 157, 0.4);
}

.option-card.selected {
  border: 2px solid transparent;
  background: transparent;
  box-shadow: 0 0 0 2px rgba(255, 107, 157, 0.3), 0 4px 20px rgba(240, 91, 53, 0.3);
  transform: scale(1.02);
  border: 2px solid rgba(255, 107, 157, 0.6);
}

.option-card__dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(15, 23, 42, 0.20);
  margin-top: 4px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}

.option-card__dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF6B9D, var(--ww-gold));
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.option-card.selected .option-card__dot {
  border-color: transparent;
  background: linear-gradient(135deg, #FF6B9D, var(--ww-gold));
  box-shadow: 0 0 12px rgba(255, 107, 157, 0.6), 0 0 0 3px rgba(255, 107, 157, 0.2);
}

.option-card.selected .option-card__dot::after {
  width: 6px;
  height: 6px;
  background: white;
}

.option-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  background: linear-gradient(135deg, var(--ww-orange), #E91E63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.option-card__desc {
  font-size: 13px;
  line-height: 18px;
  color: var(--ww-text-secondary);
  margin-top: 2px;
}

/* ===== TILES ===== */
.tile {
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 14px 16px;
  min-height: 56px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(102, 197, 139, 0.2);
}

.tile:hover {
  box-shadow: 0 4px 16px rgba(102, 197, 139, 0.2);
  transform: translateY(-2px);
  border-color: rgba(102, 197, 139, 0.4);
}

.tile.selected {
  border: 2px solid rgba(102, 197, 139, 0.6);
  background: transparent;
  box-shadow: 0 0 0 2px rgba(102, 197, 139, 0.2), 0 4px 16px rgba(102, 197, 139, 0.3);
}

.tile__check {
  opacity: 0;
  color: var(--ww-green);
  font-weight: 800;
  font-size: 18px;
  transition: opacity 0.18s ease;
}

.tile.selected .tile__check {
  opacity: 1;
}

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(230, 232, 238, 0.9);
}

.badge.success {
  background: rgba(102, 197, 139, 0.12);
  color: var(--ww-success);
  border-color: rgba(102, 197, 139, 0.3);
}

.badge.warn {
  background: #FFFBEB;
  color: var(--ww-warning);
  border-color: rgba(245, 158, 11, 0.3);
}

.badge.info {
  background: linear-gradient(135deg, rgba(251, 190, 21, 0.12), rgba(240, 91, 53, 0.12));
  color: var(--ww-orange);
  border-color: rgba(240, 91, 53, 0.3);
}

/* ===== ACCORDION ===== */
.accordion {
  border: 1px solid var(--ww-border);
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
}

.accordion__head {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.18s ease;
}

.accordion__head:hover {
  background: rgba(248, 250, 252, 0.5);
}

.accordion__title {
  font-size: 14px;
  font-weight: 700;
}

.accordion__body {
  padding: 14px;
  border-top: 1px solid var(--ww-border);
  display: none;
  background: transparent;
}

.accordion.open .accordion__body {
  display: block;
}

/* ===== NOTE BOX ===== */
.note {
  display: flex;
  gap: var(--space-12);
  align-items: flex-start;
  background: transparent;
  border: 1px solid var(--ww-border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--ww-shadow-sm);
}

.note__icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(251, 190, 21, 0.2), rgba(240, 91, 53, 0.2));
  flex-shrink: 0;
  font-size: 18px;
}

.note__text {
  font-size: 13px;
  line-height: 18px;
  color: var(--ww-text-secondary);
}

/* ===== TOASTS ===== */
.toasts {
  position: fixed;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
  pointer-events: none;
}

.toast {
  width: min(520px, 92vw);
  border-radius: 14px;
  box-shadow: var(--ww-shadow-md);
  border: 1px solid var(--ww-border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.3s ease;
  pointer-events: all;
}

.toast__row {
  display: flex;
  gap: var(--space-12);
  align-items: flex-start;
  padding: 12px 14px;
}

.toast__bar {
  width: 4px;
  align-self: stretch;
  border-radius: 2px;
}

.toast__title {
  font-size: 14px;
  font-weight: 800;
  line-height: 18px;
  margin: 0;
}

.toast__body {
  font-size: 13px;
  line-height: 18px;
  color: var(--ww-text-secondary);
  margin: 2px 0 0 0;
}

.toast.warn {
  background: #FFFBEB;
}

.toast.warn .toast__bar {
  background: var(--ww-warning);
}

.toast.error {
  background: #FFF1F2;
}

.toast.error .toast__bar {
  background: var(--ww-danger);
}

.toast.success {
  background: #ECFDF5;
}

.toast.success .toast__bar {
  background: var(--ww-success);
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 60;
}

.modal.open {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 92vw);
  margin: 10vh auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: var(--ww-shadow-lg);
  border: 1px solid var(--ww-border);
}

.modal__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: var(--space-16) var(--space-16) 0 var(--space-16);
}

.modal__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  margin-top: 4px;
}

.modal__body {
  padding: 14px var(--space-16) var(--space-16) var(--space-16);
}

.modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
}

/* ===== UTILITY CLASSES ===== */
.code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  background: rgba(241, 245, 249, 0.5);
  border: 1px solid var(--ww-border);
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 13px;
}

pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  background: rgba(248, 250, 252, 0.5);
  border: 1px solid var(--ww-border);
  padding: 12px;
  border-radius: 14px;
  overflow: auto;
  color: var(--ww-text);
  font-size: 12px;
  line-height: 1.5;
  max-height: 400px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

hr.sep {
  border: none;
  border-top: 1px solid var(--ww-border);
  margin: 6px 0;
}

.sub {
  font-size: 13px;
  line-height: 18px;
  color: var(--ww-text-secondary);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 640px) {
  .brand__logo {
    width: 40px;
    height: 40px;
  }

  .brand__name {
    font-size: 18px;
    line-height: 22px;
  }

  .brand__tag {
    font-size: 10px;
  }

  .topbar__actions {
    gap: 6px;
  }

  .card__heading {
    font-size: 22px;
    line-height: 28px;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--ww-orange);
  outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--ww-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--ww-orange), var(--ww-gold));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #d94d2a, #e0a912);
}

/* Selection color */
::selection {
  background: rgba(240, 91, 53, 0.2);
  color: var(--ww-text);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse-brand {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(240, 91, 53, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(240, 91, 53, 0);
  }
}

.btn--primary:active {
  animation: pulse-brand 0.6s ease-out;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading-shimmer {
  background: linear-gradient(
    90deg,
    rgba(251, 190, 21, 0.1) 0%,
    rgba(240, 91, 53, 0.2) 50%,
    rgba(251, 190, 21, 0.1) 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* ===== FOOTER ===== */
.site-footer {
  background: transparent;
  border-top: 1px solid rgba(240, 91, 53, 0.1);
  padding: 24px 0;
  margin-top: 40px;
}

.site-footer__content {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  text-align: center;
}

.site-footer__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.site-footer__text {
  font-size: 13px;
  line-height: 20px;
  color: var(--ww-text-secondary);
  margin: 0;
}

.site-footer__text strong {
  color: var(--ww-orange);
  font-weight: 700;
}

@media (max-width: 640px) {
  .site-footer__content {
    flex-direction: column;
    gap: 12px;
  }
  
  .site-footer__text {
    font-size: 12px;
    line-height: 18px;
  }
}
