/* Smooth scroll global */
html {
  scroll-behavior: smooth;
}

/* ================================
   SHOP ITEMS - DISEÑO COMPLETO
   Sobrescribe el template original
================================ */

/* Contenedor con espacio a los costados */
.shop-area .container-fluid {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* ================================
   BARRA DE FILTROS
================================ */
.inventory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 20px;
  margin-bottom: 24px;
  background: rgba(30, 30, 40, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.inventory-filters .filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 200px;
}

.inventory-filters .filter-group label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.inventory-filters .filter-group input,
.inventory-filters .filter-group select {
  flex: 1;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.inventory-filters .filter-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.inventory-filters .filter-group input:focus,
.inventory-filters .filter-group select:focus {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.inventory-filters .filter-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.inventory-filters .filter-group select option {
  background: #1a1a24;
  color: #fff;
}

.inventory-filters .clear-filters-btn {
  padding: 12px 20px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  color: #f87171;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inventory-filters .clear-filters-btn:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.5);
}

.inventory-filters .off-btn {
  padding: 12px 20px;
  background: #f5a93826;
  border: 1px solid rgba(228, 127, 12, 0.3);
  border-radius: 8px;
  color: rgb(233, 147, 18);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inventory-filters .off-btn:hover {
  background: rgba(245, 169, 56, 0.25);
  border-color: rgba(228, 127, 12, 0.5);
}

.inventory-filters .ars-btn {
  padding: 12px 20px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  color: #4ade80;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.inventory-filters .ars-btn:hover {
  background: rgba(34, 197, 94, 0.25);
  border-color: rgba(34, 197, 94, 0.5);
}

.inventory-filters .ars-btn.active-ars {
  background: rgba(34, 197, 94, 0.35);
  border-color: rgba(34, 197, 94, 0.6);
  color: #86efac;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.2);
}

.inventory-filters .ars-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* Filtro de estado (chips / checkboxes) */
.status-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  margin-bottom: 24px;
  background: rgba(30, 30, 40, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.status-filters-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 4px;
  white-space: nowrap;
}

.status-chip {
  cursor: pointer;
  margin: 0;
  display: inline-flex;
}

.status-chip input[type="checkbox"] {
  display: none;
}

.status-chip-inner {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.2s ease;
  user-select: none;
}

.status-chip-inner:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}

.status-chip input:checked + .status-chip-inner.fn {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.5);
  color: #86efac;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.15);
}

.status-chip input:checked + .status-chip-inner.mw {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
  color: #93c5fd;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.15);
}

.status-chip input:checked + .status-chip-inner.ft {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.5);
  color: #fcd34d;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.15);
}

.status-chip input:checked + .status-chip-inner.ww {
  background: rgba(249, 115, 22, 0.2);
  border-color: rgba(249, 115, 22, 0.5);
  color: #fdba74;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.15);
}

.status-chip input:checked + .status-chip-inner.bs {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
  color: #fca5a5;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.15);
}

.status-filters-separator {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 6px;
  flex-shrink: 0;
}

.price-range-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-range-input {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.price-range-input:focus-within {
  border-color: rgba(143, 0, 202, 0.5);
  box-shadow: 0 0 0 3px rgba(143, 0, 202, 0.08);
}

.price-range-prefix {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 600;
  margin-right: 4px;
  user-select: none;
}

.price-range-input input {
  width: 72px;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
  -moz-appearance: textfield;
}

.price-range-input input::-webkit-outer-spin-button,
.price-range-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.price-range-input input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.price-range-dash {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  user-select: none;
}

@media (max-width: 575px) {
  .status-filters {
    padding: 12px;
    gap: 8px;
  }
  .status-chip-inner {
    padding: 7px 14px;
    font-size: 12px;
  }
  .status-filters-separator {
    width: 100%;
    height: 1px;
    margin: 4px 0;
  }
  .price-range-group {
    width: 100%;
  }
  .price-range-input {
    flex: 1;
  }
  .price-range-input input {
    width: 100%;
  }
}

/* Mensaje sin resultados */
.no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.no-results i {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.no-results p {
  font-size: 16px;
  margin: 0;
}

/* Responsive filtros */
@media (max-width: 991px) {
  .inventory-filters {
    padding: 16px;
  }
  
  .inventory-filters .filter-group {
    min-width: 150px;
  }
}

@media (max-width: 575px) {
  .inventory-filters {
    padding: 12px;
    gap: 10px;
  }
  
  .inventory-filters .filter-group {
    min-width: 100%;
  }
  
  .inventory-filters .filter-group label {
    display: none;
  }
  
  .inventory-filters .clear-filters-btn {
    width: 100%;
    justify-content: center;
  }

    .inventory-filters .off-btn {
    width: 100%;
    justify-content: center;
  }

  .inventory-filters .ars-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Grid de inventario - 4 cards por fila */
.shop-area .inventory-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

@media (max-width: 1199px) {
  .shop-area .inventory-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 991px) {
  .shop-area .inventory-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  
  .shop-area .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 575px) {
  .shop-area .inventory-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  
  .shop-area .container-fluid {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* Columnas del grid */
.shop-area .inventory-grid > .col {
  max-width: 100% !important;
  flex: none !important;
  width: 100% !important;
}

/* Card principal */
.shop-area .shop__item {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  background-image: none !important;
  background: rgba(30, 30, 40, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  backdrop-filter: blur(10px) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.shop-area .shop__item:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(143, 0, 202, 0.35) !important;
  box-shadow: 0 8px 30px rgba(143, 0, 202, 0.15), 0 0 0 1px rgba(143, 0, 202, 0.1) !important;
}

/* Imagen del producto */
.shop-area .shop__item .shop__item-thumb {
  position: relative !important;
  min-height: 170px !important;
  background: rgba(0, 0, 0, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  flex-shrink: 0 !important;
}

.shop-area .shop__item .shop__item-thumb img {
  width: 100% !important;
  height: auto !important;
  max-height: 145px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  transition: transform 0.4s ease !important;
}

.shop-area .shop__item:hover .shop__item-thumb img {
  transform: scale(1.06) !important;
}

/* Línea separadora */
.shop-area .shop__item .shop__item-line {
  display: none !important;
}

/* Contenido de la card - ocupa espacio restante */
.shop-area .shop__item .shop__item-content {
  padding: 14px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
  flex: 1 1 auto !important;
  overflow: hidden !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Header: título y precio */
.shop-area .shop__item .shop__item-content-top {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  margin-bottom: 8px !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

.shop-area .shop__item .shop__item-content-top .title {
  margin: 0 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  white-space: normal !important;
  flex-grow: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  text-overflow: ellipsis !important;
  word-break: break-word !important;
  color: #fff !important;
}

/* Por si hay links en títulos */
.shop-area .shop__item .shop__item-content-top .title a {
  color: inherit !important;
  text-decoration: none !important;
}

/* Precio */
.shop-area .shop__item .shop__item-price {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #22c55e !important;
  margin: 0 !important;
}

/* Campos de información (estado, float, tradelock) */
.shop-area .shop__item .shop__item-cat {
  font-size: 12px !important;
  line-height: 1.4 !important;
  color: #bbb !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  word-break: break-word !important;
}

.shop-area .shop__item .shop__item-cat .badge {
  font-size: 10px !important;
  padding: 3px 7px !important;
  border-radius: 4px !important;
}

.shop-area .shop__item .shop__item-cat .badge-success {
  background: rgba(34, 197, 94, 0.2) !important;
  color: #6ee7a0 !important;
  border: 1px solid rgba(34, 197, 94, 0.3) !important;
}

.shop-area .shop__item .shop__item-cat .badge-danger {
  background: #ef4444 !important;
  color: #fff !important;
}

/* ─── Badges sobre la imagen ─── */
.item-badge-new,
.item-badge-sold,
.item-badge-reserved {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 4px;
  z-index: 3;
  text-transform: uppercase;
}

.item-badge-new {
  background: rgba(143, 0, 202, 0.85);
  color: #fff;
  box-shadow: 0 2px 8px rgba(143, 0, 202, 0.4);
}

.item-badge-sold {
  background: rgba(239, 68, 68, 0.85);
  color: #fff;
}

.item-badge-reserved {
  background: rgba(234, 179, 8, 0.85);
  color: #111;
}

/* Efecto opacidad en items vendidos */
.shop-area .shop__item:has(.item-badge-sold) .shop__item-thumb img {
  opacity: 0.45;
  filter: grayscale(0.3);
}

/* Botón wishlist - oculto */
.shop-area .shop__item .wishlist-button {
  display: none !important;
}

/* ================================
   RESPONSIVE - MÓVIL
================================ */
@media (max-width: 767px) {
  .shop-area .row.row-cols-2,
  .shop-area .row.row-cols-sm-2 {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  .shop-area .shop__item .shop__item-thumb {
    min-height: 150px !important;
    padding: 15px !important;
  }

  .shop-area .shop__item .shop__item-thumb img {
    max-height: 130px !important;
  }

  .shop-area .shop__item .shop__item-content {
    padding: 12px !important;
    gap: 5px !important;
    overflow: hidden !important;
  }

  .shop-area .shop__item .shop__item-content-top .title {
    font-size: 13px !important;
    white-space: normal !important;
  }

  .shop-area .shop__item .shop__item-content-top .title a {
    white-space: normal !important;
    -webkit-line-clamp: 2 !important;
  }

  .shop-area .shop__item .shop__item-price {
    font-size: 18px !important;
  }

  .shop-area .shop__item .shop__item-cat {
    font-size: 11px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

/* ================================
   NAVBAR - DISEÑO MODERNO
================================ */
#sticky-header.tg-header__area {
  background: rgba(15, 15, 20, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 12px 0 !important;
  transition: all 0.3s ease !important;
}

#sticky-header.tg-sticky-menu {
  background: rgba(10, 10, 15, 0.95) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Logo */
#sticky-header .navbar-brand img {
  max-height: 45px !important;
  transition: transform 0.2s ease !important;
}

#sticky-header .navbar-brand:hover img {
  transform: scale(1.05) !important;
}

/* Nav items container */
#sticky-header .navbar-nav {
  gap: 6px !important;
}

/* Nav links - estilo pill */
#sticky-header .navbar-nav .nav-link {
  position: relative !important;
  padding: 10px 18px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  color: rgba(255, 255, 255, 0.75) !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  transition: all 0.25s ease !important;
  margin: 0 !important;
}

#sticky-header .navbar-nav .nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Nav link activo */
#sticky-header .navbar-nav .nav-link.active {
  color: #fff !important;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(139, 92, 246, 0.15)) !important;
  border-color: rgba(168, 85, 247, 0.4) !important;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.15) !important;
}

/* Botón de login */
#sticky-header .btn-outline-light {
  padding: 10px 20px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #fff !important;
  transition: all 0.25s ease !important;
}

#sticky-header .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Avatar del usuario */
#sticky-header .dropdown > a img {
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  transition: all 0.2s ease !important;
}

#sticky-header .dropdown > a:hover img {
  border-color: rgba(168, 85, 247, 0.5) !important;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.3) !important;
}

/* Dropdown menu */
#sticky-header .dropdown-menu {
  background: rgba(20, 20, 28, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 8px !important;
  margin-top: 10px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
}

#sticky-header .dropdown-menu .dropdown-item {
  padding: 10px 16px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all 0.2s ease !important;
}

#sticky-header .dropdown-menu .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

#sticky-header .dropdown-menu .text-danger:hover {
  background: rgba(239, 68, 68, 0.15) !important;
  color: #f87171 !important;
}

#sticky-header .dropdown-menu hr {
  border-color: rgba(255, 255, 255, 0.1) !important;
  margin: 6px 0 !important;
}

