/* ============================================================
   WEDDING INVITATION - style.css
   Mobile-first, elegant, lightweight
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --gold:       #C9A96E;
  --gold-light: #E8D5AA;
  --gold-dark:  #8B6914;
  --cream:      #FDF8F0;
  --cream-dark: #F5EDD8;
  --brown:      #3D2B1F;
  --brown-mid:  #6B4C35;
  --white:      #FFFFFF;
  --gray-light: #F8F8F8;
  --text-body:  #4A3728;
  --text-muted: #8B7355;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Plus Jakarta Sans', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 8px rgba(61,43,31,.08);
  --shadow-md:  0 8px 32px rgba(61,43,31,.12);
  --shadow-lg:  0 20px 60px rgba(61,43,31,.18);

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ─────────────────────────────────────────────── */
.font-serif { font-family: var(--font-serif); }
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.25; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--brown);
  text-align: center;
  margin-bottom: .5rem;
}
.section-subtitle {
  font-family: var(--font-sans);
  font-size: .875rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.ornament {
  display: flex; align-items: center; gap: 1rem;
  justify-content: center; margin-bottom: 1rem;
}
.ornament::before, .ornament::after {
  content: ''; flex: 1; max-width: 60px;
  height: 1px; background: var(--gold-light);
}
.ornament span { color: var(--gold); font-size: 1.25rem; }

/* ── Cover / Overlay Screen ─────────────────────────────────── */
#cover-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--brown);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  transition: opacity .8s ease, transform .8s ease;
}
#cover-screen.hidden {
  opacity: 0; pointer-events: none; transform: scale(1.04);
}
#cover-screen .cover-label {
  font-family: var(--font-sans);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
#cover-screen .cover-to {
  font-family: var(--font-sans);
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  margin-bottom: .25rem;
}
#cover-screen .cover-guest {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  color: var(--white);
  margin-bottom: 2.5rem;
  line-height: 1.3;
}
#cover-screen .cover-names {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: .5rem;
}
#cover-screen .cover-ampersand {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--gold-light);
  display: block;
}
#cover-screen .cover-date {
  font-family: var(--font-sans);
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
  margin-bottom: 3rem;
}
.btn-open {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .875rem 2.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: var(--radius-xl);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: .875rem;
  letter-spacing: .08em;
  cursor: pointer;
  transition: var(--transition);
}
.btn-open:hover, .btn-open:focus {
  background: var(--gold);
  color: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,.3);
}
.btn-open svg { width: 18px; height: 18px; }

/* ── Floating Music Player ──────────────────────────────────── */
#music-player {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 1000;
  background: var(--brown);
  border: 1px solid rgba(201,169,110,.3);
  border-radius: 50%; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
}
#music-player.visible { opacity: 1; pointer-events: auto; }
#music-player svg { width: 20px; height: 20px; color: var(--gold); }
#music-player.playing { animation: pulse-ring 2s ease-out infinite; }
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(201,169,110,.4); }
  70%  { box-shadow: 0 0 0 12px rgba(201,169,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
}

/* ── Sections Layout ─────────────────────────────────────────── */
section { padding: 5rem 1.5rem; }
.container { max-width: 680px; margin: 0 auto; }

/* ── Hero Section ────────────────────────────────────────────── */
#hero {
  background: var(--brown);
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 4rem 1.5rem;
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: .25;
}
.hero-content { position: relative; z-index: 1; }
.hero-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(.9rem, 2.5vw, 1.1rem);
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-quote cite {
  display: block; font-style: normal;
  font-size: .8rem; letter-spacing: .1em;
  color: var(--gold-light); margin-top: .75rem;
}
.hero-names {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 10vw, 5.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: .5rem;
}
.hero-names span.amp { color: var(--gold); display: block; font-size: .55em; }
.hero-date {
  font-family: var(--font-sans);
  font-size: .875rem;
  color: var(--gold-light);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: 1.5rem;
}

/* ── Couple Section ──────────────────────────────────────────── */
#couple { background: var(--cream); }
.couple-grid { display: grid; gap: 2.5rem; }
@media (min-width: 600px) { .couple-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.couple-card { text-align: center; }
.couple-photo-wrap {
  width: 160px; height: 160px; margin: 0 auto 1.25rem;
  border-radius: 50%; overflow: hidden;
  border: 3px solid var(--gold-light);
  box-shadow: var(--shadow-md);
}
.couple-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.couple-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--brown);
  margin-bottom: .25rem;
}
.couple-parents {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.couple-parents strong { font-weight: 500; color: var(--brown-mid); }
.couple-ig a {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--gold-dark);
  margin-top: .5rem; transition: var(--transition);
}
.couple-ig a:hover { color: var(--brown); }
.ampersand-divider {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  text-align: center;
  line-height: 1;
}

/* ── Countdown ────────────────────────────────────────────────── */
#countdown { background: var(--brown); padding: 4rem 1.5rem; }
#countdown .section-title { color: var(--white); }
#countdown .section-subtitle { color: rgba(255,255,255,.5); }
.countdown-grid {
  display: flex; justify-content: center; gap: 1rem;
  flex-wrap: wrap;
}
.countdown-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center; min-width: 80px;
}
.countdown-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--gold);
  line-height: 1;
  display: block;
}
.countdown-label {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: .35rem;
}

