/* Category Page Styles */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  color: #fff;
  padding: 80px 20px 60px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: #c8a882;
}

.page-header p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #ddd;
  max-width: 600px;
  margin: 0 auto;
}

/* Product Gallery */
.product-gallery {
  padding: 80px 20px;
  background: #f5f5f5;
  min-height: 60vh;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Product Item */
.product-item {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 150px;
  background: #f8f8f8;
  border-radius: 8px;
  border: 2px dashed #c8a882;
  transition: all 0.3s ease;
}

.product-item:hover .product-image {
  background: #f0f0f0;
  border-color: #b39770;
}

.product-image svg {
  transition: transform 0.3s ease;
}

.product-item:hover .product-image svg {
  transform: scale(1.1);
}

.product-item h3 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-weight: 600;
}

.product-item p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Back Link */
.back-link {
  text-align: center;
  margin-top: 40px;
}

.btn-back {
  display: inline-block;
  padding: 12px 30px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-back:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  margin-top: 0;
}

.footer p {
  margin-bottom: 10px;
}

.footer-links a {
  color: #c8a882;
  text-decoration: none;
  margin: 0 10px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header {
    padding: 60px 20px 40px;
  }

  .product-gallery {
    padding: 60px 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .header .container {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .product-item {
    padding: 25px 20px;
  }
}