#sticky-header .dropdown-menu .text-muted {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Hamburger menu móvil */
#sticky-header .navbar-toggler {
  padding: 8px 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

#sticky-header .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.3) !important;
}

/* Responsive móvil */
@media (max-width: 991.98px) {
  #sticky-header #navbarMain {
    background: rgba(15, 15, 22, 0.98) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    margin-top: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  #sticky-header .navbar-nav {
    gap: 4px !important;
  }

  #sticky-header .navbar-nav .nav-link {
    padding: 12px 16px !important;
  }

  #sticky-header .d-flex.align-items-center {
    margin-top: 12px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
}

/* ================================
   FOOTER MODERN - REDESIGN
================================ */
.footer-modern {
  position: relative;
  background: linear-gradient(180deg, #0d0d14 0%, #0a0a10 100%);
  overflow: hidden;
}

/* Glow effects */
.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.footer-glow-1 {
  width: 400px;
  height: 400px;
  background: #a855f7;
  top: -200px;
  left: 10%;
}

.footer-glow-2 {
  width: 300px;
  height: 300px;
  background: #3b82f6;
  bottom: -150px;
  right: 15%;
}

/* Pattern */
.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Main Footer */
.footer-main {
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
}

/* Brand */
.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.05);
}

.footer-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Social Icons */
.footer-social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: #fff;
}

