@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #1a1a2e;
  --accent: #e94560;
  --accent2: #f5a623;
  --bg: #fafaf8;
  --surface: #ffffff;
  --border: #e8e8e2;
  --text: #1a1a2e;
  --muted: #8a8a8a;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ── Button System ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px; border: none;
  font-size: 14px; font-weight: 500; font-family: inherit;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #d63651; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(233,69,96,0.35); }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: #2d2d50; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,248,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  height: 64px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--primary);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--accent); }
.nav-search {
  flex: 1; max-width: 480px;
  display: flex; align-items: center;
  background: var(--border); border-radius: 8px;
  padding: 0 16px; gap: 10px;
}
.nav-search input {
  flex: 1; border: none; background: transparent;
  padding: 10px 0; font-size: 14px; font-family: inherit; outline: none;
}
.nav-search button {
  background: none; border: none; color: var(--muted);
  padding: 4px; display: flex; cursor: pointer;
}
.nav-search button:hover { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 8px 12px; border-radius: 8px;
  color: var(--muted); font-size: 11px; font-weight: 500;
  transition: var(--transition); cursor: pointer; border: none; background: none;
}
.nav-link svg { width: 20px; height: 20px; }
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link .badge {
  position: absolute; top: 6px; right: 6px;
  background: var(--accent); color: white;
  font-size: 10px; width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.nav-link-wrap { position: relative; }

/* ── Hero Section ── */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white; padding: 80px 24px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; background: radial-gradient(circle, rgba(233,69,96,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -5%;
  width: 400px; height: 400px; background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(233,69,96,0.15); border: 1px solid rgba(233,69,96,0.3); color: #f87b93; padding: 6px 14px; border-radius: 20px; font-size: 13px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; }
.hero-stat .num { font-size: 28px; font-weight: 700; font-family: 'Playfair Display', serif; }
.hero-stat .label { color: rgba(255,255,255,0.5); font-size: 13px; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 20px; transition: var(--transition);
}
.hero-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.12); }
.hero-card img { width: 100%; height: 140px; object-fit: cover; border-radius: 10px; margin-bottom: 12px; }
.hero-card .card-name { font-size: 13px; font-weight: 500; color: white; margin-bottom: 4px; }
.hero-card .card-price { color: var(--accent2); font-weight: 600; font-size: 14px; }

/* ── Section Headers ── */
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; }
.section-label { color: var(--accent); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; }
.section-title { font-size: clamp(24px, 3vw, 32px); }

/* ── Categories ── */
.categories-section { padding: 72px 24px; }
.categories-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.category-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 24px 16px; text-align: center;
  cursor: pointer; transition: var(--transition);
}
.category-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.category-card.active { border-color: var(--accent); background: rgba(233,69,96,0.04); }
.cat-icon { font-size: 28px; margin-bottom: 10px; }
.cat-name { font-size: 13px; font-weight: 500; }
.cat-count { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── Products ── */
.products-section { padding: 0 24px 80px; }
.products-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding: 16px 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 500;
  border: 1.5px solid var(--border); background: transparent; color: var(--muted);
  cursor: pointer; transition: var(--transition);
}
.chip:hover, .chip.active { border-color: var(--accent); color: var(--accent); background: rgba(233,69,96,0.06); }
.sort-select {
  padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 13px; font-family: inherit; background: white; cursor: pointer; outline: none;
}
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

