/* ==========================================================================
   SALEPERU.PE - ESTILOS DE COMPONENTES PREMIUM UI
   ========================================================================== */

/* ==========================================================================
   1. COMPONENTE INTERRUPTOR DE TEMA (CLARO/OSCURO)
   ========================================================================== */
.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--bg-body);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-smooth);
}

.theme-toggle-btn:hover {
  transform: rotate(15deg) scale(1.05);
  background-color: var(--bg-card);
}

.theme-toggle-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ==========================================================================
   2. COMPONENTE FILTROS DE CATEGORÍAS (PILLS)
   ========================================================================== */
.filters-wrapper {
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE/Edge */
  padding: 4px 0 16px 0;
  margin-top: 12px;
  -webkit-overflow-scrolling: touch; /* Desplazamiento por inercia táctil en iOS */
  scroll-behavior: smooth;
  
  /* Máscara gradiente de desvanecimiento sutil a la derecha para indicar interactividad scroll */
  -webkit-mask-image: linear-gradient(to right, #000 82%, transparent 98%);
  mask-image: linear-gradient(to right, #000 82%, transparent 98%);
  transition: padding var(--transition-smooth), margin var(--transition-smooth);
}

.filters-wrapper::-webkit-scrollbar {
  display: none; /* Safari & Chrome */
}

.filters-container {
  display: flex;
  gap: 10px;
  padding: 2px;
  width: max-content;
}

.filter-pill {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.filter-pill:hover {
  color: var(--text-primary);
  border-color: var(--text-tertiary);
  transform: translateY(-1px);
}

.filter-pill.active {
  background-color: var(--text-primary);
  color: var(--bg-card);
  border-color: var(--text-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Modo oscuro ajuste de filtro activo */
[data-theme="dark"] .filter-pill.active {
  background-color: var(--text-primary);
  color: var(--bg-card);
}

/* Optimización y compactación del carrusel de categorías en móviles */
@media (max-width: 576px) {
  .filters-wrapper {
    /* Hack de margen negativo para desplazamiento de borde a borde de pantalla */
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 8px; /* Oculta scrollbar y reduce altura */
    margin-top: 8px;
    
    /* Incrementar suavidad del gradiente */
    -webkit-mask-image: linear-gradient(to right, #000 80%, transparent 96%);
    mask-image: linear-gradient(to right, #000 80%, transparent 96%);
  }
  
  .filters-container {
    gap: 8px;
  }
  
  .filter-pill {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   3. COMPONENTE SISTEMA DE HISTORIAS (BARRA)
   ========================================================================== */
.stories-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 4px 16px 4px;
}

.stories-container::-webkit-scrollbar {
  display: none;
}

.story-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  width: 76px;
  flex-shrink: 0;
  transition: transform var(--transition-smooth);
}

.story-circle-item:hover {
  transform: scale(1.04);
}

.story-ring {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--grad-stories);
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.story-circle-item.viewed .story-ring {
  background: var(--border-color); /* Apagado si ya fue vista */
}

.story-avatar {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  border: 3px solid var(--bg-body);
  object-fit: cover;
  background-color: var(--bg-skeleton);
  transition: border-color var(--transition-fast);
}

[data-theme="dark"] .story-avatar {
  border-color: var(--bg-body);
}

.story-label {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==========================================================================
   4. COMPONENTE TARJETAS DEL FEED (TIKTOK / APPLE STYLE)
   ========================================================================== */
.deal-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  position: relative;
}

.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--text-tertiary);
}

/* Área de Imagen de Tarjeta */
.card-media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--bg-skeleton);
}

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

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

/* Etiquetas e insignias en la imagen */
.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.badge {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-on-accent);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-hot {
  background: var(--grad-premium);
  box-shadow: var(--shadow-hot);
  animation: pulse-hot 1.8s infinite;
}

.badge-flash {
  background: var(--grad-flash);
  color: #000;
}

.badge-error {
  background: var(--grad-error);
}

.badge-coupon {
  background-color: var(--color-coupon);
}

/* Tienda flotante a la derecha de la imagen */
.card-store {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 10px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

/* Botón flotante para compartir */
.card-share-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d1d1f;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.card-share-btn:hover {
  transform: scale(1.1);
  background-color: #ffffff;
}

.card-share-btn svg {
  width: 16px;
  height: 16px;
}

/* Cuerpo de la Tarjeta */
.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7rem;
}

.card-description {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.5rem;
  line-height: 1.4;
}

/* Área de Precios */
.card-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 14px;
}

.price-offer {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-hot);
}

.price-original {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.price-discount {
  background-color: rgba(255, 69, 0, 0.1);
  color: var(--color-hot);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
}

/* Bloque de Cupón */
.card-coupon-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(52, 199, 89, 0.08);
  border: 1px dashed var(--color-coupon);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 14px;
  font-size: 0.82rem;
}

[data-theme="dark"] .card-coupon-container {
  background-color: rgba(52, 199, 89, 0.04);
}

.coupon-text {
  font-weight: 600;
  color: var(--color-coupon);
}

.coupon-code-badge {
  background-color: var(--color-coupon);
  color: #ffffff;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: monospace;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.coupon-code-badge:active {
  transform: scale(0.95);
}

/* Botón Comprar / Ir a oferta */
.card-btn {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--grad-royal);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 15px rgba(107, 17, 255, 0.2);
}

