/* assets/css/custom.css */
/* Custom styles to supplement Bootstrap */

/* Hero section with background image */
.hero-section {
    background-color: #222;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/images/hero-background.jpg");
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
  }
  
  /* Product card image container */
  .product-card .product-image {
    height: 200px;
    overflow: hidden;
  }
  
  .product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .product-card:hover .product-image img {
    transform: scale(1.05);
  }
  
  /* Product card hover effect */
  .product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  /* Slick carousel customizations */
  .slick-dots {
    bottom: -30px;
  }
  
  .slick-prev, .slick-next {
    z-index: 1;
  }
  
  .slick-prev {
    left: 10px;
  }
  
  .slick-next {
    right: 10px;
  }
  
  /* Ensure footer stays at bottom */
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  main {
    flex: 1;
  }
  
  /* Additional responsive tweaks */
  @media (max-width: 768px) {
    .hero-section {
      min-height: 300px;
    }
  }