/* ── Product Card ── */
.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(233,69,96,0.2); }
.product-img-wrap { position: relative; overflow: hidden; height: 220px; background: #f0f0ed; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 600;
}
.badge-sale { background: var(--accent); color: white; }
.badge-new { background: var(--success); color: white; }
.product-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transform: translateX(10px); transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.action-btn {
  width: 36px; height: 36px; border-radius: 8px; border: none;
  background: white; color: var(--text); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12); transition: var(--transition); cursor: pointer;
}
.action-btn:hover { background: var(--accent); color: white; }
.product-info { padding: 16px; }
.product-category { font-size: 11px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.product-name { font-size: 15px; font-weight: 500; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { color: var(--accent2); font-size: 13px; }
.review-count { font-size: 12px; color: var(--muted); }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price-wrap { display: flex; align-items: baseline; gap: 8px; }
.price { font-size: 18px; font-weight: 700; color: var(--primary); }
.price-original { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.add-cart-btn {
  width: 38px; height: 38px; border-radius: 8px; background: var(--primary); color: white;
  border: none; font-size: 18px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.add-cart-btn:hover { background: var(--accent); transform: scale(1.08); }
.add-cart-btn.added { background: var(--success); }

/* ── Product Detail Modal ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 24px; animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: white; border-radius: 20px; width: 100%; max-width: 900px;
  max-height: 90vh; overflow-y: auto; animation: slideUp 0.3s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; border-bottom: 1px solid var(--border);
}
.modal-close { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); background: white; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.modal-close:hover { background: var(--border); }
.modal-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.modal-img { height: 400px; background: #f0f0ed; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 32px; overflow-y: auto; }
.modal-category { font-size: 12px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.modal-name { font-size: 26px; margin-bottom: 12px; }
.modal-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.modal-price { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.modal-price-original { font-size: 16px; color: var(--muted); text-decoration: line-through; }
.modal-savings { display: inline-block; background: rgba(233,69,96,0.1); color: var(--accent); padding: 4px 12px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.modal-desc { color: var(--muted); line-height: 1.8; margin-bottom: 24px; font-size: 14px; }
.qty-selector { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.qty-btn { width: 36px; height: 36px; border-radius: 8px; border: 1.5px solid var(--border); background: white; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.qty-val { font-size: 16px; font-weight: 600; min-width: 30px; text-align: center; }
.stock-info { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.stock-info.low { color: var(--warning); }
.modal-actions { display: flex; gap: 10px; }

/* ── Toast Notification ── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  display: flex; align-items: center; gap: 12px;
  background: var(--primary); color: white;
  padding: 14px 20px; border-radius: 12px;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease;
  min-width: 280px;
}
@keyframes toastIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.toast.success { background: var(--success); }
.toast.error { background: var(--error); }
.toast.warning { background: var(--warning); }

/* ── Cart Page ── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; padding: 48px 24px; max-width: 1280px; margin: 0 auto; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: flex; gap: 20px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px;
}
.cart-item-img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 500; margin-bottom: 4px; }
.cart-item-price { color: var(--muted); font-size: 14px; }
.cart-item-total { font-size: 18px; font-weight: 700; }
.cart-item-remove { color: var(--muted); background: none; border: none; cursor: pointer; font-size: 20px; padding: 4px; transition: var(--transition); }
.cart-item-remove:hover { color: var(--error); }

/* ── Order Summary ── */
.order-summary {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; position: sticky; top: 80px; height: fit-content;
}
.order-summary h3 { font-size: 20px; margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; color: var(--muted); }
.summary-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; padding-top: 16px; margin-top: 16px; border-top: 2px solid var(--border); }
.free-shipping-bar { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); border-radius: 8px; padding: 12px 16px; margin-bottom: 20px; font-size: 13px; color: var(--success); }

/* ── Auth Pages ── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 24px; background: linear-gradient(135deg, #f8f8f6 0%, #f0f0ed 100%); }
.auth-card {
  background: white; border-radius: 20px; padding: 48px;
  width: 100%; max-width: 440px; box-shadow: var(--shadow-lg);
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo .logo-text { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; }
.auth-logo .logo-text span { color: var(--accent); }
.auth-title { font-size: 26px; margin-bottom: 8px; }
.auth-subtitle { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 14px; font-family: inherit;
  outline: none; transition: var(--transition); background: var(--bg);
}
.form-control:focus { border-color: var(--accent); background: white; box-shadow: 0 0 0 3px rgba(233,69,96,0.08); }
.form-control.error { border-color: var(--error); }
.form-error { color: var(--error); font-size: 12px; margin-top: 4px; }
.auth-divider { text-align: center; color: var(--muted); font-size: 13px; margin: 20px 0; position: relative; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.auth-divider span { background: white; padding: 0 12px; position: relative; }

/* ── Admin Dashboard ── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 240px; background: var(--primary); color: white;
  padding: 24px 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; flex-shrink: 0;
}
.admin-sidebar-logo { padding: 0 24px 24px; font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 16px; }
.admin-sidebar-logo span { color: var(--accent); }
.admin-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px; color: rgba(255,255,255,0.6);
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: var(--transition); border: none; background: none; width: 100%; text-align: left;
}
.admin-nav-item:hover, .admin-nav-item.active { color: white; background: rgba(255,255,255,0.08); }
.admin-nav-item.active { border-left: 3px solid var(--accent); }
.admin-main { flex: 1; padding: 32px; overflow-y: auto; background: var(--bg); }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.admin-title { font-size: 28px; }
.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.stat-card .label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.stat-card .value { font-size: 28px; font-weight: 700; font-family: 'Playfair Display', serif; }
.stat-card .change { font-size: 13px; color: var(--success); margin-top: 4px; }
.stat-card.accent { background: var(--accent); color: white; border-color: var(--accent); }
.stat-card.accent .label, .stat-card.accent .change { color: rgba(255,255,255,0.7); }

/* ── Tables ── */
.data-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.data-table th { background: var(--bg); padding: 12px 16px; text-align: left; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); border-bottom: 1px solid var(--border); }
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(0,0,0,0.02); }