.card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 17, 255, 0.35);
  opacity: 0.95;
}

.card-btn:active {
  transform: translateY(1px);
}

/* Ajuste específico para ofertas expiradas */
.deal-card.expired {
  opacity: 0.55;
  pointer-events: none;
}

/* ==========================================================================
   5. COMPONENTE VISOR DE HISTORIAS A PANTALLA COMPLETA
   ========================================================================== */
.story-viewer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* dynamic viewport height */
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: none; /* Se activa por JS */
  align-items: center;
  justify-content: center;
  touch-action: none; /* Previene scroll nativo en móvil */
  backdrop-filter: blur(10px);
}

.story-viewer-container {
  width: 100%;
  max-width: 440px; /* Tamaño teléfono en desktop */
  height: 100%;
  max-height: 820px;
  position: relative;
  background-color: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

@media (max-width: 576px) {
  .story-viewer-container {
    max-width: 100%;
    height: 100vh;
    height: -webkit-fill-available; /* iOS toolbar bug fix */
    height: 100dvh; /* dynamic height */
    max-height: 100dvh !important;
    border-radius: 0;
    overflow: hidden;
  }
  
  /* Compactar el pie de las historias en móvil para que el botón nunca se pierda */
  .story-footer {
    padding: 16px 16px calc(24px + env(safe-area-inset-bottom)) 16px !important;
    gap: 8px !important;
  }
  
  .story-action-btn {
    padding: 10px 14px !important;
    font-size: 0.88rem !important;
    width: 95% !important;
  }
  
  .story-caption {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
    margin-bottom: 2px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

/* Cabecera del Visor (Barras de progreso + info) */
.story-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 16px 24px 16px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  z-index: 10;
}

/* Barra superior segmentada */
.story-progress-bar-container {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.story-progress-segment {
  flex-grow: 1;
  height: 3px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.35);
  overflow: hidden;
  position: relative;
}

.story-progress-fill {
  height: 100%;
  width: 0%;
  background-color: #ffffff;
  border-radius: 2px;
}

.story-user-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.story-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.story-profile-img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.5);
  object-fit: cover;
}

.story-profile-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.story-close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  transition: background-color var(--transition-fast);
}

.story-close-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Cuerpo de la Historia (Multimedia) */
.story-body {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.story-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #111;
}

/* Áreas invisibles para tap izquierdo y derecho */
.story-nav-tap {
  position: absolute;
  top: 70px;
  bottom: 120px;
  width: 25%;
  z-index: 5;
}

.story-nav-left {
  left: 0;
}

.story-nav-right {
  right: 0;
  width: 75%; /* Mayor espacio para avanzar */
}

