/* Breadcrumb section start */
.breadcrumb-container {
    background-color: #d6f0e5;
    /* Light green background */
    border-radius: 15px;
    position: relative;
}

/* Optional: Background pattern */
.breadcrumb-container::before {
    content: "";
    /* background: url('your-pattern-image.png'); */
    /* Replace with an actual pattern */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    border-radius: 15px;
    z-index: 0;
}

/* Ensure text appears above background */
.breadcrumb-container nav {
    position: relative;
    z-index: 1;
}

.itemsfound {
    background-color: lightblue;
    padding: 10px;
    border-radius: 0px 12px 0px 12px;
}

/* Breadcrumb section ends */

/* Styling for the card */

/* General Card Styles */
.card {
    border: none;
    border-radius: 12px 0 12px 0;
    transition: transform 0.2s ease-in-out;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: scale(1.03);
}

/* Badge Styling */
/* .badge {
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 8px;
} */

/* Image Container */
.card-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    overflow: hidden;
    position: relative;
}

/* Image Hover Icons */
.hover-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.icon {
    background: white;
    padding: 6px;
    border-radius: 50%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.card-img-container:hover .hover-icons {
    opacity: 1;
}

/* Category Title */
.card-title {
    font-size: 1.1rem;
    font-weight: bold;
}

/* Rating */
.text-warning {
    font-size: 1rem;
}

/* Seller Name */
.text-primary {
    font-weight: bold;
}

/* Prices */
.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #28a745;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

/* Add Button */
.add-btn {
    background-color: #d4edda;
    color: #28a745;
    border-radius: 8px;
    font-weight: bold;
    padding: 6px 12px;
    border: none;
}

.add-btn:hover {
    background-color: #c3e6cb;
}

/* Category Filter */
.category-filter {
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 6px;
}

.category-filter.active {
    color: #28a745;
    border-bottom: 2px solid #28a745;
}

/* Styling for the card ends */