/* ── Badges / Status Pills ── */
.status-pill { padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.status-pending { background: rgba(245,158,11,0.12); color: #b45309; }
.status-processing { background: rgba(59,130,246,0.12); color: #1d4ed8; }
.status-shipped { background: rgba(139,92,246,0.12); color: #6d28d9; }
.status-delivered { background: rgba(34,197,94,0.12); color: #15803d; }
.status-cancelled { background: rgba(239,68,68,0.12); color: #b91c1c; }

/* ── Page Header ── */
.page-header { background: var(--primary); color: white; padding: 48px 24px; margin-bottom: 40px; }
.page-header-inner { max-width: 1280px; margin: 0 auto; }
.page-header h1 { font-size: 36px; margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,0.6); }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { opacity: 0.4; }

/* ── Footer ── */
.footer { background: var(--primary); color: white; padding: 64px 24px 32px; margin-top: 80px; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; margin-top: 12px; max-width: 280px; line-height: 1.8; }
.footer h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.5); font-size: 14px; transition: var(--transition); }
.footer a:hover { color: white; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── Empty State ── */
.empty-state { text-align: center; padding: 80px 24px; }
.empty-state .icon { font-size: 64px; margin-bottom: 20px; opacity: 0.5; }
.empty-state h3 { font-size: 24px; margin-bottom: 10px; }
.empty-state p { color: var(--muted); margin-bottom: 28px; }

/* ── Loader ── */
.spinner { width: 32px; height: 32px; border: 3px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-center { display: flex; align-items: center; justify-content: center; padding: 80px; }

/* ── Checkout ── */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; padding: 48px 24px; max-width: 1280px; margin: 0 auto; }
.checkout-steps { display: flex; gap: 0; margin-bottom: 32px; }
.step { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.step.active { color: var(--accent); font-weight: 500; }
.step.done { color: var(--success); }
.step-num { width: 28px; height: 28px; border-radius: 50%; border: 2px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; }
.step-sep { width: 40px; height: 2px; background: var(--border); margin: 0 8px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-img { height: 250px; }
}
@media (max-width: 768px) {
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-search { display: none; }
  .admin-sidebar { display: none; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