/* ── Events Section ──────────────────────────────────────────── */
#events { background: var(--cream-dark); }
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  border: 1px solid var(--cream-dark);
}
.event-icon { font-size: 2rem; margin-bottom: .75rem; }
.event-type {
  font-family: var(--font-sans);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: .5rem;
}
.event-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--brown);
  margin-bottom: 1rem;
}
.event-detail { font-size: .875rem; color: var(--text-muted); margin-bottom: .25rem; }
.event-detail strong { color: var(--text-body); font-weight: 500; }
.event-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.5rem; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .65rem 1.5rem;
  border-radius: var(--radius-xl); font-size: .8rem; font-family: var(--font-sans);
  font-weight: 500; letter-spacing: .04em; cursor: pointer; transition: var(--transition);
  border: none; }
.btn-primary { background: var(--brown); color: var(--white); }
.btn-primary:hover { background: var(--brown-mid); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; border: 1px solid var(--gold-light); color: var(--brown); }
.btn-outline:hover { background: var(--cream-dark); }
.btn svg { width: 16px; height: 16px; }

/* ── Love Story ──────────────────────────────────────────────── */
#love-story { background: var(--cream); }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute; left: .5rem; top: 0; bottom: 0;
  width: 1px; background: var(--gold-light);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-dot {
  position: absolute; left: -1.75rem; top: .2rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold-light);
}
.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-dark);
  font-weight: 600;
}
.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--brown);
  margin: .1rem 0 .4rem;
}
.timeline-story { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }

/* ── Gallery ─────────────────────────────────────────────────── */
#gallery { background: var(--cream-dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
@media (min-width: 480px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── Gift / Amplop ──────────────────────────────────────────── */
#gift { background: var(--cream); }
.gift-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.gift-bank-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.gift-bank-logo { width: 64px; height: auto; flex-shrink: 0; }
.gift-bank-name { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }
.gift-account-name { font-weight: 500; color: var(--brown); margin-top: .15rem; }
.gift-account-row { display: flex; align-items: center; gap: .75rem; }
.gift-number {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--brown);
  letter-spacing: .05em;
  flex: 1;
}
.btn-copy {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem;
  background: var(--cream-dark);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-xl);
  font-size: .75rem; font-family: var(--font-sans);
  color: var(--brown-mid); cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.btn-copy:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-copy svg { width: 14px; height: 14px; }
.qris-wrap { text-align: center; margin-top: 1.5rem; }
.qris-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.5rem;
  background: transparent;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-xl);
  font-size: .8rem; color: var(--brown-mid);
  cursor: pointer; transition: var(--transition);
}
.qris-toggle:hover { border-color: var(--gold); color: var(--brown); }
.qris-image-wrap { margin-top: 1rem; display: none; }
.qris-image-wrap.open { display: block; }
.qris-image-wrap img { max-width: 220px; margin: 0 auto; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }

/* ── Toast Notification ─────────────────────────────────────── */
.toast {
  position: fixed; bottom: 5rem; left: 50%; transform: translateX(-50%) translateY(12px);
  background: var(--brown); color: var(--white);
  padding: .65rem 1.5rem;
  border-radius: var(--radius-xl);
  font-size: .8rem;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 8000; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── RSVP & Wishes Section ──────────────────────────────────── */
#rsvp { background: var(--brown); padding: 5rem 1.5rem; }
#rsvp .section-title { color: var(--white); }
#rsvp .section-subtitle { color: rgba(255,255,255,.45); }
.rsvp-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  margin-bottom: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .775rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em; margin-bottom: .4rem;
}
.form-control {
  width: 100%; padding: .75rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,169,110,.25);
  border-radius: var(--radius-sm);
  color: var(--white); font-family: var(--font-sans); font-size: .9rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-control::placeholder { color: rgba(255,255,255,.25); }
.form-control:focus { border-color: var(--gold); }
textarea.form-control { resize: vertical; min-height: 90px; }
.attendance-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.attendance-label { display: flex; flex-direction: column; align-items: center; gap: .3rem;
  padding: .75rem .5rem; background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.2); border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition); font-size: .75rem;
  color: rgba(255,255,255,.6); text-align: center; }
