/* ============================================================
   MULTIASEO - SISTEMA DE DISEÑO & ESTILOS GLOBALES
   TEMA: NARANJA, AMARILLO & NEGRO (HIGH-CONTRAST & PREMIUM)
   ============================================================ */

:root {
  /* Colores Primarios: Naranja */
  --primary: #ea580c;
  --primary-hover: #c2410c;
  --primary-dark: #9a3412;
  --primary-light: #ffedd5;
  
  /* Colores Secundarios / Acento: Amarillo Dorado */
  --accent: #facc15;
  --accent-hover: #eab308;
  --accent-dark: #ca8a04;
  --accent-light: #fef9c3;
  
  /* Tonos Oscuros: Negro Ónix y Carbón */
  --dark: #09090b;
  --dark-surface: #18181b;
  --dark-card: #27272a;
  
  /* Fondos y Bordes */
  --light-bg: #fafafa;
  --card-bg: #ffffff;
  --border: #e4e4e7;
  
  /* Tipografía */
  --text-main: #09090b;
  --text-muted: #71717a;
  --text-light: #a1a1aa;
  
  /* Sombras y Efectos Glow */
  --shadow-sm: 0 2px 4px rgba(9, 9, 11, 0.05);
  --shadow-md: 0 8px 16px -4px rgba(9, 9, 11, 0.1), 0 4px 6px -2px rgba(9, 9, 11, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(9, 9, 11, 0.15), 0 8px 10px -6px rgba(9, 9, 11, 0.05);
  --shadow-glow: 0 0 22px rgba(234, 88, 12, 0.35);
  --shadow-yellow-glow: 0 0 20px rgba(250, 204, 21, 0.4);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--light-bg);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Header & Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--primary);
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 48px;
}

.brand-logo img {
  height: 100%;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: #f4f4f5;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background-color: rgba(250, 204, 21, 0.12);
}

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

/* Cart Button & Badge (Negro y Naranja/Amarillo) */
.btn-cart {
  position: relative;
  background: var(--primary);
  color: #ffffff;
  border: 1px solid rgba(250, 204, 21, 0.4);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

.btn-cart:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow-glow);
}

.cart-badge {
  background: var(--accent);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  min-width: 22px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Hero Section (Fondo Negro Intenso con Gradiente Naranja y Amarillo) */
.hero-section {
  background: linear-gradient(135deg, #09090b 0%, #18181b 45%, #c2410c 100%);
  color: #ffffff;
  padding: 4.5rem 1.5rem 5.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--accent);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.25) 0%, rgba(234, 88, 12, 0.1) 50%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.hero-title span {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(250, 204, 21, 0.35);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #e4e4e7;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge-tag {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(250, 204, 21, 0.4);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-tag i {
  color: var(--accent);
}

.hero-card-promo {
  background: rgba(24, 24, 27, 0.85);
  backdrop-filter: blur(16px);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

/* Category Filter Bar */
.catalog-section {
  max-width: 1280px;
  margin: -2.5rem auto 4rem auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.filter-bar-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.category-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.tab-btn {
  background: transparent;
  border: 1px solid transparent;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.tab-btn.active {
  background: var(--dark);
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.search-box {
  position: relative;
  min-width: 280px;
  flex-grow: 1;
  max-width: 400px;
}

.search-box input {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.6rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--light-bg);
  color: var(--text-main);
  outline: none;
  font-weight: 600;
  transition: var(--transition);
}

.search-box input:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--primary-light);
}

.search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background: #f4f4f5;
  overflow: hidden;
}

.product-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.product-cat-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--dark);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.product-unit {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 1rem;
  align-self: flex-start;
  border: 1px solid rgba(234, 88, 12, 0.2);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.product-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary);
}

.btn-add-cart {
  background: var(--dark);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-add-cart:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

/* Drawer de Carrito Modal */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 9, 11, 0.75);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--card-bg);
  z-index: 201;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 3px solid var(--primary);
}

