/* StyleHub — Complete CSS (replicates the Next.js Tailwind theme) */
/* Rose/Orange/Amber color scheme, responsive, modern */

/* ===== CSS Reset & Variables ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose-50: #fff1f2; --rose-100: #ffe4e6; --rose-200: #fecdd3; --rose-300: #fda4af;
  --rose-400: #fb7185; --rose-500: #f43f5e; --rose-600: #e11d48; --rose-700: #be123c;
  --rose-800: #9f1239; --rose-900: #881337;
  --orange-100: #ffedd5; --orange-200: #fed7aa; --orange-300: #fdba74; --orange-400: #fb923c;
  --orange-500: #f97316; --orange-600: #ea580c; --orange-700: #c2410c;
  --amber-100: #fef3c7; --amber-200: #fde68a; --amber-500: #f59e0b; --amber-600: #d97706; --amber-700: #b45309;
  --emerald-100: #d1fae5; --emerald-500: #10b981; --emerald-600: #059669; --emerald-700: #047857;
  --blue-100: #dbeafe; --blue-700: #1d4ed8;
  --purple-100: #f3e8ff; --purple-700: #7e22ce;
  --red-100: #fee2e2; --red-600: #dc2626; --red-700: #b91c1c;
  --gray-50: #f9fafb; --gray-100: #f3f4f6; --gray-200: #e5e7eb; --gray-300: #d1d5db;
  --gray-400: #9ca3af; --gray-500: #6b7280; --gray-600: #4b5563; --gray-700: #374151; --gray-800: #1f2937; --gray-900: #111827;
  --white: #ffffff;
  --bg: #ffffff; --text: #1a1a1a; --muted: #6b7280; --border: #e5e7eb;
  --radius: 0.625rem; --radius-lg: 1rem; --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== Layout ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; } .gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; } .gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.hidden { display: none; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-auto { margin-top: auto; }
.mb-2 { margin-bottom: 0.5rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; }
.p-4 { padding: 1rem; } .p-6 { padding: 1.5rem; } .p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; } .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; } .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

/* ===== Typography ===== */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: 2rem; } h2 { font-size: 1.5rem; } h3 { font-size: 1.25rem; } h4 { font-size: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.text-muted { color: var(--muted); }
.text-rose-600 { color: var(--rose-600); } .text-rose-700 { color: var(--rose-700); }
.text-orange-600 { color: var(--orange-600); }
.text-emerald-600 { color: var(--emerald-600); } .text-emerald-700 { color: var(--emerald-700); }
.text-amber-700 { color: var(--amber-700); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 500;
  transition: all 0.15s; cursor: pointer; border: 1px solid transparent; white-space: nowrap; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary { background: var(--rose-600); color: var(--white); }
.btn-primary:hover { background: var(--rose-700); }
.btn-gradient { background: linear-gradient(to right, var(--rose-500), var(--orange-500)); color: var(--white); }
.btn-gradient:hover { background: linear-gradient(to right, var(--rose-600), var(--orange-600)); }
.btn-outline { background: transparent; border-color: var(--rose-200); color: var(--rose-700); }
.btn-outline:hover { background: var(--rose-50); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { background: var(--gray-100); }
.btn-sm { padding: 0.375rem 0.75rem; font-size: 0.8rem; }
.btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-emerald { background: var(--emerald-600); color: var(--white); }
.btn-emerald:hover { background: var(--emerald-700); }
.btn-danger { background: var(--red-600); color: var(--white); }
.btn-danger:hover { background: var(--red-700); }

/* ===== Cards ===== */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1rem; }
.card-hover:hover { box-shadow: var(--shadow-lg); }
.card-p-0 { padding: 0; overflow: hidden; }

/* ===== Badges ===== */
.badge { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.125rem 0.5rem;
  border-radius: 9999px; font-size: 0.75rem; font-weight: 500; border: 1px solid transparent; }
.badge-rose { background: var(--rose-100); color: var(--rose-700); border-color: var(--rose-200); }
.badge-amber { background: var(--amber-100); color: var(--amber-700); border-color: var(--amber-200); }
.badge-emerald { background: var(--emerald-100); color: var(--emerald-700); border-color: var(--emerald-100); }
.badge-orange { background: var(--orange-100); color: var(--orange-700); border-color: var(--orange-200); }
.badge-blue { background: var(--blue-100); color: var(--blue-700); }
.badge-purple { background: var(--purple-100); color: var(--purple-700); }
.badge-red { background: var(--red-100); color: var(--red-700); }
.badge-gray { background: var(--gray-100); color: var(--gray-700); }
.badge-outline { background: transparent; border-color: var(--border); color: var(--muted); }

/* ===== Forms ===== */
.input, .select, .textarea { width: 100%; padding: 0.5rem 0.75rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 0.875rem; background: var(--white); transition: border-color 0.15s; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--rose-500); box-shadow: 0 0 0 3px rgba(244,63,94,0.1); }
.label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== Header / Nav ===== */
.header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; max-width: 1200px; margin: 0 auto; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.25rem; }
.logo-icon { width: 2rem; height: 2rem; border-radius: 0.5rem; background: linear-gradient(135deg, var(--rose-500), var(--orange-500)); display: flex; align-items: center; justify-content: center; color: white; }
.nav { display: flex; align-items: center; gap: 0.5rem; }
.nav-link { padding: 0.5rem 0.75rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 500; color: var(--muted); transition: all 0.15s; }
.nav-link:hover, .nav-link.active { background: var(--rose-50); color: var(--rose-700); }
.cart-badge { position: relative; }
.cart-count { position: absolute; top: -4px; right: -4px; background: var(--rose-600); color: white; font-size: 0.625rem; font-weight: 700; min-width: 1.125rem; height: 1.125rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; padding: 0 0.25rem; border: 2px solid white; }