.attendance-label input { display: none; }
.attendance-label:has(input:checked) {
  background: rgba(201,169,110,.2);
  border-color: var(--gold);
  color: var(--gold);
}
.attendance-emoji { font-size: 1.25rem; }
.btn-submit {
  width: 100%; padding: .875rem;
  background: var(--gold);
  border: none; border-radius: var(--radius-xl);
  font-family: var(--font-sans); font-size: .9rem; font-weight: 600;
  color: var(--brown); cursor: pointer;
  transition: var(--transition); margin-top: .5rem;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── Wishes Feed ─────────────────────────────────────────────── */
.wishes-feed { display: flex; flex-direction: column; gap: 1rem; }
.wish-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.15);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.wish-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.wish-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem; color: var(--white); flex-shrink: 0;
}
.wish-name { font-size: .875rem; font-weight: 500; color: var(--white); }
.wish-attendance { font-size: .7rem; color: var(--gold-light); margin-top: .1rem; }
.wish-message { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.65; }
.wish-time { font-size: .7rem; color: rgba(255,255,255,.3); margin-top: .5rem; }
.load-more-btn {
  display: block; width: 100%;
  padding: .7rem;
  background: transparent;
  border: 1px solid rgba(201,169,110,.25);
  border-radius: var(--radius-xl);
  color: rgba(255,255,255,.6);
  font-family: var(--font-sans); font-size: .8rem;
  cursor: pointer; transition: var(--transition); margin-top: 1rem;
}
.load-more-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--brown);
  border-top: 1px solid rgba(201,169,110,.15);
  padding: 3rem 1.5rem;
  text-align: center;
}
.footer-names {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: .5rem;
}
.footer-tagline {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.5rem;
}
.footer-credit { font-size: .7rem; color: rgba(255,255,255,.2); }

/* ── Fade-in Animations ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Scrollbar Custom ───────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 2px; }

/* ── Admin Styles (scoped by .admin-page class on body) ─────── */
.admin-page { background: var(--gray-light); font-family: var(--font-sans); }
.admin-header {
  background: var(--brown);
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.admin-header h1 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--gold); }
.admin-header a { font-size: .8rem; color: rgba(255,255,255,.5); }
.admin-header a:hover { color: var(--white); }
.admin-container { max-width: 900px; margin: 2rem auto; padding: 0 1.5rem; }
.admin-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; border-bottom: 1px solid #e0d8cc; }
.admin-tab {
  padding: .65rem 1.25rem; font-size: .875rem; font-weight: 500;
  color: var(--text-muted); cursor: pointer; border: none;
  background: transparent; border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: var(--transition);
}
.admin-tab.active { color: var(--brown); border-color: var(--gold); }
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 480px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.25rem; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--cream-dark);
}
.stat-number { font-family: var(--font-serif); font-size: 2rem; color: var(--brown); line-height: 1; }
.stat-label { font-size: .75rem; color: var(--text-muted); margin-top: .25rem; text-transform: uppercase; letter-spacing: .08em; }
.admin-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark); margin-bottom: 1.5rem;
}
.admin-card h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--brown); margin-bottom: 1rem; }
.data-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.data-table th {
  text-align: left; padding: .65rem .75rem;
  font-size: .7rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted);
  border-bottom: 1px solid var(--cream-dark);
}
.data-table td { padding: .75rem; border-bottom: 1px solid var(--cream-dark); color: var(--text-body); vertical-align: top; }
.data-table tr:last-child td { border-bottom: none; }
.badge {
  display: inline-block; padding: .2rem .6rem;
  border-radius: var(--radius-xl); font-size: .7rem; font-weight: 500;
}
.badge-hadir    { background: #d1fae5; color: #065f46; }
.badge-tidak    { background: #fee2e2; color: #991b1b; }
.badge-mungkin  { background: #fef9c3; color: #854d0e; }
.wa-input-area {
  width: 100%; padding: .75rem 1rem;
  border: 1px solid var(--cream-dark); border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: .85rem; color: var(--text-body);
  min-height: 120px; resize: vertical; outline: none;
}
.wa-input-area:focus { border-color: var(--gold); }
.wa-help { font-size: .775rem; color: var(--text-muted); margin-top: .5rem; line-height: 1.5; }
.wa-results { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.wa-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1rem;
  background: var(--gray-light); border-radius: var(--radius-sm);
  flex-wrap: wrap;
}
.wa-item-name { flex: 1; font-size: .875rem; font-weight: 500; }
.wa-item-phone { font-size: .775rem; color: var(--text-muted); }
.btn-wa {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem;
  background: #25D366; color: var(--white);
  border: none; border-radius: var(--radius-xl);
  font-size: .775rem; font-weight: 500;
  cursor: pointer; text-decoration: none; transition: var(--transition);
  white-space: nowrap;
}
.btn-wa:hover { background: #128C7E; }
.btn-wa svg { width: 14px; height: 14px; }
.btn-export {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.25rem;
  background: var(--brown); color: var(--white);
  border: none; border-radius: var(--radius-xl);
  font-size: .8rem; cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.btn-export:hover { background: var(--brown-mid); }
.login-wrapper {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  background: var(--brown);
}
.login-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  width: 100%; max-width: 360px;
  text-align: center;
}
.login-title { font-family: var(--font-serif); font-size: 1.75rem; color: var(--gold); margin-bottom: .5rem; }
.login-sub { font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 2rem; }
.login-box .form-control { margin-bottom: 1rem; }
.alert-error {
  background: rgba(220,38,38,.15); border: 1px solid rgba(220,38,38,.3);
  color: #fca5a5; padding: .65rem 1rem;
  border-radius: var(--radius-sm); font-size: .8rem; margin-bottom: 1rem;
}
