/* ============ RESET & VARIABLES ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #FDFBF7;
  --bg-warm: #F8F4EE;
  --surface: #FFFFFF;
  --border: #E8E2D9;
  --border-light: #F0EBE3;
  --text: #2C2420;
  --text-secondary: #7A6E63;
  --text-light: #A69A8E;
  --accent: #C4956A;
  --accent-hover: #B3845C;
  --accent-light: #F0E4D6;
  --accent-dark: #8B6B4A;
  --success: #6B9E7B;
  --error: #C4706A;
  --shadow-sm: 0 1px 3px rgba(44,36,32,0.06);
  --shadow-md: 0 4px 12px rgba(44,36,32,0.08);
  --shadow-lg: 0 8px 24px rgba(44,36,32,0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,251,247,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}

.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-cart:hover { color: var(--text); }

.nav-cart svg { width: 22px; height: 22px; }

.cart-badge {
  position: absolute;
  top: -6px; right: -10px;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.cart-badge:empty { display: none; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none; border: none;
  padding: 4px;
  color: var(--text);
}

.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.1rem; }
}

/* ============ HERO ============ */
.hero {
  padding: 120px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 100px;
  transition: all var(--transition);
}

.hero-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.hero-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ============ CATEGORIES BAR ============ */
.categories-bar {
  padding: 48px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.categories-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.category-card {
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition);
}

.category-card:hover { transform: translateY(-2px); }

.category-icon {
  width: 72px; height: 72px;
  margin: 0 auto 12px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}

.category-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ============ SECTION HEADERS ============ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* ============ PRODUCT GRID ============ */
.products-section {
  padding: 72px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  cursor: pointer;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
  transform: translateY(-2px);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--bg-warm);
}

.product-card-body {
  padding: 16px 20px 20px;
}

.product-card-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card-price .current {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.product-card-price .compare {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-card-price .badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--error);
  background: rgba(196,112,106,0.1);
  padding: 2px 8px;
  border-radius: 100px;
}

/* ============ PRODUCT DETAIL ============ */
.product-detail {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 24px 72px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-detail-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--bg-warm);
}

.product-detail-info { padding-top: 12px; }

.product-detail-category {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.product-detail-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.product-detail-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.product-detail-price .current {
  font-size: 1.5rem;
  font-weight: 600;
}

.product-detail-price .compare {
  font-size: 1.1rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-detail-price .savings {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success);
}

.product-detail-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}

.qty-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  color: var(--text);
}

.qty-btn:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.qty-btn:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.qty-btn:hover { background: var(--bg-warm); }

.qty-value {
  width: 48px; height: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-add-to-cart {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
}

.btn-add-to-cart:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-md);
}

.btn-add-to-cart.added {
  background: var(--success);
}

.product-detail-extras {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-extra {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.detail-extra svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============ SHOP FILTERS ============ */
.shop-header {
  padding: 100px 24px 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.shop-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.filter-btn:hover { border-color: var(--accent); color: var(--text); }

.filter-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.shop-search {
  margin-left: auto;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  width: 200px;
  background: var(--surface);
  transition: border-color var(--transition);
  outline: none;
}

.shop-search:focus { border-color: var(--accent); }

@media (max-width: 640px) {
  .shop-search { width: 100%; margin-left: 0; margin-top: 12px; }
}

/* ============ CART ============ */
.cart-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 24px 72px;
}

.cart-page h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.cart-empty {
  text-align: center;
  padding: 72px 24px;
}

.cart-empty p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
  width: 80px; height: 100px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg-warm);
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
}

.cart-item-qty button {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition);
  color: var(--text);
}

.cart-item-qty button:first-child { border-radius: 4px 0 0 4px; }
.cart-item-qty button:last-child { border-radius: 0 4px 4px 0; }
.cart-item-qty button:hover { background: var(--bg-warm); }

.cart-item-qty span {
  width: 36px; height: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
}