/* Announcement bar */
.announcement { background: linear-gradient(to right, var(--rose-600), var(--orange-600), var(--amber-600)); color: white; padding: 0.5rem 1rem; text-align: center; font-size: 0.875rem; font-weight: 500; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--rose-500), var(--rose-600), var(--orange-500)); color: white; padding: 2.5rem; margin-bottom: 2rem; }
.hero h1 { font-size: 2.5rem; margin-bottom: 0.75rem; }
.hero p { font-size: 1.125rem; opacity: 0.9; margin-bottom: 1.5rem; max-width: 36rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; border-radius: 9999px; background: rgba(255,255,255,0.2); font-size: 0.75rem; font-weight: 500; margin-bottom: 1rem; }
.hero .btn-white { background: white; color: var(--rose-600); }
.hero .btn-white:hover { background: var(--rose-50); }
.hero .btn-outline-white { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); color: white; }
.hero .btn-outline-white:hover { background: rgba(255,255,255,0.2); }
.hero-circle { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.1); }

/* ===== Category chips ===== */
.cat-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.cat-chip { padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; border: 1px solid var(--rose-200); background: white; color: var(--muted); cursor: pointer; transition: all 0.15s; }
.cat-chip:hover { background: var(--rose-50); color: var(--rose-700); }
.cat-chip.active { background: linear-gradient(to right, var(--rose-500), var(--orange-500)); color: white; border-color: transparent; }

