/* Estilos específicos para la página de tienda */

/* Shop Hero */
.shop-hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  margin-top: 80px;
}

.shop-title {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.shop-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Shop Content */
.shop-content {
  padding: 3rem 0;
}

.shop-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.search-container {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.sort-container {
  position: relative;
}

.sort-select {
  padding: 1rem 2rem 1rem 1rem;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  min-width: 200px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
}

/* Shop Sidebar */
.shop-sidebar {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filters-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-group {
  margin-bottom: 2rem;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.filter-item input[type="radio"] {
  accent-color: var(--primary-color);
}

.filter-item label {
  cursor: pointer;
  font-weight: 500;
  color: var(--text-color);
}

.filter-subtitle {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.price-range {
  margin-bottom: 1rem;
}

.price-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border-color);
  outline: none;
  appearance: none;
  cursor: pointer;
}

.price-slider::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
}

.price-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  border: none;
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* Shop Main */
.shop-main {
  min-height: 500px;
}

.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-light);
}

.no-results i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--border-color);
}

.no-results h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

/* Responsive para tienda */
@media (max-width: 768px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
    order: 2;
  }

  .shop-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .shop-title {
    font-size: 2rem;
  }
}
