/* Unique styles for 'ranges of products' pages only */

.top-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.color-selection {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--container-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 0.5rem 1rem;
}

.color-selection h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--text-color);
}

.color-circles {
  display: flex;
  gap: 0.8rem;
}

.color-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.color-name {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.color-circle:hover .color-name {
  opacity: 1;
}

@media (max-width: 768px) {
  .top-controls {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .color-selection {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Products Grid */
    .products-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
      padding: 2rem 0;
    }

    .product-card {
      background: var(--container-bg);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      aspect-ratio: 1;
    }
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .product-image {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      padding: 0;
      margin: 0 auto;
      display: block;
      box-sizing: border-box;
      transition: var(--transition);
    }

    .product-card:hover .product-image {
      transform: scale(1.05);
    }
  