/* Product card styling */
 /* Top bar */
    .top-bar {
      background-color: #006a4e;
      color: #fff;
      font-size: 0.9rem;
      text-align: center;
      padding: 4px 0;
    }
    .top-bar i { margin-right:5px; }

    /* Navbar hover & animation */
    .navbar-nav .nav-link {
      position: relative;
      transition: color 0.3s ease;
    }
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: #ffc107;
      left: 0;
      bottom: 0;
      transition: 0.3s;
    }
    .navbar-nav .nav-link:hover::after {
      width: 100%;
    }

    /* Dropdown animation */
    .dropdown-menu {
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.3s ease;
    }
    .dropdown:hover .dropdown-menu {
      transform: translateY(0);
      opacity: 1;
      display: block;
    }

    /* Search bar */
    .search-bar {
      max-width: 400px;
      width: 100%;
      position: relative;
    }
    .search-bar input {
      padding-right: 2.5rem;
      border-radius: 20px;
    }
    .search-bar button {
      position: absolute;
      right: 0;
      top: 0;
      border: none;
      background: transparent;
      height: 100%;
      width: 2.5rem;
      color: #333;
    }

    /* Logo and shop name */
    .navbar-brand img { height:50px; object-fit:cover; }

    /* Dropdown item hover */
    .dropdown-item:hover {
      background-color: #f8f9fa;
      color: #006a4e;
      transform: translateX(5px);
      transition: 0.3s;
    }

    /* Center search wrapper */
    .navbar-center {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 50%;
      max-width: 400px;
    }

    @media(max-width:991px){
      .navbar-center {
        position: static;
        transform: none;
        width: 100%;
        margin: 10px 0;
      }
    }
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Make all product images same size */
.product-img {
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

/* Category section spacing */
h3 {
  font-size: 1.4rem;
  color: #333;
}
/* Caption styling */
.custom-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(0,0,0,0.5);
    padding: 12px 16px;
    border-radius: 8px;
}

.custom-caption p {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .custom-caption {
        padding: 8px 12px;
        bottom: 10px;
        left: 10px;
        right: 10px;
        border-radius: 6px;
    }
    .custom-caption p {
        font-size: 0.9rem;
    }
}
/* Responsive adjustments */
@media (max-width: 767px) {
  .product-img {
    height: 160px;
  }
}
