/* ═══════════════════════════════════════════
   COMPONENTS — All UI component styles
   ═══════════════════════════════════════════ */

/* ── Header ─────────────────────────────── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.header-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  transition: color var(--transition-base);
}

.header.scrolled .header-name {
  color: var(--color-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header-cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  transition: background var(--transition-fast);
}

.header.scrolled .header-cart-btn {
  background: var(--color-surface-hover);
}

.header-cart-btn svg {
  width: 22px;
  height: 22px;
  color: white;
  transition: color var(--transition-base);
}

.header.scrolled .header-cart-btn svg {
  color: var(--color-text);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-badge[data-count="0"] {
  display: none;
}

/* ── Hero / Promo Slider ─────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--color-text);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl) var(--space-lg);
}

.hero-slide-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}

.hero-slide-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.hero-dots {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-dot.active {
  width: 24px;
  background: white;
}

/* ── Categories ──────────────────────────── */

.categories-section {
  padding: var(--space-xl) 0 var(--space-md);
  position: sticky;
  top: var(--header-height);
  z-index: 50;
  background: var(--color-bg);
}

.categories-scroll {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  padding-bottom: var(--space-sm);
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.categories-scroll::-webkit-scrollbar {
  display: none;
}

.category-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  background: var(--color-surface);
  color: var(--color-text-secondary);
  border: 1.5px solid var(--color-border);
  transition: all var(--transition-fast);
  scroll-snap-align: start;
}

.category-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.category-btn.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.category-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* ── Products Grid ───────────────────────── */

.products-section {
  padding-bottom: var(--space-3xl);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: row;
  animation: card-fade-in 0.4s ease-out both;
}

@keyframes card-fade-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.product-card-img-wrap {
  position: relative;
  width: 120px;
  min-height: 120px;
  flex-shrink: 0;
  overflow: hidden;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-border-light);
  color: var(--color-text-muted);
  font-size: 2rem;
}

.product-tag {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-tag-popular {
  background: var(--color-secondary);
  color: white;
}

.product-tag-premium {
  background: var(--color-accent);
  color: white;
}

.product-tag-new {
  background: var(--color-primary);
  color: white;
}

.product-card-body {
  flex: 1;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.product-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 2px;
}

.product-card-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-sm);
}

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

.product-add-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-lg);
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
  flex-shrink: 0;
}

.product-add-btn:hover {
  background: var(--color-primary-dark);
  transform: scale(1.05);
}

.product-add-btn svg {
  width: 20px;
  height: 20px;
}

.product-unavailable {
  opacity: 0.5;
  pointer-events: none;
}

.product-unavailable-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ── Floating Cart Button ────────────────── */

.floating-cart {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-md);
  z-index: 90;
}

.floating-cart-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}

.floating-cart-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.floating-cart-btn svg {
  width: 26px;
  height: 26px;
}

.floating-cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-bg);
}

.floating-cart-badge[data-count="0"] {
  display: none;
}

/* ── Cart Drawer ─────────────────────────── */

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-overlay);
  backdrop-filter: blur(4px);
  opacity: 0;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  z-index: 201;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  box-shadow: var(--shadow-xl);
}

/* Wrapper que envuelve cart-body + fade */
.cart-body-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Indicador visual de scroll — posicionado sobre el cart-body */
.cart-scroll-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 8px; /* deja espacio al scrollbar */
  height: 64px;
  background: linear-gradient(to top, var(--color-bg) 30%, transparent 100%);
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
  transition: opacity 0.3s;
}

.cart-scroll-fade-icon {
  font-size: 1rem;
  color: var(--color-text-muted);
  animation: bounce-down 1.2s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-light);
}

.cart-header-left {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cart-header-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-header-icon svg {
  width: 20px;
  height: 20px;
}

.cart-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.cart-count-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.cart-close-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.cart-close-btn:hover {
  background: var(--color-surface-hover);
}

.cart-close-btn svg {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
}

/* Cart Body */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
  min-height: 0;
  /* Scrollbar visible y con estilo */
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) var(--color-border-light);
}

.cart-body::-webkit-scrollbar {
  width: 5px;
}

.cart-body::-webkit-scrollbar-track {
  background: var(--color-border-light);
  border-radius: var(--radius-full);
}

.cart-body::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

/* Degradado inferior que indica más contenido — en el contenedor padre */

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: var(--space-xl);
}

.cart-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.cart-empty-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-text-muted);
}

.cart-empty-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xs);
}

.cart-empty-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Cart Item */
.cart-item {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
}

.cart-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
}

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

.cart-item-extras {
  margin-top: 4px;
}