.cart-item-remove {
  background: none; border: none;
  color: var(--text-light);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.cart-item-remove:hover { color: var(--error); }

.cart-summary {
  margin-top: 32px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
}

.cart-summary-row.total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 16px;
  font-weight: 600;
  font-size: 1.1rem;
}

.cart-summary-row .free-shipping {
  color: var(--success);
  font-weight: 500;
}

.btn-checkout {
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
}

.btn-checkout:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-md);
}

.btn-checkout:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============ CHECKOUT PAGE ============ */
.checkout-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 100px 24px 72px;
}

.checkout-page h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.checkout-form { display: flex; flex-direction: column; gap: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: var(--surface);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============ ORDER CONFIRMATION ============ */
.order-confirm {
  max-width: 600px;
  margin: 0 auto;
  padding: 120px 24px 72px;
  text-align: center;
}

.order-confirm-icon {
  width: 72px; height: 72px;
  background: rgba(107,158,123,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.order-confirm h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.order-confirm p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 8px;
}

.order-number {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent);
  margin-top: 16px;
}

/* ============ BANNER ============ */
.promo-banner {
  background: var(--accent-light);
  padding: 12px 24px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-dark);
}

/* ============ FEATURED SECTION ============ */
.featured-section {
  padding: 72px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============ FOOTER ============ */
.footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============ ADMIN ============ */
.admin-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 24px 72px;
}

.admin-page h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.admin-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.admin-tab {
  padding: 12px 24px;
  border: none;
  background: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.admin-tab:hover { color: var(--text); }
.admin-tab.active { color: var(--text); border-bottom-color: var(--accent); }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.stat-card .stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text);
}

.stat-card .stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 4px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.admin-table th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  background: var(--bg-warm);
}

.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.admin-table tr:hover td { background: var(--bg-warm); }

.admin-table-img {
  width: 44px; height: 56px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--bg-warm);
}

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}

.status-badge.pending { background: #FFF3CD; color: #856404; }
.status-badge.paid { background: #D4EDDA; color: #155724; }
.status-badge.processing { background: #CCE5FF; color: #004085; }
.status-badge.shipped { background: #E2E3E5; color: #383D41; }
.status-badge.delivered { background: #D4EDDA; color: #155724; }
.status-badge.cancelled { background: #F8D7DA; color: #721C24; }

.admin-actions {
  display: flex;
  gap: 8px;
}

.btn-sm {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 0.78rem;
  font-weight: 500;
  transition: all var(--transition);
  color: var(--text);
}

.btn-sm:hover { border-color: var(--accent); }
.btn-sm.danger:hover { border-color: var(--error); color: var(--error); }

.btn-primary {
  padding: 10px 24px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.btn-primary:hover { background: var(--accent-hover); }

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,36,32,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.modal .form-group { margin-bottom: 16px; }

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

.btn-cancel {
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition);
  color: var(--text);
}

.btn-cancel:hover { background: var(--bg-warm); }

/* ============ LOADING ============ */
.loading {
  text-align: center;
  padding: 72px 24px;
  color: var(--text-light);
}

.spinner {
  width: 32px; height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============ TOAST ============ */
.toast-container {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 12px 20px;
  background: var(--text);
  color: white;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.3s ease;
}

.toast.success { background: var(--success); }
.toast.error { background: var(--error); }

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.breadcrumb a { color: var(--text-secondary); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { margin: 0 8px; }

/* ============ EMPTY STATE ============ */
.empty-state {
  text-align: center;
  padding: 72px 24px;
}

.empty-state svg {
  width: 64px; height: 64px;
  color: var(--border);
  margin-bottom: 16px;
}

.empty-state h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* ============ ADMIN LOGIN ============ */
.admin-login {
  max-width: 400px;
  margin: 0 auto;
  padding: 150px 24px 72px;
  text-align: center;
}

.admin-login h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.admin-login p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.admin-login .form-group { text-align: left; margin-bottom: 16px; }

.admin-login .btn-primary { width: 100%; padding: 14px; }
