/* Page: Shop CSS */
.shop-hero {
  padding: var(--space-12) 0;
  background: linear-gradient(180deg, rgba(5,5,5,0) 0%, rgba(5,5,5,1) 100%), radial-gradient(circle at top right, rgba(0, 243, 255, 0.1), transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-title {
  font-size: var(--size-text-3xl);
  background: linear-gradient(90deg, #fff, var(--color-text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-4);
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: var(--size-text-4xl);
  }
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
  border: 1px solid var(--color-surface-hover);
}

.filter-section {
  margin-bottom: var(--space-12);
}

.filter-bar {
  backdrop-filter: blur(10px);
  background-color: rgba(17, 17, 17, 0.9);
  border-bottom: 1px solid var(--color-primary);
}

.search-wrapper {
  flex: 1;
  margin-right: var(--space-4);
  min-width: 200px;
}

.filter-controls {
  gap: var(--space-2);
  margin-top: var(--space-2);
}

@media (min-width: 768px) {
  .filter-controls {
    margin-top: 0;
  }
}

.select-input {
  width: auto;
  background-color: var(--color-bg);
  cursor: pointer;
}

.categories-section {
  margin-bottom: var(--space-16);
}

.category-showcase {
  margin-top: var(--space-6);
}

.category-banner-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  opacity: 0.8;
  margin-bottom: var(--space-6);
  border: 1px solid var(--color-border);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--color-border);
  background: linear-gradient(145deg, var(--color-surface), var(--color-bg));
}

.category-card:hover h3 {
  color: var(--color-primary);
}

.category-card span {
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: var(--size-text-sm);
  text-transform: uppercase;
}

.product-highlights {
  margin-bottom: var(--space-16);
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card .card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

.product-card .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card h3 {
  font-size: var(--size-text-xl);
  margin-bottom: var(--space-2);
}

.full-width {
  width: 100%;
  margin-top: var(--space-4);
}

.promo-section {
  margin-bottom: var(--space-16);
}

.promo-card {
  background: linear-gradient(135deg, var(--color-surface) 0%, #0a0a0a 100%);
  border-left: 4px solid var(--color-primary);
}

.promo-content {
  flex: 1;
  padding-right: var(--space-6);
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .promo-content {
    margin-bottom: 0;
  }
}

.promo-image {
  flex: 1;
  max-width: 500px;
}

.promo-image img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.features-list {
  margin-bottom: var(--space-16);
}

.feature-item {
  padding: var(--space-8) var(--space-4);
  border-top: 1px solid var(--color-primary);
}

.feature-item h3 {
  color: var(--color-primary);
  font-size: var(--size-text-lg);
  margin-bottom: var(--space-3);
}