:root {
  --bg-main: #F4F5F7;
  /* Fondo sutil como en la imagen */
  --bg-surface: #FFFFFF;
  --bg-secondary: #E5E7EB;
  --text-primary: #0F2A4A;
  /* Azul oscuro para textos */
  --text-secondary: #4B5563;
  /* Gris oscuro para el subtítulo */
  --accent: #114282;
  /* Azul royal de la camiseta */
  --accent-light: #1A64B8;
  /* Azul más claro para find */
  --accent-hover: #0B2C58;
  --border: rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.03em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
header {
  padding: 1.25rem 0;
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.brand-logo {
  height: 32px;
  width: auto;
}

.brand-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.brand-find {
  color: var(--accent-light);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

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

/* Hero Section */
.hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.logo-container-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-brand-logo {
  height: 110px;
  margin-bottom: 0.5rem;
}

.hero-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* Modern Search Box */
.search-container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  background: var(--bg-surface);
  padding: 0.5rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.search-container:focus-within {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 1.5rem;
  font-size: 1.1rem;
  color: var(--text-primary);
  outline: none;
}

.search-input::placeholder {
  color: #9CA3AF;
}

.search-btn {
  background: var(--text-primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--accent);
  transform: scale(1.02);
}

.filter-select {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--bg-surface);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}

.filter-select:focus,
.filter-select:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

/* Stock Loader / Status Container (Inline Pill Layout) */
.stock-status-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem auto 1.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--bg-surface);
  border-radius: 9999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stock-loading-state {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pulse-blue-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-light);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.pulse-blue-dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--accent-light);
  border-radius: 50%;
  animation: pulseRing 1.5s infinite ease-in-out;
}

.loading-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.loading-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.loading-store-name {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Loaded state styling */
.stock-loaded-state {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loaded-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #065F46;
  font-weight: 600;
  font-size: 0.9rem;
  animation: scaleIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pulse-green-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.pulse-green-dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #10B981;
  border-radius: 50%;
  animation: pulseRing 2s infinite ease-in-out;
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

@keyframes scaleIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Bento Grid */
section {
  padding: 6rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.25rem;
}

.section-subtitle {
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.shirt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.shirt-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.shirt-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  margin-bottom: 1.5rem;
  background: var(--bg-secondary);
}

.shirt-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.shirt-card:hover .shirt-image {
  transform: scale(1.05);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.shirt-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shirt-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.shirt-details {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  flex: 1;
}

.shirt-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.shirt-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  width: 100%;
}

.shirt-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.shirt-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.view-btn {
  background-color: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.view-btn:hover {
  background-color: #0284C7;
  transform: translateY(-2px);
}

.fav-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.45rem 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.fav-btn:hover {
  background: var(--bg-secondary);
  color: #EF4444; /* Red heart on hover */
  border-color: #EF4444;
}

.fav-btn.active {
  background: #FEF2F2;
  color: #EF4444;
  border-color: #EF4444;
}

.fav-btn.active svg {
  fill: currentColor;
}

/* Marquee */
.stores-marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 3rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.marquee-track {
  display: inline-flex;
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.store-logo {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0 4rem;
  opacity: 0.4;
  transition: var(--transition);
}

.store-logo:hover {
  opacity: 1;
  color: var(--text-primary);
}

/* Photorealistic Intro Animation */
#intro-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  animation: fadeOutIntro 0.8s ease-in-out 4s forwards;
}

.realistic-scene {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.real-box {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  /* Removes white bg */
  z-index: 1;
  opacity: 0;
  animation: fadeInBox 0.5s ease forwards;
}

.real-shirt {
  position: absolute;
  width: 80%;
  height: 80%;
  object-fit: contain;
  mix-blend-mode: multiply;
  z-index: 2;
  transform: scale(0.5) translateY(50px);
  opacity: 0;
  animation: emergeAndFill 3.5s cubic-bezier(0.7, 0, 0.3, 1) 1s forwards;
}

@keyframes fadeInBox {
  to {
    opacity: 1;
  }
}

@keyframes emergeAndFill {
  0% {
    transform: scale(0.4) translateY(50px);
    opacity: 0;
  }

  15% {
    transform: scale(0.6) translateY(-20px);
    opacity: 1;
  }

  30% {
    transform: scale(0.8) translateY(-40px);
    opacity: 1;
  }

  70% {
    transform: scale(1) translateY(-50px);
    opacity: 1;
    filter: blur(0px);
  }

  100% {
    transform: scale(15) translateY(-50px);
    opacity: 0;
    filter: blur(10px);
  }
}

@keyframes fadeOutIntro {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
  }
}

/*
body.animating {
  overflow: hidden;
}
*/

/* Modal de Alertas */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--bg-surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 550px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--text-primary);
}

.modal-content h2 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.modal-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  background-color: var(--bg-main);
}

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

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
}