/* Pie del Visor (Botón de Acción + Caption) */
.story-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 16px 36px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.story-caption {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  max-width: 90%;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.story-action-btn {
  width: 90%;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--grad-premium);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: pulse-glow-btn 2.2s infinite;
  transition: transform var(--transition-fast);
}

.story-action-btn:active {
  transform: scale(0.97);
}

/* ==========================================================================
   6. SKELETON LOADERS (PANTALLA DE ESPERA FLUIDA)
   ========================================================================== */
.skeleton {
  background-color: var(--bg-skeleton);
  background-image: linear-gradient(90deg, var(--bg-skeleton) 25%, rgba(255,255,255, 0.15) 37%, var(--bg-skeleton) 63%);
  background-size: 400% 100%;
  animation: skeleton-loading 1.4s ease infinite;
}

.skeleton-story-avatar {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
}

.skeleton-story-text {
  width: 50px;
  height: 10px;
  border-radius: 4px;
  margin: 0 auto;
}

.skeleton-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.skeleton-card-line {
  height: 14px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.skeleton-card-title1 {
  width: 85%;
  margin-top: 12px;
}

.skeleton-card-title2 {
  width: 60%;
}

.skeleton-card-desc1 {
  width: 100%;
  height: 10px;
  margin-top: 14px;
}

.skeleton-card-desc2 {
  width: 90%;
  height: 10px;
}

.skeleton-card-price {
  width: 40%;
  height: 24px;
  margin-top: 12px;
}

.skeleton-card-btn {
  width: 100%;
  height: 44px;
  border-radius: var(--radius-md);
  margin-top: 8px;
}

/* ==========================================================================
   7. MODALES GENÉRICOS (COMPARTIR)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-window {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: 400px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform var(--transition-smooth);
}

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

.modal-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.modal-title {
  font-size: 1.2rem;
  font-weight: 700;
}

.modal-close {
  background: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

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

.share-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.share-btn:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

.share-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.share-btn:active .share-icon-circle {
  transform: scale(0.92);
}

.share-wa { background-color: #25d366; }
.share-tg { background-color: #0088cc; }
.share-copy { background-color: #007aff; }

.share-icon-circle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.copy-link-container {
  display: flex;
  background-color: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.copy-link-input {
  flex-grow: 1;
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-link-btn {
  padding: 0 16px;
  background-color: var(--text-primary);
  color: var(--bg-card);
  font-weight: 600;
  font-size: 0.8rem;
  transition: opacity var(--transition-fast);
}

.copy-link-btn:hover {
  opacity: 0.9;
}

/* ==========================================================================
   8. NOTIFICACIÓN TOAST (NOTAS DE COPIADO EXITOSO)
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: #1d1d1f;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
  opacity: 0;
  z-index: 2000;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast-notification.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   9. ELEMENTOS AUXILIARES Y ACCESIBILIDAD
   ========================================================================== */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.empty-state-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

/* ==========================================================================
   ANIMACIONES CLAVE
   ========================================================================== */
@keyframes pulse-hot {
  0% { transform: scale(1); box-shadow: 0 4px 10px rgba(255, 69, 0, 0.2); }
  50% { transform: scale(1.03); box-shadow: 0 4px 18px rgba(255, 69, 0, 0.4); }
  100% { transform: scale(1); box-shadow: 0 4px 10px rgba(255, 69, 0, 0.2); }
}

@keyframes pulse-glow-btn {
  0% { transform: scale(1); box-shadow: 0 8px 25px rgba(255, 69, 0, 0.35); }
  50% { transform: scale(1.02); box-shadow: 0 8px 30px rgba(255, 69, 0, 0.55); }
  100% { transform: scale(1); box-shadow: 0 8px 25px rgba(255, 69, 0, 0.35); }
}

@keyframes skeleton-loading {
  0% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Botón de Cargar Más Glassmorphic Premium */
.load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  margin: 16px auto;
  cursor: pointer;
}

.load-more-btn:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
}

.load-more-btn:active {
  transform: translateY(0);
}

[data-theme="dark"] .load-more-btn {
  background-color: var(--bg-card);
  border-color: var(--border-color);
}
