/* =============================================
   PEDIDOS BACÁN - Estilos globales
   Colores: Azul marino, Naranja, Amarillo, Azul real
   ============================================= */

:root {
  --navy: #1a237e;
  --navy-dark: #0d1257;
  --navy-light: #283593;
  --orange: #ff6f00;
  --orange-light: #ffa726;
  --yellow: #ffd600;
  --blue: #1565c0;
  --blue-light: #42a5f5;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--gray-50);
  color: #1f2937;
  min-height: 100vh;
}

/* ---- GRADIENTS & BRANDING ---- */
.bacan-gradient {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--blue) 70%, var(--blue-light) 100%);
}

.bacan-gradient-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 50%, var(--yellow) 100%);
}

.text-bacan-logo {
  background: linear-gradient(180deg, var(--orange) 0%, var(--yellow) 40%, var(--blue) 70%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: none;
}

/* ---- NAVBAR ---- */
.navbar {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: white;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(13, 18, 87, 0.4);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.4rem;
  text-decoration: none;
  color: white;
}

.navbar-brand img {
  height: 40px;
}

.navbar-brand span.tagline {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.8;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(255, 111, 0, 0.4); }

.btn-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
}
.btn-navy:hover { transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 2px solid currentColor;
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: white; }

.btn-sm { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
.btn-lg { padding: 0.8rem 1.8rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-success { background: var(--success); color: white; }
.btn-danger { background: var(--danger); color: white; }
.btn-warning { background: var(--warning); color: white; }

/* ---- CARDS ---- */
.card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
}

.card-body { padding: 1.25rem 1.5rem; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: #374151;
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
  background: white;
}
.form-control:focus { border-color: var(--blue); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%236b7280' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 1rem; padding-right: 2.5rem; }

/* ---- BADGES ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-pending { background: #fef3c7; color: #92400e; }
.badge-accepted { background: #dbeafe; color: #1e40af; }
.badge-preparing { background: #ede9fe; color: #5b21b6; }
.badge-ready { background: #d1fae5; color: #065f46; }
.badge-onway { background: #fed7aa; color: #9a3412; }
.badge-delivered { background: #dcfce7; color: #14532d; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }
.badge-paid { background: #dcfce7; color: #14532d; }
.badge-unpaid { background: #fef3c7; color: #92400e; }
.badge-cash { background: #dbeafe; color: #1e40af; }
.badge-transfer { background: #ede9fe; color: #5b21b6; }

/* ---- HERO / LANDING ---- */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 35%, var(--blue) 65%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,111,0,0.15) 0%, transparent 60%);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 1; }
}

.hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; color: white; line-height: 1.1; }
.hero .subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin: 1rem 0 2rem; letter-spacing: 2px; text-transform: uppercase; }

/* ---- CATEGORÍAS ---- */
.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: white;
  border: 2px solid #e5e7eb;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.category-chip:hover, .category-chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