/* ===== Product grid ===== */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.product-card { background: white; border: 1px solid var(--rose-100); border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: all 0.2s; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.product-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.product-card-body { padding: 0.75rem; }
.product-card h3 { font-size: 0.875rem; font-weight: 500; margin-bottom: 0.25rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.product-card .price { font-weight: 700; color: var(--rose-600); font-size: 1rem; }
.product-card .compare-at { font-size: 0.75rem; color: var(--muted); text-decoration: line-through; margin-left: 0.25rem; }
.color-dots { display: flex; gap: 0.25rem; margin-top: 0.5rem; }
.color-dot { width: 0.875rem; height: 0.875rem; border-radius: 50%; border: 1px solid var(--rose-100); }

.product-img-wrap { position: relative; aspect-ratio: 3/4; background: var(--rose-50); overflow: hidden; }
.product-badge { position: absolute; padding: 0.125rem 0.5rem; border-radius: 9999px; font-size: 0.625rem; font-weight: 700; color: white; }
.badge-discount { top: 0.5rem; left: 0.5rem; background: var(--rose-600); }
.badge-featured { top: 0.5rem; left: 0.5rem; background: var(--amber-500); }
.badge-cat { bottom: 0.5rem; right: 0.5rem; background: rgba(255,255,255,0.9); color: var(--rose-700); }

/* ===== Product detail ===== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.product-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--rose-100); }
.thumb-row { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.thumb { width: 4rem; height: 4rem; border-radius: var(--radius); overflow: hidden; border: 2px solid var(--rose-100); cursor: pointer; }
.thumb.active { border-color: var(--rose-500); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.color-swatches { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.color-swatch { width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 2px solid var(--rose-100); cursor: pointer; position: relative; transition: all 0.15s; }
.color-swatch:hover { border-color: var(--rose-300); }
.color-swatch.active { border-color: var(--rose-500); box-shadow: 0 0 0 3px var(--rose-200); }
.color-swatch.out-of-stock { opacity: 0.4; }

.size-buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.size-btn { min-width: 3rem; height: 2.75rem; padding: 0 0.75rem; border-radius: var(--radius); border: 2px solid var(--rose-100); background: white; font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: all 0.15s; }
.size-btn:hover:not(:disabled) { border-color: var(--rose-300); }
.size-btn.active { border-color: var(--rose-500); background: var(--rose-50); color: var(--rose-700); }
.size-btn:disabled { opacity: 0.5; cursor: not-allowed; text-decoration: line-through; }

.qty-selector { display: flex; align-items: center; border: 2px solid var(--rose-100); border-radius: var(--radius); overflow: hidden; width: fit-content; }
.qty-btn { width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; color: var(--rose-700); }
.qty-btn:hover { background: var(--rose-50); }
.qty-btn:disabled { opacity: 0.4; }
.qty-display { width: 3rem; text-align: center; font-weight: 600; }

/* ===== Cart ===== */
.cart-item { display: flex; gap: 1rem; padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 0.75rem; }
.cart-item img { width: 4rem; height: 5rem; object-fit: cover; border-radius: var(--radius); }
.cart-summary { background: var(--rose-50); border-radius: var(--radius-lg); padding: 1.5rem; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.875rem; }
.summary-total { display: flex; justify-content: space-between; font-size: 1.125rem; font-weight: 700; border-top: 1px solid var(--border); padding-top: 0.75rem; margin-top: 0.75rem; }

/* ===== Payment methods ===== */
.payment-option { width: 100%; text-align: left; border: 2px solid var(--rose-100); border-radius: var(--radius-lg); padding: 1rem; display: flex; align-items: center; gap: 0.75rem; cursor: pointer; transition: all 0.15s; margin-bottom: 0.75rem; background: white; }
.payment-option:hover { border-color: var(--rose-300); }
.payment-option.selected { border-color: var(--rose-500); background: var(--rose-50); }
.payment-icon { width: 2.75rem; height: 2.75rem; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.payment-icon-selected { background: var(--rose-600); color: white; }
.payment-icon-default { background: var(--rose-100); color: var(--rose-600); }

/* ===== Admin sidebar ===== */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 15rem; background: white; border-right: 1px solid var(--border); display: flex; flex-direction: column; }
.admin-nav { padding: 0.75rem; flex: 1; }
.admin-nav-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.625rem 0.75rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 500; color: var(--muted); transition: all 0.15s; width: 100%; text-align: left; margin-bottom: 0.25rem; }
.admin-nav-item:hover { background: var(--rose-50); color: var(--rose-700); }
.admin-nav-item.active { background: linear-gradient(to right, var(--rose-500), var(--orange-500)); color: white; }
.admin-main { flex: 1; min-width: 0; }
.admin-header { background: rgba(255,255,255,0.6); border-bottom: 1px solid var(--border); padding: 1.25rem 1.5rem; }
.admin-content { padding: 1.5rem; }

/* ===== Stats cards ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.stat-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; }
.stat-label { font-size: 0.75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; margin-bottom: 0.25rem; }
.stat-value { font-size: 1.75rem; font-weight: 700; }
.stat-icon { width: 2.5rem; height: 2.5rem; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; }

/* ===== Tables ===== */
.table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.table th { text-align: left; padding: 0.75rem; font-weight: 600; color: var(--muted); background: var(--rose-50); border-bottom: 1px solid var(--border); font-size: 0.75rem; text-transform: uppercase; }
.table td { padding: 0.75rem; border-bottom: 1px solid var(--border); }
.table tr { cursor: pointer; }
.table tr:hover { background: var(--rose-50); }

/* ===== Modal/Dialog ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; z-index: 50; padding: 1rem; }
.modal { background: white; border-radius: var(--radius-xl); max-width: 48rem; width: 100%; max-height: 90vh; overflow-y: auto; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; border-bottom: 1px solid var(--border); }
.modal-body { padding: 1.25rem; }
.modal-footer { padding: 1rem 1.25rem; border-top: 1px solid var(--border); display: flex; gap: 0.5rem; justify-content: flex-end; }
.modal-close { width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); color: var(--muted); }
.modal-close:hover { background: var(--gray-100); }

/* ===== Toast ===== */
.toast-container { position: fixed; top: 1rem; left: 50%; transform: translateX(-50%); z-index: 100; }
.toast { background: var(--gray-800); color: white; padding: 0.75rem 1.25rem; border-radius: var(--radius); margin-bottom: 0.5rem; font-size: 0.875rem; box-shadow: var(--shadow-lg); animation: slideDown 0.2s; }
.toast-success { background: var(--emerald-600); }
.toast-error { background: var(--red-600); }

/* ===== Verification banner ===== */
.verify-banner { border: 2px solid var(--amber-200); background: var(--amber-100); border-radius: var(--radius-lg); padding: 1rem; display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1rem; }
.verify-icon { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--amber-500); display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; }

