/* style.css — GoaBoats Global Styles */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,600&family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
  --cream:    #FFFBF4;
  --white:    #FFFFFF;
  --coral:    #FF6B47;
  --coral-lt: #FFEDE8;
  --teal:     #00B8AD;
  --teal-lt:  #E0F7F6;
  --yellow:   #FFB800;
  --yellow-lt:#FFF6D6;
  --mint:     #34C98A;
  --mint-lt:  #E3F9EE;
  --lavender: #8B6FE8;
  --lav-lt:   #EEE9FF;
  --pink:     #FF6B9D;
  --pink-lt:  #FFE8F3;
  --ink:      #1C1B2E;
  --ink2:     #3D3C52;
  --muted:    #7C7D8C;
  --border:   #EBEBF0;
  --shadow:   0 4px 24px rgba(28,27,46,0.08);
  --shadow-lg:0 12px 48px rgba(28,27,46,0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
  font-size: 0.92rem;
  max-width: 100%;
}

/* Prevent any element from breaking page width */
img, video, iframe { max-width: 100%; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 3px; }

/* ── PROMO BANNER ── */
.promo {
  background: linear-gradient(90deg, var(--coral), #FF8C6B, var(--yellow), var(--mint), var(--teal));
  background-size: 300%;
  animation: grad 5s ease infinite;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
@keyframes grad { 0%,100%{background-position:0%} 50%{background-position:100%} }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99000;
  background: rgba(255,251,244,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 62px; padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
  /* NO overflow:hidden here — that would clip the user dropdown */
}
.nav-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.nav-logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--coral), var(--yellow));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(255,107,71,0.3);
}
.nav-logo-text { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.nav-logo-text span { color: var(--coral); }

.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 700;
  color: var(--ink2); text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  border-radius: 2px; transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--coral); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; gap: 0.6rem; align-items: center; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 5px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; top: 62px; left: 0; right: 0; z-index: 999;
  background: rgba(255,251,244,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.4rem;
  flex-direction: column; gap: 0;
  max-height: calc(100vh - 62px);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.95rem; font-weight: 700;
  color: var(--ink2); text-decoration: none;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--coral); }
/* Divider line in mobile nav */
.mobile-nav .mn-div { height: 1px; background: var(--border); margin: 0.3rem 0; }
/* Action buttons in mobile nav */
.mobile-nav .mn-actions { display: flex; gap: 0.5rem; padding-top: 0.8rem; margin-top: 0.2rem; }
.mobile-nav .mn-actions .btn-primary,
.mobile-nav .mn-actions .btn-ghost { flex: 1; justify-content: center; font-size: 0.85rem; }

/* ── BUTTONS ── */
.btn-ghost {
  padding: 0.45rem 1.1rem;
  border: 2px solid var(--border); border-radius: 100px;
  background: transparent; color: var(--ink2);
  font-family: 'Nunito', sans-serif; font-size: 0.82rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }

.btn-primary {
  padding: 0.55rem 1.4rem;
  background: var(--coral); border: none; border-radius: 100px;
  color: #fff;
  font-family: 'Nunito', sans-serif; font-size: 0.85rem; font-weight: 800;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  box-shadow: 0 4px 14px rgba(255,107,71,0.35);
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,107,71,0.45); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-teal {
  padding: 0.55rem 1.4rem;
  background: var(--teal); border: none; border-radius: 100px;
  color: #fff; font-family: 'Nunito', sans-serif; font-size: 0.85rem; font-weight: 800;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.btn-teal:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ── SECTION COMMONS ── */
.section-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.32rem 0.9rem; border-radius: 100px;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.chip-coral  { background: var(--coral-lt); color: var(--coral); }
.chip-teal   { background: var(--teal-lt);  color: var(--teal); }
.chip-mint   { background: var(--mint-lt);  color: var(--mint); }
.chip-lav    { background: var(--lav-lt);   color: var(--lavender); }
.chip-yellow { background: var(--yellow-lt);color: #B87900; }

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600; line-height: 1.2;
  letter-spacing: -0.01em; color: var(--ink);
}
.section-title em { font-style: italic; font-weight: 300; color: var(--coral); }

/* ── CRUISE CARDS ── */
.cruise-card {
  background: #fff; border-radius: 22px; overflow: visible;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  cursor: pointer; position: relative;
}
/* clip only the image area */
.cruise-card > .card-img-wrap { border-radius: 22px 22px 0 0; overflow: hidden; }
.cruise-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-img-wrap { position: relative; height: 200px; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; background: #f0ece4; }
.cruise-card:hover .card-img-wrap img { transform: scale(1.08); }
.card-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 50%,rgba(28,27,46,0.35) 100%); }
.card-badge {
  position: absolute; top: 0.9rem; left: 0.9rem;
  padding: 0.25rem 0.75rem; border-radius: 100px;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.badge-new      { background: var(--mint);    color: #fff; }
.badge-popular  { background: var(--coral);   color: #fff; }
.badge-family   { background: var(--yellow);  color: #fff; }
.badge-luxury   { background: var(--lavender);color: #fff; }
.badge-sunset   { background: linear-gradient(135deg,#FF9A3C,#FF6B47); color: #fff; }
.card-fav {
  position: absolute; top: 0.9rem; right: 0.9rem;
  width: 30px; height: 30px; background: rgba(255,255,255,0.9);
  border-radius: 50%; border: none; display: flex; align-items: center;
  justify-content: center; font-size: 0.85rem; cursor: pointer;
  transition: all 0.2s; backdrop-filter: blur(4px);
}
.card-fav:hover { background: #fff; transform: scale(1.15); }
.card-duration {
  position: absolute; bottom: 0.7rem; right: 0.9rem;
  background: rgba(255,255,255,0.88); padding: 0.2rem 0.65rem;
  border-radius: 100px; font-size: 0.72rem; font-weight: 700;
  color: var(--ink); backdrop-filter: blur(8px);
}
.card-body { padding: 1.2rem 1.3rem 1.3rem; }
.card-operator { font-size: 0.68rem; font-weight: 800; color: var(--coral); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.2rem; }
.card-name { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; line-height: 1.2; color: var(--ink); margin-bottom: 0.5rem; }
.card-rating { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.7rem; }
.stars { font-size: 0.8rem; letter-spacing: 0.04em; color: var(--yellow); }
.rating-num { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.card-pills { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1rem; }
.pill { padding: 0.22rem 0.65rem; border-radius: 100px; font-size: 0.7rem; font-weight: 700; }
.card-footer {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-top: 0.9rem; border-top: 1px solid var(--border);
  gap: 0.5rem; flex-wrap: nowrap; min-width: 0; overflow: visible;
}
.card-price-block { min-width: 0; flex-shrink: 0; line-height: 1.3; }
.price-from { font-size: 0.65rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.price-amount { font-family: 'Fraunces', serif; font-size: 1.45rem; font-weight: 700; color: var(--ink); line-height: 1; white-space: nowrap; }
.price-per { font-size: 0.7rem; color: var(--muted); font-weight: 600; }
.book-btn {
  padding: 0.6rem 1.2rem; background: var(--coral); border: none;
  border-radius: 11px; color: #fff; font-family: 'Nunito', sans-serif;
  font-size: 0.8rem; font-weight: 800; cursor: pointer; transition: all 0.3s;
  display: flex; align-items: center; gap: 0.3rem;
  box-shadow: 0 4px 12px rgba(255,107,71,0.3);
}
.book-btn:hover { box-shadow: 0 6px 18px rgba(255,107,71,0.45); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--ink); color: rgba(255,255,255,0.8);
  margin-top: 5rem;
}
.footer-inner { max-width: 1380px; margin: 0 auto; padding: 3rem 2.5rem 1.5rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.ft-brand .logo-text { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.8rem; }
.ft-brand .logo-text span { color: var(--coral); }
.ft-tagline { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 1.2rem; }
.ft-social { display: flex; gap: 0.6rem; }
.soc-btn {
  width: 34px; height: 34px; background: rgba(255,255,255,0.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; text-decoration: none; transition: background 0.2s;
}
.soc-btn:hover { background: rgba(255,107,71,0.3); }
.fc h4 { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-bottom: 1rem; }
.fc ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.fc ul a { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.fc ul a:hover { color: var(--coral); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem; display: flex;
  align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.ft-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.ft-payments { display: flex; align-items: center; gap: 0.5rem; }
.pay-badge {
  padding: 0.2rem 0.55rem; background: rgba(255,255,255,0.08);
  border-radius: 5px; font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.4);
}

/* ── TOAST ── */
.toast-container {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.toast {
  padding: 0.75rem 1.2rem;
  border-radius: 12px; font-size: 0.85rem; font-weight: 700;
  color: #fff; box-shadow: var(--shadow-lg);
  animation: toast-in 0.3s ease;
  display: flex; align-items: center; gap: 0.6rem;
  min-width: 240px; max-width: 340px;
}
.toast.success { background: var(--mint); }
.toast.error   { background: var(--coral); }
.toast.info    { background: var(--teal); }
.toast.warning { background: var(--yellow); color: var(--ink); }
@keyframes toast-in { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.form-control {
  width: 100%; padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border); border-radius: 10px;
  background: #fff; font-family: 'Nunito', sans-serif; font-size: 0.88rem; color: var(--ink);
  outline: none; transition: border-color 0.2s;
}
.form-control:focus { border-color: var(--coral); }
.form-control.error { border-color: var(--coral); }

/* ── MARQUEE ── */
.marquee-strip {
  background: #fff; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0; overflow: hidden;
}
.marquee-track { display: flex; gap: 3rem; animation: marquee 22s linear infinite; white-space: nowrap; }
.marquee-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 800; color: var(--ink2);
  text-transform: uppercase; letter-spacing: 0.07em; flex-shrink: 0;
}
.m-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── PAGE CONTAINER ── */
.page-container { max-width: 1280px; margin: 0 auto; padding: 5rem 2.5rem 4rem; }
.page-title { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 600; margin-bottom: 0.3rem; }
.page-title em { font-style: italic; font-weight: 300; color: var(--coral); }
.page-sub { font-size: 0.88rem; color: var(--muted); font-weight: 600; margin-bottom: 2rem; }

/* ── FILTER TABS ── */
.filter-wrap {
  overflow-x: auto; overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 0.25rem;
}
.filter-wrap::-webkit-scrollbar { display: none; }
.filter-tabs { display: flex; gap: 0.4rem; background: #fff; border: 1px solid var(--border); border-radius: 100px; padding: 0.25rem; box-shadow: var(--shadow); }
.filter-wrap .filter-tabs { flex-wrap: nowrap; width: max-content; min-width: 100%; }
.ftab { padding: 0.42rem 1rem; border: none; border-radius: 100px; background: transparent; font-family: 'Nunito', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--muted); cursor: pointer; transition: all 0.25s; white-space: nowrap; }
.ftab.active { background: var(--coral); color: #fff; box-shadow: 0 3px 10px rgba(255,107,71,0.35); }

/* ── STAR RATING ── */
.star-rating { display: flex; gap: 0.2rem; }
.star-rating .star { font-size: 1.2rem; color: var(--border); cursor: pointer; transition: color 0.15s; }
.star-rating .star.filled, .star-rating .star:hover { color: var(--yellow); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — COMPREHENSIVE MOBILE FIX
   ═══════════════════════════════════════════════════ */

/* ── Tablet (≤900px) ── */
@media (max-width: 900px) {
  nav { padding: 0 1.2rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .page-container { padding: 4.5rem 1.2rem 3rem; }
}

/* ── Mobile (≤600px) ── */
@media (max-width: 600px) {
  /* NAV */
  nav { height: 56px; padding: 0 1rem; }
  .nav-actions .btn-ghost { display: none; } /* hide extra ghost on tiny screens */
  .promo { font-size: 0.7rem; padding: 0.4rem 0.5rem; }

  /* CARDS — fix card-footer so price + button never overflow */
  .card-footer { flex-wrap: wrap; gap: 0.6rem; }
  .card-footer > div { flex: 1; min-width: 0; }
  .book-btn { width: 100%; justify-content: center; margin-top: 0.2rem; }
  .card-img-wrap { height: 185px; }
  .card-name { font-size: 1.15rem; }
  .price-amount { font-size: 1.35rem; }

  /* FILTER TABS — scrollable pill strip on mobile */
  .filter-tabs {
    border-radius: 100px; overflow-x: auto; overflow-y: hidden;
    flex-wrap: nowrap; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding: 0.2rem;
  }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .ftab { white-space: nowrap; font-size: 0.75rem; padding: 0.38rem 0.85rem; }

  /* FOOTER */
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-inner { padding: 2rem 1.2rem 1.2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.6rem; }

  /* PAGE CONTAINERS */
  .page-container { padding: 4rem 1rem 3rem; }

  /* TOAST on mobile — full width bottom */
  .toast-container { bottom: 1rem; right: 0.5rem; left: 0.5rem; }
  .toast { min-width: 0; width: 100%; max-width: 100%; font-size: 0.82rem; }

  /* STEPPER — compact */
  .step-line { min-width: 20px; }
  .step-node { font-size: 0.62rem; }
  .step-num { width: 26px; height: 26px; font-size: 0.75rem; }

  /* BUTTONS — comfortable tap targets */
  .btn-primary, .btn-ghost { padding: 0.6rem 1.1rem; font-size: 0.82rem; }
}

/* ── Small mobile (≤400px) ── */
@media (max-width: 400px) {
  .card-name { font-size: 1.05rem; }
  .nav-actions > a:not(:last-child) { display: none; }
}

/* ── WhatsApp float button (global) ── */
.wa-float { position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 990; }
.wa-float a {
  display: flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: #fff;
  padding: 0.75rem 1.2rem; border-radius: 100px; font-weight: 800;
  font-size: 0.88rem; text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all 0.25s; white-space: nowrap;
}
.wa-float a:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
.wa-float-text { display: inline; }
@media (max-width: 600px) {
  .wa-float { bottom: 1.2rem; right: 1.2rem; }
  .wa-float a { padding: 0.75rem; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .wa-float-text { display: none; }
  .wa-float-icon { font-size: 1.4rem; }
}

/* ── ADMIN LAYOUT ── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 220px; flex-shrink: 0;
  background: var(--ink); padding: 1.5rem 0;
  position: fixed; top: 0; bottom: 0; left: 0; z-index: 100;
  overflow-y: auto;
}
.admin-sidebar .sidebar-logo {
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1rem;
}
.admin-sidebar .sidebar-logo .logo-text { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 700; color: #fff; }
.admin-sidebar .sidebar-logo .logo-text span { color: var(--coral); }
.sidebar-nav { list-style: none; padding: 0 0.75rem; }
.sidebar-nav li a {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.65rem 0.9rem; border-radius: 10px;
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 0.84rem; font-weight: 700; transition: all 0.2s;
  margin-bottom: 0.2rem;
}
.sidebar-nav li a:hover, .sidebar-nav li a.active {
  background: rgba(255,255,255,0.08); color: #fff;
}
.sidebar-nav li a.active { background: rgba(255,107,71,0.2); color: var(--coral); }
.sidebar-nav li a .nav-icon { font-size: 1rem; width: 20px; text-align: center; }

.admin-main { margin-left: 220px; flex: 1; padding: 2rem 2.5rem; background: var(--cream); min-height: 100vh; }
.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.admin-topbar h1 { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 600; }
.admin-topbar h1 em { font-style: italic; font-weight: 300; color: var(--coral); }

.stat-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); gap: 1.2rem; margin-bottom: 2rem; }
.stat-card {
  background: #fff; border-radius: 18px; padding: 1.3rem 1.5rem;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.stat-card .sc-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.5rem; }
.stat-card .sc-val { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; color: var(--ink); line-height: 1; }
.stat-card .sc-sub { font-size: 0.75rem; color: var(--mint); font-weight: 700; margin-top: 0.3rem; }

.admin-card {
  background: #fff; border-radius: 18px; padding: 1.5rem;
  border: 1px solid var(--border); box-shadow: var(--shadow); margin-bottom: 1.5rem;
}
.admin-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem;
}
.admin-card-header h3 { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 600; }

@media (max-width: 900px) {
  .admin-sidebar { width: 200px; }
  .admin-main { margin-left: 200px; padding: 1.5rem; }
}
@media (max-width: 700px) {
  .admin-layout { flex-direction: column; }
  .admin-sidebar { position: static; width: 100%; padding: 1rem; }
  .admin-main { margin-left: 0; padding: 1.2rem; }
}

/* ── Utility classes ─────────────────────────────── */
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.text-muted { color: var(--muted); }
.d-flex { display: flex; }
.gap-1  { gap: 0.4rem; }
.gap-2  { gap: 0.8rem; }
.mb-0   { margin-bottom: 0; }
.mb-2   { margin-bottom: 0.6rem; }
.mb-3   { margin-bottom: 1rem; }
.p-2    { padding: 0.6rem; }
.p-3    { padding: 1rem; }
.small  { font-size: 0.78rem; }

/* ── Form input (standalone, no .form-group) ─────── */
.form-input {
  width: 100%; padding: 0.6rem 0.9rem;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Nunito', sans-serif; font-size: 0.88rem; outline: none;
  background: #fff; color: var(--ink); transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-input:focus { border-color: var(--coral); }

/* ── Checkout stepper ────────────────────────────── */
.step-node {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.3rem; font-size: 0.72rem; font-weight: 800;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em;
}
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: var(--muted);
}
.step-node.active .step-num  { border-color: var(--coral); background: var(--coral); color: #fff; }
.step-node.active            { color: var(--coral); }
.step-node.done .step-num    { border-color: var(--mint); background: var(--mint); color: #fff; }
.step-node.done              { color: var(--mint); }
.step-line {
  flex: 1; height: 2px; background: var(--border);
  min-width: 40px; margin-bottom: 16px;
}
.step-line.done { background: var(--mint); }

/* ── Bootstrap-like row/col (minimal, no full BS needed) */
.row    { display: flex; flex-wrap: wrap; margin: -0.5rem; }
.row.g-3 > * { padding: 0.5rem; box-sizing: border-box; }
.col-12  { width: 100%; }
.col-6   { width: 50%; }
.col-md-3 { width: 100%; }
.col-lg-4 { width: 100%; }
.col-lg-6 { width: 100%; }
.col-lg-8 { width: 100%; }
@media(min-width:576px){ .col-6{width:50%;} }
@media(min-width:768px){ .col-md-3{width:25%;} }
@media(min-width:992px){ .col-lg-4{width:33.333%;} .col-lg-6{width:50%;} .col-lg-8{width:66.666%;} }

/* ── Alert info ──────────────────────────────────── */
.alert { padding: 0.75rem 1rem; border-radius: 10px; font-size: 0.83rem; }
.alert-info { background: #e8f4fd; border: 1px solid #b8dcf8; color: #1a6fa8; }