/* ---- COMERCIO CARD ---- */
.comercio-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.2s ease;
}
.comercio-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.comercio-banner { height: 160px; background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); position: relative; }
.comercio-logo { position: absolute; bottom: -24px; left: 16px; width: 56px; height: 56px; border-radius: 12px; background: white; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.comercio-info { padding: 1.5rem 1rem 1rem; }
.comercio-name { font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.comercio-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: #6b7280; margin-top: 0.5rem; }

/* ---- CARRITO ---- */
.cart-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 111, 0, 0.4);
  z-index: 50;
  transition: all 0.2s;
  border: none;
}
.cart-fab:hover { transform: scale(1.1); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--navy);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
@media (min-width: 640px) { .modal-overlay { align-items: center; } }
.modal {
  background: white;
  border-radius: 20px 20px 20px 20px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
}
.modal-body { padding: 1.5rem; }
.modal-footer { padding: 1rem 1.5rem; border-top: 1px solid #f0f0f0; display: flex; gap: 0.75rem; justify-content: flex-end; }
.btn-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: #6b7280; padding: 0.25rem; border-radius: 6px; }
.btn-close:hover { background: #f3f4f6; }

/* ---- SIDEBAR / DASHBOARD ---- */
.dashboard-layout {
  display: flex;
  min-height: calc(100vh - 64px);
}
.sidebar {
  width: 240px;
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: white;
  padding: 1.5rem 0;
  flex-shrink: 0;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  border-left: 3px solid transparent;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.sidebar-item:hover { background: rgba(255,255,255,0.1); color: white; border-left-color: var(--orange-light); }
.sidebar-item.active { background: rgba(255,255,255,0.15); color: white; border-left-color: var(--orange); }
.sidebar-section { padding: 1rem 1.5rem 0.5rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.main-content { flex: 1; padding: 2rem; overflow-y: auto; background: var(--gray-50); }

/* ---- STATS CARDS ---- */
.stat-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.stat-number { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.stat-label { font-size: 0.8rem; color: #6b7280; margin-top: 2px; }

/* ---- PEDIDO CARD ---- */
.pedido-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 4px solid var(--blue-light);
  transition: all 0.2s;
}
.pedido-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.pedido-card.estado-pendiente { border-left-color: var(--warning); }
.pedido-card.estado-aceptado { border-left-color: var(--blue); }
.pedido-card.estado-preparando { border-left-color: #8b5cf6; }
.pedido-card.estado-listo { border-left-color: var(--success); }
.pedido-card.estado-en_camino { border-left-color: var(--orange); }
.pedido-card.estado-entregado { border-left-color: #14532d; }
.pedido-card.estado-cancelado { border-left-color: var(--danger); }

/* ---- PRICING SLIDER ---- */
.price-range {
  position: relative;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  margin: 1rem 0;
}
.price-range-fill {
  position: absolute;
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  border-radius: 3px;
}
.range-input { width: 100%; -webkit-appearance: none; height: 6px; background: transparent; outline: none; }
.range-input::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--orange); cursor: pointer; box-shadow: 0 2px 8px rgba(255,111,0,0.4); border: 3px solid white; }

/* ---- TOAST ---- */
.toast-container { position: fixed; top: 80px; right: 1.5rem; z-index: 1000; display: flex; flex-direction: column; gap: 0.5rem; }
.toast {
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInRight 0.3s ease;
  max-width: 360px;
}
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.toast-success { background: #22c55e; }
.toast-error { background: #ef4444; }
.toast-info { background: var(--navy); }
.toast-warning { background: #f59e0b; }

/* ---- LOADING ---- */
.spinner { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-overlay { position: fixed; inset: 0; background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; z-index: 999; }
.loading-content { text-align: center; }
.big-spinner { width: 48px; height: 48px; border: 4px solid rgba(26,35,126,0.2); border-top-color: var(--navy); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 1rem; }

/* ---- TABS ---- */
.tabs { display: flex; gap: 0.25rem; background: #f3f4f6; border-radius: 10px; padding: 4px; }
.tab-btn {
  flex: 1;
  padding: 0.6rem 1rem;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s;
}
.tab-btn.active { background: white; color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

/* ---- EMPTY STATE ---- */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.4; }
.empty-title { font-size: 1.2rem; font-weight: 700; color: #374151; }
.empty-desc { color: #9ca3af; margin-top: 0.5rem; font-size: 0.9rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .sidebar { display: none; }
  .dashboard-layout { flex-direction: column; }
  .main-content { padding: 1rem; }
  .sidebar-mobile { display: flex !important; }
}
.sidebar-mobile { display: none; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; }
.sidebar-mobile-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 0.75rem 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.65rem; font-weight: 600; cursor: pointer; border-top: 3px solid transparent; text-transform: uppercase; letter-spacing: 0.5px; }
.sidebar-mobile-item.active { color: white; border-top-color: var(--orange); }
.sidebar-mobile-item i { font-size: 1.1rem; }

/* ---- ANIMATIONS ---- */
.fade-in { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Logo flotante */
.logo-float {
  animation: logoFloat 3.5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px) rotate(-1deg); filter: drop-shadow(0 12px 40px rgba(255,111,0,0.45)) drop-shadow(0 4px 16px rgba(0,0,0,0.4)); }
  50% { transform: translateY(-14px) rotate(1deg); filter: drop-shadow(0 24px 50px rgba(255,111,0,0.6)) drop-shadow(0 8px 24px rgba(0,0,0,0.5)); }
}

/* Slide-up escalonado para hero */
.anim-slide-up {
  opacity: 0;
  animation: slideUpFade 0.7s ease forwards;
}
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- ROLE BENEFIT CARDS (Landing) ---- */
.role-benefit-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: left;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  animation: slideUpFade 0.7s ease forwards;
  cursor: default;
}
.role-benefit-card:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.25);
}
.role-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.role-benefit-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.35rem;
}
.role-benefit-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}
.role-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.role-benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}
.role-benefit-list li i {
  color: var(--yellow);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.role-benefit-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  text-align: center;
}
.role-benefit-btn:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.02);
}

/* ---- PAYMENT INFO BOX ---- */
.payment-box {
  border-radius: 12px;
  padding: 1rem;
  margin: 0.75rem 0;
}
.payment-box-cash { background: #eff6ff; border: 2px solid #bfdbfe; }
.payment-box-transfer { background: #f0fdf4; border: 2px solid #bbf7d0; }
.payment-total { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.payment-breakdown { display: flex; flex-direction: column; gap: 4px; margin-top: 0.5rem; }
.payment-row { display: flex; justify-content: space-between; font-size: 0.85rem; }
.payment-row.total { font-weight: 700; font-size: 1rem; border-top: 1px solid #e5e7eb; padding-top: 6px; margin-top: 4px; }

/* ---- LOGO AUTH (login/register) ---- */
.logo-auth-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #e8eeff);
  box-shadow:
    0 8px 32px rgba(26,35,126,0.18),
    0 2px 8px rgba(26,35,126,0.10),
    inset 0 2px 4px rgba(255,255,255,0.9),
    inset 0 -2px 4px rgba(26,35,126,0.08);
  animation: logo-auth-float 3s ease-in-out infinite;
  transform-style: preserve-3d;
  perspective: 600px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-auth-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #ff6f00, #ffd600, #1565c0, #1a237e, #ff6f00
  );
  z-index: -1;
  animation: logo-border-spin 4s linear infinite;
  opacity: 0.7;
}

.logo-auth-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 16px;
  background: radial-gradient(ellipse, rgba(26,35,126,0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: logo-auth-shadow 3s ease-in-out infinite;
}

.logo-auth-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(26,35,126,0.25));
  animation: logo-auth-img-bounce 3s ease-in-out infinite;
}

.logo-auth-wrap:hover {
  transform: scale(1.08) rotateY(8deg);
  box-shadow:
    0 16px 48px rgba(26,35,126,0.28),
    0 4px 16px rgba(26,35,126,0.15),
    inset 0 2px 4px rgba(255,255,255,0.9);
}

@keyframes logo-auth-float {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  50%       { transform: translateY(-8px) rotateY(4deg); }
}

@keyframes logo-auth-img-bounce {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-4px) scale(1.04); }
}

@keyframes logo-auth-shadow {
  0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.5; }
  50%       { transform: translateX(-50%) scaleX(0.7); opacity: 0.25; }
}

@keyframes logo-border-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