/* ===== Invoice ===== */
.invoice-header { display: flex; justify-content: space-between; border-bottom: 2px solid var(--border); padding-bottom: 1rem; margin-bottom: 1rem; }
.invoice-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.invoice-table th { background: var(--gray-100); padding: 0.5rem; text-align: left; font-size: 0.75rem; font-weight: 600; }
.invoice-table td { padding: 0.5rem; border-top: 1px solid var(--border); font-size: 0.875rem; }

/* ===== Footer ===== */
.footer { background: white; border-top: 1px solid var(--border); margin-top: auto; padding: 1.5rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.5rem; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.footer a { color: var(--muted); font-size: 0.75rem; }
.footer a:hover { color: var(--rose-700); }

/* ===== UPI QR screen ===== */
.upi-qr { background: white; padding: 0.75rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.upi-info { background: var(--rose-50); border-radius: var(--radius-lg); padding: 1.25rem; }

/* ===== Empty state ===== */
.empty-state { text-align: center; padding: 3rem 1rem; }
.empty-state-icon { width: 4rem; height: 4rem; border-radius: 50%; background: var(--rose-50); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; color: var(--rose-300); }

/* ===== Animations ===== */
@keyframes slideDown { from { transform: translate(-50%, -100%); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-25%); } }
.animate-bounce { animation: bounce 1s infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { width: 1.25rem; height: 1.25rem; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.6s linear infinite; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.875rem; }
  .hero { padding: 1.5rem; }
  .nav-desktop { display: none; }
  .mobile-nav { display: flex; }
  .table-wrap { overflow-x: auto; }
  .table { min-width: 600px; }
}
@media (min-width: 769px) {
  .mobile-nav { display: none; }
}

/* Mobile nav strip */
.mobile-nav { border-top: 1px solid var(--border); background: rgba(255,255,255,0.6); }
.mobile-nav-inner { display: flex; justify-content: space-around; padding: 0.375rem 0; max-width: 1200px; margin: 0 auto; }
.mobile-nav-item { display: flex; flex-direction: column; align-items: center; gap: 0.125rem; padding: 0.375rem 1rem; font-size: 0.6875rem; font-weight: 500; color: var(--muted); border-radius: var(--radius); }
.mobile-nav-item.active { color: var(--rose-700); }
.mobile-nav-item:hover { color: var(--rose-700); }

/* Hamburger menu */
.hamburger { display: none; }
@media (max-width: 768px) {
  .hamburger { display: flex; }
}

/* Utility */
.line-clamp-1 { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: var(--radius-lg); }
.rounded-2xl { border-radius: var(--radius-xl); }
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }
.relative { position: relative; }
.absolute { position: absolute; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.gap-8 { gap: 2rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.text-base { font-size: 1rem; }
.opacity-40 { opacity: 0.4; }
.opacity-0 { opacity: 0; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex-1 { flex: 1; }
.shrink-0 { flex-shrink: 0; }
