/* Ürünler Banner */
.products-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}
.products-hero .hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.products-hero .hero-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.5);
    padding: 1.5rem 2.5rem;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.products-hero .hero-overlay h1 {
    font-size: 2.8rem; margin-bottom: 0.5rem; font-weight: 600;
}
.products-hero .hero-overlay p {
    font-size: 1.2rem; line-height: 1.4;
}
@media (max-width: 768px) {
    .products-hero { height: 40vh; }
    .products-hero .hero-overlay {
      padding: 1rem 1.5rem;
    }
    .products-hero .hero-overlay h1 { font-size: 2.2rem; }
    .products-hero .hero-overlay p { font-size: 1rem; }
}

/* Ürün Kartları */
.products {
  padding: 2rem;
  background-color: #f7f7f7;
  text-align: center;
  background: linear-gradient(160deg, #4a4a4a 0%, #e0e0e0 100%);
}
.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.product {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.product.animate {
  opacity: 1;
  transform: translateY(0);
}
.product img {
  width: 100%; height: auto; display: block;
}
.product h2 {
  font-size: 1.75rem; margin: 1rem 0 0.5rem; color: #333;
}
.product p {
  font-size: 1.125rem; margin: 0 1rem 1.5rem; color: #666;
}
.product .btn {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 1.125rem;
  text-transform: uppercase;
  transition: background 0.3s;
}
.product .btn:hover {
  background: orange;
}
@media (max-width: 768px) {
  .product-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-list { grid-template-columns: 1fr; }
}