.cart-item-extra {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.cart-item-remove {
  padding: 4px;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.cart-item-remove:hover {
  color: #ef4444;
  background: #fef2f2;
}

.cart-item-remove svg {
  width: 16px;
  height: 16px;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border-light);
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cart-qty-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: var(--color-surface-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.cart-qty-btn:hover {
  background: var(--color-border);
}

.cart-qty-btn svg {
  width: 14px;
  height: 14px;
  color: var(--color-text-secondary);
}

.cart-qty-value {
  width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
}

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

.cart-clear-btn {
  width: 100%;
  padding: var(--space-sm) 0;
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ef4444;
  border-radius: var(--radius-lg);
  transition: background var(--transition-fast);
}

.cart-clear-btn:hover {
  background: #fef2f2;
}

/* Cart Footer / Checkout */
.cart-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
  padding: var(--space-md) var(--space-lg);
}

.cart-footer > * + * {
  margin-top: var(--space-md);
}

/* Delivery toggle */
.delivery-toggle {
  display: flex;
  gap: var(--space-xs);
  padding: 4px;
  background: var(--color-surface-hover);
  border-radius: var(--radius-lg);
}

.delivery-toggle-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.delivery-toggle-btn.active {
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.delivery-toggle-btn svg {
  width: 16px;
  height: 16px;
}

/* Address form */
.address-form {
  padding: var(--space-md);
  background: var(--color-surface-hover);
  border-radius: var(--radius-lg);
}

.address-form-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.address-form-header svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.address-form-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.address-form-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-sm);
}

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

.address-input {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.address-input::placeholder {
  color: var(--color-text-muted);
}

.address-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

/* Comments */
.cart-comments {
  width: 100%;
}

.cart-comments-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xs);
}

.cart-comments-textarea {
  width: 100%;
  min-height: 60px;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-surface-hover);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  color: var(--color-text);
  resize: vertical;
  transition: border-color var(--transition-fast);
}

.cart-comments-textarea:focus {
  border-color: var(--color-primary);
}

/* Price summary */
.cart-summary {
  font-size: 0.9rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  color: var(--color-text-muted);
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-sm);
  margin-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}

.cart-summary-total-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

.cart-summary-total-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
}

/* WhatsApp button */
.cart-whatsapp-btn {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-xl);
  background: #25D366;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.cart-whatsapp-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.cart-whatsapp-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

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

/* ── Extra / Addon Modal ─────────────────── */

.extra-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--color-overlay);
  backdrop-filter: blur(4px);
  opacity: 0;
  display: flex;
  align-items: flex-end; /* mobile: modal anclado abajo */
}

.extra-modal {
  position: relative;
  width: 100%;
  z-index: 301;
  background: var(--color-surface);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(100%);
  box-shadow: var(--shadow-xl);
}

.extra-modal-handle {
  width: 40px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  margin: var(--space-sm) auto var(--space-md);
}

.extra-modal-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.extra-modal-body {
  padding: var(--space-lg);
}

.extra-modal-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.extra-modal-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.extra-modal-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.extras-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
}

.extra-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border-light);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.extra-option:last-child {
  border-bottom: none;
}

.extra-option-left {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.extra-checkbox {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.extra-checkbox.checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.extra-checkbox.checked svg {
  color: white;
}

.extra-checkbox svg {
  width: 14px;
  height: 14px;
  color: transparent;
}

.extra-option-name {
  font-size: 0.9rem;
  font-weight: 500;
}

.extra-option-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Quantity in modal */
.extra-modal-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.extra-qty-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-surface-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  border: 1.5px solid var(--color-border);
}

.extra-qty-btn:hover {
  background: var(--color-border);
}

.extra-qty-btn svg {
  width: 18px;
  height: 18px;
}

.extra-qty-value {
  font-size: 1.5rem;
  font-weight: 800;
  min-width: 40px;
  text-align: center;
}

/* Add to cart from modal */
.extra-add-btn {
  width: 100%;
  padding: var(--space-md);
  border-radius: var(--radius-xl);
  background: var(--color-primary);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: opacity var(--transition-fast);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.extra-add-btn:hover {
  opacity: 0.92;
}

.extra-add-btn-price {
  opacity: 0.85;
  font-weight: 600;
}

/* ── Location Section ────────────────────── */

.location-section {
  background: var(--color-surface);
  padding: var(--space-2xl) 0;
  margin-top: var(--space-xl);
}

.location-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.location-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.location-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-item-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

.location-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-item-value {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.5;
  white-space: pre-line;
}

.location-map {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

/* ── Footer ──────────────────────────────── */

.footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.7);
  padding: var(--space-xl) 0;
  text-align: center;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-sm);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: white;
}

.footer-link svg {
  width: 16px;
  height: 16px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ── Install Banner (PWA) ────────────────── */

.install-banner {
  position: relative;
  z-index: 101;
  background: var(--color-primary);
  color: white;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.85rem;
}

.install-banner-text {
  font-weight: 500;
}

.install-banner-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.install-banner-btn {
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  background: white;
  color: var(--color-primary);
  transition: opacity var(--transition-fast);
}

.install-banner-btn:hover {
  opacity: 0.9;
}

.install-banner-close {
  padding: 4px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
}

.install-banner-close:hover {
  color: white;
}

.install-banner-close svg {
  width: 18px;
  height: 18px;
}

/* Demo banner */
.demo-banner {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
  color: white;
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.8rem;
  font-weight: 600;
}
