/* =============================================================
   DESIVIZE — Master Stylesheet
   Palette: Ateneo Blue #003A6B · Gold #C8891A · White #FFFFFF
   Font: Hind Siliguri (Bengali-flavoured) + Playfair Display (headings)
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --blue:        #003A6B;
  --blue-mid:    #004f8f;
  --blue-light:  #e8f0f8;
  --blue-xlight: #f0f5fb;
  --gold:        #C8891A;
  --gold-light:  #f5e6c8;
  --white:       #ffffff;
  --off-white:   #fafaf8;
  --text:        #1a1a2e;
  --text-muted:  #5a6275;
  --text-light:  #8a94a6;
  --border:      #dce4ef;
  --border-dark: #b8c7d8;
  --success:     #1a7a4a;
  --success-bg:  #e8f5ee;
  --error:       #c0392b;
  --error-bg:    #fdecea;
  --warning:     #b7770d;
  --warning-bg:  #fef5e4;
  --shadow-sm:   0 1px 4px rgba(0,58,107,.08);
  --shadow-md:   0 4px 16px rgba(0,58,107,.12);
  --shadow-lg:   0 8px 32px rgba(0,58,107,.16);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --font-body:   'Hind Siliguri', sans-serif;
  --font-head:   'Playfair Display', Georgia, serif;
  --nav-h:       64px;
  --bottom-nav:  64px;
  --transition:  .22s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--off-white);
  padding-bottom: var(--bottom-nav);
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--blue); text-decoration: none; }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.25; color: var(--blue); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: .85rem; }
.lead { font-size: 1.1rem; color: var(--text-muted); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--blue);
  margin-bottom: .25rem;
}
.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: .95rem;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px)  { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

.section { padding: 48px 0; }
@media (min-width: 768px) { .section { padding: 72px 0; } }

/* ── Buttons ─────────────────────────────────────────────────  */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .93rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #a8720e;
  border-color: #a8720e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--blue-light); color: var(--blue); }