.social-icon.discord:hover {
  background: #5865f2;
  border-color: #5865f2;
  box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

.social-icon.instagram:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #e1306c;
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

.social-icon.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

.social-icon.telegram:hover {
  background: #0088cc;
  border-color: #0088cc;
  box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
}

.social-icon.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.social-icon.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Navigation */
.footer-nav {
  padding-top: 8px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #a855f7, #3b82f6);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-links a i {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-links a:hover i {
  color: #a855f7;
}

/* Contact */
.footer-contact {
  padding-top: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #a855f7;
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #fff;
}

/* Bottom Bar */
.footer-bottom-bar {
  position: relative;
  z-index: 1;
  padding: 24px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-copyright span:first-child {
  color: #a855f7;
  font-weight: 600;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-legal .separator {
  color: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1199px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer-contact {
    grid-column: span 3;
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 10px;
  }
  
  .footer-contact .footer-heading {
    display: none;
  }
}

@media (max-width: 991px) {
  .footer-main {
    padding: 60px 0 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: span 2;
    max-width: 100%;
    text-align: center;
  }
  
  .footer-social-icons {
    justify-content: center;
  }
  
  .footer-contact {
    grid-column: span 2;
    justify-content: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-nav {
    text-align: center;
  }
  
  .footer-links a {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .footer-main {
    padding: 50px 0 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-brand,
  .footer-contact {
    grid-column: span 1;
  }
  
  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-copyright {
    flex-direction: column;
    gap: 4px;
  }
}

/* ================================
   ÚLTIMAS SKINS - HOMEPAGE
================================ */
.latest-items-section {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.latest-items-header {
  margin-bottom: 40px;
}

.latest-items-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.latest-items-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.latest-items-desc {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  margin: 0;
}

.latest-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.latest-item-card {
  background: rgba(30, 30, 40, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.latest-item-card:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 0, 202, 0.35);
  box-shadow: 0 8px 30px rgba(143, 0, 202, 0.15);
}

.latest-item-img {
  position: relative;
  background: rgba(0,0,0,0.3);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.latest-item-img img {
  max-height: 110px;
  width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.latest-item-card:hover .latest-item-img img {
  transform: scale(1.06);
}

.latest-item-info {
  padding: 14px;
}

.latest-item-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.latest-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.latest-item-wear {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}

.latest-item-price {
  font-size: 16px;
  font-weight: 700;
  color: #22c55e;
}

.latest-items-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 28px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.latest-items-cta:hover {
  background: rgba(143, 0, 202, 0.15);
  border-color: rgba(143, 0, 202, 0.4);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 991px) {
  .latest-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .latest-items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .latest-items-title {
    font-size: 24px;
  }
  .latest-item-img {
    min-height: 110px;
    padding: 14px;
  }
  .latest-item-img img {
    max-height: 80px;
  }
  .latest-item-name {
    font-size: 12px;
  }
  .latest-item-price {
    font-size: 14px;
  }
}

/* ================================
   STREAMERS SECTION - REDESIGN
================================ */
.streamers-section {
  position: relative;
  padding: 100px 0 120px;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
}

.streamers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.streamers-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Header */
.streamers-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.streamers-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  color: #c084fc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.streamers-badge i {
  font-size: 10px;
}

.streamers-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, #c084fc 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.streamers-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
}

/* Grid */
.streamers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}


/* Card */
.streamer-card {
  width: calc(25% - 22.5px);
}

.streamer-card-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 24px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.streamer-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #a855f7, #ec4899, #3b82f6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.streamer-card:hover .streamer-card-inner {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(168, 85, 247, 0.15);
}

.streamer-card:hover .streamer-card-inner::before {
  opacity: 1;
}

/* Shine Effect */
.streamer-card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.streamer-card:hover .streamer-card-shine {
  left: 100%;
}

/* Avatar */
.streamer-avatar-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
}

.streamer-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.streamer-avatar-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(168, 85, 247, 0.4);
  opacity: 0;
  transition: all 0.4s ease;
  animation: ring-rotate 10s linear infinite paused;
}

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

.streamer-card:hover .streamer-avatar {
  border-color: rgba(168, 85, 247, 0.5);
  transform: scale(1.05);
}

.streamer-card:hover .streamer-avatar-ring {
  opacity: 1;
  animation-play-state: running;
}

/* Info */
.streamer-info {
  margin-bottom: 20px;
}

.streamer-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.streamer-card:hover .streamer-name {
  color: #c084fc;
}

.streamer-username {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Social Buttons */
.streamer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.streamer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.streamer-social-btn.instagram {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(193, 53, 132, 0.2));
  border: 1px solid rgba(225, 48, 108, 0.3);
}

.streamer-social-btn.instagram:hover {
  background: linear-gradient(135deg, #e1306c, #c13584);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

.streamer-social-btn.twitch {
  background: linear-gradient(135deg, rgba(145, 70, 255, 0.2), rgba(100, 65, 165, 0.2));
  border: 1px solid rgba(145, 70, 255, 0.3);
}

.streamer-social-btn.twitch:hover {
  background: linear-gradient(135deg, #9146ff, #6441a5);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(145, 70, 255, 0.4);
}

/* Responsive */
@media (max-width: 1199px) {
  .streamers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0 20px;
  }
  
  .streamers-title {
    font-size: 36px;
  }
}

/* Para dispositivos con un ancho menor a 767px */
@media (max-width: 767px) {
  .streamers-grid {
    display: grid; /* Cambiar a grid */
    grid-template-columns: repeat(1, 1fr); /* 1 columna en pantallas pequeñas */
    gap: 16px; /* Ajustar el espacio entre las tarjetas */
    max-width: 100%; /* Ajustar al 100% del ancho */
  }

  .streamer-card {
    width: 100%; /* Asegurarse de que las tarjetas ocupen todo el ancho */
  }
  
  /* Asegúrate de que las tarjetas tengan suficiente relleno */
  .streamer-card-inner {
    padding: 20px;
  }

  .streamer-avatar-wrapper {
    width: 80px; /* Reducir el tamaño del avatar */
    height: 80px;
  }

  /* Ajustar los tamaños del texto */
  .streamers-title {
    font-size: 24px; /* Tamaño de título más pequeño */
  }

  .streamers-subtitle {
    font-size: 14px;
  }
}


/* ================================
   SOCIAL BUTTONS (Index)
================================ */
.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-social:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border: none;
}

.btn-tiktok {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
}

.btn-facebook {
  background: linear-gradient(135deg, #1877f2, #0d65d9);
  color: #fff;
  border: none;
}

.btn-facebook:hover {
  background: linear-gradient(135deg, #166fe5, #0b5dc5);
  color: #fff;
}

/* ================================
   TEAM SECTION - REDESIGN
================================ */
.team-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0a12 0%, #12121f 50%, #0d0d18 100%);
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.team-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

/* Particles background */
.team-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

/* Header */
.team-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team-header-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  margin: 0 auto 30px;
  border-radius: 2px;
}

.team-title {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.team-title-sub {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.team-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
}

/* Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

/* Member Card */
.team-member {
  flex: 0 0 300px;
  animation: teamFadeIn 0.6s ease forwards;
  animation-delay: var(--delay);
  opacity: 0;
}

@keyframes teamFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-member-card {
  position: relative;
  background: linear-gradient(145deg, rgba(30, 30, 45, 0.8), rgba(20, 20, 35, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.team-member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--member-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member:hover .team-member-card {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.team-member:hover .team-member-card::before {
  opacity: 1;
}

/* Background pattern */
.team-member-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0V0zm20 20v20h20V20H20zm0-20v20h20V0H20z' fill='%23ffffff' fill-opacity='0.01'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Content */
.team-member-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Badge */
.team-member-badge {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--member-color), color-mix(in srgb, var(--member-color) 70%, #000));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.team-member-badge i {
  font-size: 20px;
  color: #fff;
}

.team-member:hover .team-member-badge {
  transform: rotate(10deg) scale(1.1);
}

/* Photo */
.team-member-photo {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.team-member-photo-border {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid var(--member-color);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.team-member:hover .team-member-photo img {
  border-color: var(--member-color);
  transform: scale(1.05);
}

.team-member:hover .team-member-photo-border {
  opacity: 0.5;
  transform: scale(1);
}

/* Info */
.team-member-info {
  margin-bottom: 20px;
}

.team-member-name {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.team-member:hover .team-member-name {
  color: var(--member-color);
}

.team-member-role {
  margin-bottom: 8px;
}

.role-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--member-color);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--member-color);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team-member-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Decoration */
.team-member-decoration {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.team-member-decoration span {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.team-member:hover .team-member-decoration span:nth-child(1) {
  background: var(--member-color);
  transform: scale(1.2);
}

.team-member:hover .team-member-decoration span:nth-child(2) {
  background: var(--member-color);
  opacity: 0.6;
  transition-delay: 0.1s;
}

.team-member:hover .team-member-decoration span:nth-child(3) {
  background: var(--member-color);
  opacity: 0.3;
  transition-delay: 0.2s;
}

/* Glow effect */
.team-member-glow {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--member-color) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.team-member:hover .team-member-glow {
  opacity: 0.15;
}

/* Responsive */
@media (max-width: 1199px) {
  .team-grid {
    gap: 30px;
  }
  
  .team-member {
    flex: 0 0 280px;
  }
  
  .team-title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .team-section {
    padding: 80px 0;
  }
  
  .team-header {
    margin-bottom: 60px;
  }
  
  .team-title {
    font-size: 36px;
  }
  
  .team-grid {
    gap: 24px;
  }
  
  .team-member {
    flex: 0 0 260px;
  }
}

@media (max-width: 767px) {
  .team-section {
    padding: 60px 0;
  }

  .team-title {
    font-size: 28px;
  }

  .team-title-sub {
    font-size: 13px;
  }

  .team-description {
    font-size: 15px;
  }

  /* Ajusta el grid a una sola columna */
  .team-grid {
    display: flex;
    flex-direction: column; /* Los miembros del equipo se apilan verticalmente */
    align-items: center; /* Centra las tarjetas */
    gap: 24px; /* Ajusta el espacio entre las tarjetas */
  }

  .team-member {
    flex: 0 0 100%; /* Asegura que cada miembro ocupe el 100% de la línea */
    max-width: 300px; /* Limita el ancho máximo de las tarjetas */
  }

  .team-member-card {
    padding: 30px 24px; /* Asegura que haya suficiente relleno */
  }

  .team-member-photo {
    width: 120px;
    height: 120px;
  }
}

/* ================================
   DISCORD SECTION - REDESIGN
================================ */
.discord-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #2c2f48 0%, #23272a 50%, #1a1c2e 100%);
  overflow: hidden;
}

/* Animated background blobs */
.discord-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.discord-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: discord-float 20s ease-in-out infinite;
}

.discord-blob-1 {
  width: 500px;
  height: 500px;
  background: #5865f2;
  top: -20%;
  left: -10%;
  animation-delay: 0s;
}

.discord-blob-2 {
  width: 400px;
  height: 400px;
  background: #7289da;
  bottom: -20%;
  right: -10%;
  animation-delay: -7s;
}

.discord-blob-3 {
  width: 300px;
  height: 300px;
  background: #5865f2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes discord-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Grid pattern overlay */
.discord-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Content */
.discord-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Icon */
.discord-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
}

.discord-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
  border-radius: 30px;
  transform: rotate(10deg);
  transition: transform 0.4s ease;
}

.discord-section:hover .discord-icon-bg {
  transform: rotate(-5deg);
}

.discord-icon {
  position: relative;
  z-index: 2;
  font-size: 56px;
  color: #fff;
  line-height: 120px;
}

.discord-icon-ring {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 2px solid rgba(88, 101, 242, 0.3);
  border-radius: 35px;
  animation: discord-ring-pulse 3s ease-in-out infinite;
}

.discord-icon-ring-2 {
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  border-radius: 40px;
  animation-delay: -1.5s;
  opacity: 0.5;
}

@keyframes discord-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.6; }
}

/* Text */
.discord-text {
  margin-bottom: 40px;
}

.discord-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(88, 101, 242, 0.2);
  border: 1px solid rgba(88, 101, 242, 0.3);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #7289da;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.discord-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.discord-title span {
  background: linear-gradient(135deg, #5865f2 0%, #7289da 50%, #99aab5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.discord-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 550px;
  margin: 0 auto;
}

/* Features */
.discord-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.discord-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.discord-feature i {
  width: 36px;
  height: 36px;
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7289da;
  font-size: 14px;
}

/* Button */
.discord-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
  border-radius: 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(88, 101, 242, 0.4);
}

.discord-btn-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.discord-btn:hover .discord-btn-bg {
  left: 100%;
}

.discord-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(88, 101, 242, 0.5);
  color: #fff;
}

.discord-btn i.fab {
  font-size: 24px;
}

.discord-btn-arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.discord-btn:hover .discord-btn-arrow {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  .discord-section {
    padding: 80px 0;
  }
  
  .discord-icon-wrapper {
    width: 100px;
    height: 100px;
  }
  
  .discord-icon {
    font-size: 44px;
    line-height: 100px;
  }
  
  .discord-icon-bg {
    border-radius: 24px;
  }
  
  .discord-title {
    font-size: 36px;
  }
  
  .discord-description {
    font-size: 16px;
  }
  
  .discord-features {
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .discord-section {
    padding: 60px 0;
  }
  
  .discord-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
  }
  
  .discord-icon {
    font-size: 36px;
    line-height: 80px;
  }
  
  .discord-icon-bg {
    border-radius: 20px;
  }
  
  .discord-title {
    font-size: 28px;
  }
  
  .discord-description {
    font-size: 15px;
  }
  
  .discord-features {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .discord-btn {
    padding: 16px 32px;
    font-size: 16px;
  }
}

/* ================================
   WHATSAPP FLOATING WIDGET
================================ */
.wa-widget {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9999;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Floating Button */
.wa-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wa-float-btn i {
  font-size: 28px;
  color: #fff;
  transition: all 0.3s ease;
}

.wa-float-btn .wa-icon-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg) scale(0);
}

.wa-widget.wa-open .wa-float-btn .wa-icon-main {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

.wa-widget.wa-open .wa-float-btn .wa-icon-close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* Notification Badge */
.wa-notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  background: #ff4757;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: wa-badge-pulse 2s infinite;
}

@keyframes wa-badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Pulse Animation */
.wa-float-btn.wa-pulse::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: wa-pulse-ring 1.5s ease-out infinite;
}

@keyframes wa-pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Chat Box */
.wa-chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
}

.wa-widget.wa-open .wa-chat-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Chat Header */
.wa-chat-header {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-chat-header-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.wa-chat-header-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  padding: 2px;
}

.wa-online-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #25d366;
  border: 2px solid #075e54;
  border-radius: 50%;
}

.wa-chat-header-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wa-chat-name {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.wa-chat-status {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.wa-chat-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wa-chat-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.wa-chat-close i {
  color: #fff;
  font-size: 14px;
}

/* Chat Body */
.wa-chat-body {
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20zm0 36c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16z' fill='%23d4ccc4' fill-opacity='0.15'/%3E%3C/svg%3E");
  padding: 16px;
  min-height: 140px;
}

.wa-message-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-message {
  background: #fff;
  padding: 10px 14px;
  border-radius: 0 12px 12px 12px;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  position: relative;
}

.wa-message.wa-message-show {
  opacity: 1 !important;
  transform: translateY(0);
}

.wa-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  border-width: 0 8px 8px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

.wa-message-text {
  color: #303030;
  font-size: 14px;
  line-height: 1.4;
  display: block;
}

.wa-message-time {
  color: #999;
  font-size: 11px;
  display: block;
  text-align: right;
  margin-top: 4px;
}

/* Typing Animation */
.wa-typing {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 0 12px 12px 12px;
  width: fit-content;
  margin-top: 8px;
}

.wa-typing span {
  width: 8px;
  height: 8px;
  background: #90949c;
  border-radius: 50%;
  animation: wa-typing-dot 1.4s infinite;
}

.wa-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.wa-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes wa-typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.6; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Send Button */
.wa-chat-send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}

.wa-chat-send:hover {
  background: linear-gradient(135deg, #22c55e 0%, #0f7a6b 100%);
  color: #fff;
}

.wa-chat-send i {
  font-size: 20px;
}

/* Responsive */
@media (max-width: 480px) {
  .wa-widget {
    bottom: 80px;
    right: 16px;
  }
  
  .wa-float-btn {
    width: 54px;
    height: 54px;
  }
  
  .wa-float-btn i {
    font-size: 24px;
  }
  
  .wa-chat-box {
    width: calc(100vw - 32px);
    right: 0;
    bottom: 70px;
  }
}

/* ================================
   BACK TO TOP BUTTON
================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(20, 20, 30, 0.7);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, color 0.2s ease;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: rgba(99, 102, 241, 0.25);
  border-color: rgba(99, 102, 241, 0.4);
  color: #fff;
}

/* ─── Inspeccionar en CS2 (gradiente en la base del thumb) ─── */
.inspect-cs2-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 10px 8px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.75) 100%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: color 0.2s ease;
  z-index: 2;
}

.inspect-cs2-overlay:hover {
  color: #fff;
  text-decoration: none;
}

.inspect-cs2-overlay svg {
  flex-shrink: 0;
}

/* ================================
   INVENTORY COUNT BAR
================================ */
.inventory-count-bar {
  margin-bottom: 16px;
    margin-right: 16px;
}

.inventory-count-badge {
  display: inline-flex;
  margin-bottom: 16px;
    margin-right: 3px;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}

.inventory-count-badge i {
  color: #818cf8;
}

.inventory-offer-bar {
  margin-bottom: 16px;
  margin-right: 16px;
}

.inventory-offer-badge {
  display: inline-flex;
  align-items: center;
    margin-bottom: 16px;
  margin-right: 16px;
  gap: 8px;
  padding: 8px 18px;
  background: #f5a93827 ;
  border: 1px solid rgba(255, 167, 53, 0.596);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}

.inventory-offer-badge i {
  color: #e09540;
}

/* ================================
   HERO SECTION – MODERNIZACIÓN
================================ */

/* Hero content layout - spacing generoso */
.slider__content {
  padding: 20px 0 !important;
}

.slider__content .title {
  margin-bottom: 24px !important;
}

/* Subtítulo del hero – necesita !important para pisar .slider__content p de main.css */
.slider__content p.hero-subtitle {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  text-transform: none !important;
  margin: 0 0 40px 0 !important;
}

/* Botones principales del hero */
.slider__content .hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 36px 0;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-btn--primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.hero-btn--primary::before {
  background: linear-gradient(135deg, #818cf8, #a78bfa);
}

.hero-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
  color: #fff;
  text-decoration: none;
}


.hero-btn--primary i,
.hero-btn--primary span {
  position: relative;
  z-index: 1;
}

.hero-btn--outline {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.hero-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
}

/* Iconos sociales del hero */
.slider__content .hero-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0;
}

.hero-social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.hero-social-icon:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
}

.hero-social-icon:hover .fa-instagram {
  color: #e1306c;
}

.hero-social-icon:hover .fa-facebook-f {
  color: #1877f2;
}

.hero-social-icon:hover .fa-discord {
  color: #5865f2;
}

.hero-social-icon:hover .fa-whatsapp {
  color: #25d366;
}

.hero-social-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Logo flotante */
.hero-logo-float img {
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* Ocultar triángulos violeta del template en el slider */
.slider__area::before {
  display: none !important;
}

.slider__area::after {
  display: none !important;
}


/* ================================
   SCROLL PROGRESS BAR (top)
================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #a78bfa, #6366f1);
  background-size: 200% 100%;
  animation: scrollGradient 3s ease infinite;
  z-index: 99999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

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

/* ================================
   RESPONSIVE HERO
================================ */
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 14px;
  }
  .hero-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ================================
   PRECIOS CON DESCUENTO
================================ */

/* Contenedor del precio con descuento - en línea */
.shop-area .shop__item .shop__item-price {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

/* Precio original tachado en rojo - mismo tamaño */
.shop-area .shop__item .shop__item-price .price-original {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #ef4444 !important;
  text-decoration: line-through;
}

/* Precio final con descuento en verde - mismo tamaño */
.shop-area .shop__item .shop__item-price .price-final {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #22c55e !important;
}

/* Badge de descuento sobre la imagen */
.item-badge-discount {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  border-radius: 6px;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

/* Latest items section - soporte descuento */
.latest-item-price .price-original {
  font-size: 12px;
  color: #ef4444;
  text-decoration: line-through;
  display: block;
}

.latest-item-price .price-final {
  font-size: 16px;
  font-weight: 700;
  color: #22c55e;
}

/* Responsive para precios con descuento */
@media (max-width: 575px) {
  .shop-area .shop__item .shop__item-price .price-original,
  .shop-area .shop__item .shop__item-price .price-final {
    font-size: 16px !important;
  }
}