.cart-drawer-overlay.active .cart-drawer {
  right: 0;
}

.cart-drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark);
  color: #ffffff;
}

.cart-drawer-title {
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
}

.btn-close-drawer {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: #a1a1aa;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-close-drawer:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.cart-items-container {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

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

.cart-item-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.cart-item-price {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.1rem;
}

.qty-btn {
  background: transparent;
  border: none;
  width: 26px;
  height: 26px;
  font-weight: 800;
  cursor: pointer;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.qty-val {
  font-size: 0.85rem;
  font-weight: 800;
  width: 24px;
  text-align: center;
}

.btn-remove-item {
  background: transparent;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 0.4rem;
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-remove-item:hover {
  opacity: 0.7;
}

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--card-bg);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.btn-checkout {
  width: 100%;
  background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
  color: #ffffff;
  border: none;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.4);
}

.btn-checkout:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Modal Checkout */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(6px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--card-bg);
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-header {
  background: linear-gradient(135deg, #09090b 0%, #18181b 60%, #ea580c 100%);
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--accent);
}

.modal-title {
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-group input, .form-group textarea, .form-group select {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--light-bg);
  color: var(--text-main);
  outline: none;
  font-weight: 600;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group input[readonly] {
  background: #f4f4f5;
  font-weight: 800;
  color: var(--primary-dark);
}

.order-summary-box {
  background: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1rem;
  border: 1px solid rgba(234, 88, 12, 0.3);
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 1.1rem;
}

/* Modulo de Seguimiento */
.tracking-hero {
  background: linear-gradient(135deg, #09090b 0%, #18181b 50%, #c2410c 100%);
  color: #ffffff;
  padding: 3.5rem 1.5rem;
  text-align: center;
  border-bottom: 3px solid var(--accent);
}

.tracking-card {
  max-width: 720px;
  margin: -2rem auto 4rem auto;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.stepper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 2.5rem 0;
}

.stepper::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: var(--border);
  z-index: 1;
}

.stepper-progress {
  position: absolute;
  top: 20px;
  left: 10%;
  height: 4px;
  background: var(--primary);
  z-index: 1;
  transition: width 0.4s ease;
}

.step-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.step-item.active .step-circle {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.step-item.completed .step-circle {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--accent);
}

.step-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.step-item.active .step-label, .step-item.completed .step-label {
  color: var(--text-main);
}

/* Panel Admin */
.admin-container {
  max-width: 1280px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.stat-icon.primary { background: var(--primary-light); color: var(--primary); }
.stat-icon.accent { background: var(--accent-light); color: var(--accent-dark); }
.stat-icon.warning { background: #fef3c7; color: #d97706; }
.stat-icon.purple { background: #f3e8ff; color: #7e22ce; }

.stat-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.stat-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  font-weight: 600;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.custom-table th {
  background: var(--dark);
  color: var(--accent);
  padding: 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.custom-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  vertical-align: middle;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
}

.status-Recibido { background: #ffedd5; color: #c2410c; }
.status-En_Proceso, .status-En-Proceso { background: #fef9c3; color: #854d0e; }
.status-Enviado { background: #e0e7ff; color: #3730a3; }
.status-Entregado { background: #d1fae5; color: #047857; }

/* Action Buttons */
.btn-wa-notify {
  background: #25d366;
  color: #ffffff;
  border: none;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.btn-wa-notify:hover {
  background: #128c7e;
  transform: scale(1.03);
}

/* Footer */
footer {
  margin-top: auto;
  background: var(--dark);
  color: #a1a1aa;
  padding: 3rem 1.5rem 1.5rem 1.5rem;
  border-top: 3px solid var(--primary);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.footer-col p, .footer-col li {
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--dark);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive Media Queries */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-badges {
    justify-content: center;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .cart-drawer {
    max-width: 100%;
  }
}