.btn-sm { padding: 7px 16px; font-size: .85rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-full { width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--blue);
  height: var(--nav-h);
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.navbar-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 12px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.navbar-brand:hover { color: var(--gold); }
.navbar-brand .brand-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}
.navbar-nav {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
@media (min-width: 768px) { .navbar-nav { display: flex; } }
.navbar-nav a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: #fff;
  background: rgba(255,255,255,.15);
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
@media (min-width: 768px) { .navbar-actions { margin-left: 16px; } }
.nav-icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.9);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  font-size: 1.3rem;
}
.nav-icon-btn:hover { background: rgba(255,255,255,.15); color: #fff; }
.nav-badge {
  position: absolute; top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  line-height: 1;
}
.navbar-search {
  flex: 1;
  max-width: 400px;
  display: none;
}
@media (min-width: 900px) { .navbar-search { display: block; } }
.navbar-search form {
  display: flex;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background var(--transition);
}
.navbar-search form:focus-within {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
}
.navbar-search input {
  background: none;
  border: none;
  color: #fff;
  padding: 8px 14px;
  flex: 1;
  outline: none;
  font-size: .9rem;
}
.navbar-search input::placeholder { color: rgba(255,255,255,.55); }
.navbar-search button {
  padding: 8px 12px;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
}
.navbar-search button:hover { color: #fff; }

/* ── Bottom Nav (mobile) ─────────────────────────────────────── */
.bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--blue);
  height: var(--bottom-nav);
  border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 -2px 16px rgba(0,0,0,.2);
}
@media (min-width: 768px) { .bottom-nav { display: none; } }
.bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .65rem;
  font-weight: 500;
  gap: 3px;
  transition: color var(--transition);
  position: relative;
}
.bottom-nav a .bnav-icon { font-size: 1.35rem; line-height: 1; }
.bottom-nav a.active { color: var(--gold); }
.bottom-nav a:hover  { color: #fff; }
.bottom-nav .bnav-badge {
  position: absolute; top: 6px; right: calc(50% - 16px);
  min-width: 16px; height: 16px;
  background: var(--gold);
  color: #fff; font-size: 10px; font-weight: 700;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.card-body { padding: 20px; }

/* ── Product Card ────────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.product-card-img {
  position: relative;
  padding-top: 120%;
  overflow: hidden;
  background: var(--blue-xlight);
}
.product-card-img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 5px;
}
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.badge-sale    { background: var(--error); color: #fff; }
.badge-new     { background: var(--gold);  color: #fff; }
.badge-digital { background: var(--blue);  color: #fff; }
.badge-out     { background: var(--text-muted); color: #fff; }
.product-card-wish {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text-muted);
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.product-card-wish:hover, .product-card-wish.active { color: #e74c3c; }
.product-card-body { padding: 14px 16px 16px; }
.product-card-cat { font-size: .72rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.product-card-name {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  margin: 4px 0 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-price { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.price-sale   { font-size: 1.05rem; font-weight: 700; color: var(--blue); }
.price-orig   { font-size: .85rem; color: var(--text-light); text-decoration: line-through; }
.price-single { font-size: 1.05rem; font-weight: 700; color: var(--blue); }
.price-off    { font-size: .72rem; font-weight: 700; color: var(--error); background: var(--error-bg); padding: 2px 6px; border-radius: 4px; }
.product-card-stars { font-size: .8rem; color: var(--gold); margin-bottom: 10px; }
.product-card-stars span { color: var(--text-light); font-size: .75rem; margin-left: 3px; }
.product-card-action .btn { font-size: .83rem; padding: 8px 0; }

/* ── Product Grid ────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px)  { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 900px)  { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; } }
@media (min-width: 1200px) { .product-grid { grid-template-columns: repeat(5, 1fr); } }

/* ── Hero Slider ─────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  min-height: 420px;
}
@media (min-width: 768px) { .hero { min-height: 520px; } }
.hero-slide {
  display: none;
  position: relative;
  min-height: inherit;
  align-items: center;
}
.hero-slide.active { display: flex; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,58,107,.82) 0%, rgba(0,58,107,.45) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 60px 0;
  max-width: 580px;
}
.hero-label {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-subtitle { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-dots {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ── Category Strip ─────────────────────────────────────────── */
.cat-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.cat-strip::-webkit-scrollbar { display: none; }
.cat-chip {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: .85rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}
.cat-chip:hover, .cat-chip.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.cat-chip img { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; }

/* ── Forms ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-label .req { color: var(--error); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text);
  font-size: .93rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,58,107,.1);
}
.form-control.error { border-color: var(--error); }
.form-control::placeholder { color: var(--text-light); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6275' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-hint  { font-size: .8rem; color: var(--text-light); margin-top: 4px; }
.form-error { font-size: .8rem; color: var(--error); margin-top: 4px; }
.form-row { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }

/* ── Flash Messages ──────────────────────────────────────────── */
.flash {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: .9rem;
  margin-bottom: 16px;
  position: relative;
}
.flash span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.flash button { margin-left: auto; opacity: .5; font-size: .85rem; }
.flash button:hover { opacity: 1; }
.flash-success { background: var(--success-bg); color: var(--success); border: 1px solid #b2dfcc; }
.flash-error   { background: var(--error-bg);   color: var(--error);   border: 1px solid #f5c2bb; }
.flash-info    { background: var(--blue-light);  color: var(--blue);   border: 1px solid var(--border-dark); }

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .83rem; color: var(--text-muted);
  padding: 16px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-sep { opacity: .4; }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* ── Pagination ──────────────────────────────────────────────── */
.pagination {
  display: flex; align-items: center; gap: 6px;
  justify-content: center; padding: 32px 0 16px;
  flex-wrap: wrap;
}
.pg-btn {
  min-width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: .88rem;
  font-weight: 500;
  transition: all var(--transition);
}
.pg-btn:hover { border-color: var(--blue); color: var(--blue); }
.pg-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ── Stars ───────────────────────────────────────────────────── */
.stars { color: var(--gold); letter-spacing: .05em; }

/* ── Section Divider ─────────────────────────────────────────── */
.divider {
  display: flex; align-items: center; gap: 16px;
  margin: 24px 0; color: var(--text-light); font-size: .85rem;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* ── Quantity Input ──────────────────────────────────────────── */
.qty-input {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-xlight);
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 700;
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--blue-light); }
.qty-input input {
  width: 48px; height: 36px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: .93rem; font-weight: 600;
  outline: none;
  background: var(--white);
  color: var(--text);
}

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--blue);
  color: rgba(255,255,255,.75);
  padding: 48px 0 0;
  margin-top: 48px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  padding-bottom: 40px;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 10px;
}
.footer-tagline { font-size: .85rem; margin-bottom: 20px; opacity: .7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-col-title {
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Category Cards (homepage) ───────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 900px) { .cat-grid { grid-template-columns: repeat(7, 1fr); } }
.cat-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 8px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1.5px solid var(--border);
  text-align: center;
  transition: all var(--transition);
  gap: 8px;
}
.cat-card:hover {
  border-color: var(--blue);
  background: var(--blue-xlight);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cat-card-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  overflow: hidden;
  flex-shrink: 0;
}
.cat-card-icon img { width: 100%; height: 100%; object-fit: cover; }
.cat-card-name {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

/* ── Promo Banner Strip ───────────────────────────────────────── */
.promo-strip {
  background: var(--gold);
  color: #fff;
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 16px;
  letter-spacing: .04em;
}
.promo-strip a { color: #fff; text-decoration: underline; }

/* ── Toast Notification ─────────────────────────────────────── */
#toast-container {
  position: fixed; bottom: calc(var(--bottom-nav) + 12px); right: 16px;
  z-index: 9999; display: flex; flex-direction: column; gap: 8px;
}
@media (min-width: 768px) { #toast-container { bottom: 20px; } }
.toast {
  background: var(--text);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: .88rem;
  box-shadow: var(--shadow-lg);
  animation: toastIn .25s ease forwards;
  max-width: 300px;
}
.toast.success { background: var(--success); }
.toast.error   { background: var(--error);   }
@keyframes toastIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
@keyframes toastOut { to { opacity:0; transform:translateY(12px); } }

/* ── Utility ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-muted  { color: var(--text-muted); }
.text-gold   { color: var(--gold); }
.text-blue   { color: var(--blue); }
.text-sm     { font-size: .85rem; }
.text-xs     { font-size: .75rem; }
.fw-600      { font-weight: 600; }
.fw-700      { font-weight: 700; }
.mt-1 { margin-top: 8px;  } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px;  } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.d-flex { display: flex; } .align-center { align-items: center; } .gap-2 { gap: 16px; }
.w-100  { width: 100%; }
.hidden { display: none !important; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

/* ── Skeleton Loader ─────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { 0% { background-position:200% 0; } 100% { background-position:-200% 0; } }

/* ── Mobile Search Bar ───────────────────────────────────────── */
.mobile-search {
  display: block;
  padding: 10px 16px;
  background: var(--blue-mid);
}
@media (min-width: 900px) { .mobile-search { display: none; } }
.mobile-search form {
  display: flex;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.mobile-search input {
  background: none; border: none; color: #fff;
  padding: 9px 14px; flex: 1; outline: none; font-size: .9rem;
}
.mobile-search input::placeholder { color: rgba(255,255,255,.5); }
.mobile-search button { padding: 9px 14px; color: rgba(255,255,255,.7); font-size: 1.1rem; }