.submit-alert-btn {
  width: 100%;
  padding: 1rem;
  background: #10B981;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  transition: var(--transition);
}

.submit-alert-btn:hover {
  background: #059669;
}

.alert-btn {
  padding: 0 1.5rem;
  background: #10B981;
  color: white;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.alert-btn:hover {
  background: #059669;
  transform: scale(1.02);
}

/* Custom Dropdown Filters */
.dropdown-check {
  position: relative;
  display: inline-block;
  min-width: 160px;
}

.dropdown-btn {
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--bg-surface);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

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

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--bg-surface);
  min-width: 100%;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 0.5rem;
  z-index: 100;
  top: calc(100% + 5px);
  max-height: 250px;
  overflow-y: auto;
}

.dropdown-content.show {
  display: block;
  animation: fadeInBox 0.2s ease forwards;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: background-color 0.15s;
}

.dropdown-item:hover {
  background-color: var(--bg-main);
}

.dropdown-item input[type="checkbox"] {
  cursor: pointer;
  accent-color: var(--accent);
}

.dropdown-item.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Sidebar Laterales */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.sidebar {
  position: fixed;
  top: 0;
  left: -350px;
  width: 350px;
  max-width: 80vw;
  height: 100vh;
  background-color: var(--bg-surface);
  z-index: 1002;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.active {
  transform: translateX(350px);
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-header h2 {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.close-sidebar {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition);
  line-height: 1;
}

.close-sidebar:hover {
  color: var(--text-primary);
}

.sidebar-content {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  font-size: 1.1rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background-color 0.15s;
}

.sidebar-item:hover {
  background-color: var(--bg-main);
}

.sidebar-item input[type="checkbox"] {
  cursor: pointer;
  accent-color: var(--accent);
  width: 1.25rem;
  height: 1.25rem;
}

/* Banner de Hallazgos Semanales (Horizontal Pequeño) */
.hallazgos-banner-container {
  max-width: 550px;
  margin: 0 auto 2rem auto;
  border-radius: var(--radius-md);
  background-color: #111827;
  border: 1px solid #374151;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.banner-item {
  display: none;
  animation: fadeInBox 0.4s ease forwards;
}

.banner-item.active {
  display: flex;
  align-items: center;
}

.banner-image-wrapper {
  width: 110px;
  height: 100px;
  flex-shrink: 0;
  background-color: #1F2937;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-info {
  flex: 1;
  padding: 0.75rem 1.25rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #10B981;
  margin-bottom: 0.35rem;
  letter-spacing: 0.05em;
}

.banner-title {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 380px;
}

.banner-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner-price {
  color: #E5E7EB;
  font-size: 1.1rem;
  font-weight: 700;
}

.banner-link {
  color: #10B981;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.banner-link:hover {
  text-decoration: underline;
  color: #059669;
}

/* Botón Icono Nueva Pestaña */
.icon-btn-new-tab {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  transition: var(--transition);
}

.icon-btn-new-tab:hover {
  color: var(--accent);
  background: #E0F2FE;
}

/* =========================================
   RESPONSIVE DESIGN (Mobile & Tablet)
   ========================================= */
@media (max-width: 768px) {

  /* Contenedores generales */
  .container {
    padding: 0 1rem;
  }

  /* Header y Navegación */
  header {
    padding: 1rem 0;
  }

  nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Hero Section */
  .hero {
    padding: 3rem 0 2rem;
  }

  .hero-brand-logo {
    height: 80px;
    margin-bottom: 0.5rem;
  }

  .hero-brand-name {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .hero-desc {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  /* Buscador (Search Container) */
  .search-container {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: 1rem;
    gap: 0.5rem;
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .search-input {
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 0.5rem;
  }

  .search-btn,
  .alert-btn {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-md);
    padding: 0.875rem;
  }

  /* Filtros */
  .filters-panel {
    flex-direction: column;
    align-items: stretch !important;
  }

  .filter-select {
    width: 100%;
  }

  /* Stock Loader / Status Container responsive */
  .stock-status-container {
    margin: 0.5rem 1rem 1rem;
    padding: 0.4rem 1rem;
  }

  /* Grid de Camisetas */
  .shirt-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }

  .shirt-image-wrapper {
    height: 180px;
  }

  .shirt-info h3 {
    font-size: 0.95rem;
  }

  .shirt-price {
    font-size: 1.1rem;
  }

  .view-btn {
    font-size: 0.8rem;
  }

  .store-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }

  /* Títulos de sección */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  /* Modal de Alertas */
  .modal-content {
    padding: 1.5rem;
    width: 95%;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

.price-filter-group input[type=number]::-webkit-inner-spin-button,
.price-filter-group input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.price-filter-group input[type=number] {
  -moz-appearance: textfield;
}

/* Splash Screen Animation */
html.skip-splash #splash-screen {
  display: none !important;
}

#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-main);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.splash-content {
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
}

.splash-find {
  color: var(--accent-light);
}

.splash-i-wrapper {
  position: relative;
  display: inline-block;
  line-height: 1;
}

.splash-i-real-dot {
  position: absolute;
  top: 0.03em;
  left: 50%;
  margin-left: -0.11em;
  width: 0.22em;
  height: 0.22em;
  background-color: var(--accent-light);
  border-radius: 50%;
  opacity: 0;
  animation: fadeInDot 0.4s ease 2.6s forwards;
}

.splash-ball-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: moveBallX 2.6s linear forwards;
}

.splash-i-ball {
  position: absolute;
  font-size: 1.25rem;
  top: 0.03em;
  left: 50%;
  margin-left: -0.625rem;
  opacity: 1;
  transform-origin: center bottom;
  animation: moveBallY 2.6s forwards, fadeOutBall 0.4s ease 2.6s forwards;
}

@keyframes moveBallX {
  0% { transform: translateX(400px); }
  100% { transform: translateX(0); }
}

@keyframes moveBallY {
  0% {
    transform: translateY(-300px) rotate(0deg);
    animation-timing-function: cubic-bezier(0.5, 0, 1, 1);
  }
  25% {
    transform: translateY(0.8em) rotate(-180deg) scale(1.1, 0.7);
    animation-timing-function: cubic-bezier(0, 0, 0.5, 1);
  }
  50% {
    transform: translateY(-150px) rotate(-360deg) scale(1, 1);
    animation-timing-function: cubic-bezier(0.5, 0, 1, 1);
  }
  75% {
    transform: translateY(0.8em) rotate(-540deg) scale(1.05, 0.85);
    animation-timing-function: cubic-bezier(0, 0, 0.5, 1);
  }
  90% {
    transform: translateY(-40px) rotate(-630deg) scale(1, 1);
    animation-timing-function: cubic-bezier(0.5, 0, 1, 1);
  }
  100% {
    transform: translateY(0) rotate(-720deg) scale(1, 1);
  }
}

@keyframes fadeOutBall {
  to { opacity: 0; }
}

@keyframes fadeInDot {
  to { opacity: 1; }
}