/* --- BREADCRUMB STYLING --- */
.breadcrumb-wrapper {
    background: #f8f9fa;
    padding: 16px 0;
    font-family: 'Segoe UI', sans-serif;
}

.custom-breadcrumb .breadcrumb-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    color: #6c757d;
}

.custom-breadcrumb .breadcrumb-list li a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.custom-breadcrumb .breadcrumb-list li a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.custom-breadcrumb .breadcrumb-list li::after {
    content: ">";
    margin: 0 6px;
    color: #6c757d;
}

.custom-breadcrumb .breadcrumb-list li:last-child::after {
    content: "";
}

.custom-breadcrumb .breadcrumb-list li.active {
    font-weight: bold;
    color: #343a40;
}

/* --- PRODUCT GRID STYLING --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.product-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.2s;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    min-height: 40px;
    overflow: hidden;
}

.product-rating {
    font-size: 14px;
    color: #f0c14b;
    margin-bottom: 8px;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #b12704;
}

.product-discount del {
    color: #999;
}

.discount-label {
    color: green;
    font-weight: 500;
    margin-left: 5px;
}

.product-buttons {
    margin-top: auto;
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.product-buttons button {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cart {
    background: #ffc107;
    color: #111;
}

.btn-cart:hover {
    background: #e0a800;
}

.btn-wishlist {
    background: #ff5722;
    color: #fff;
}

.btn-wishlist:hover {
    background: #e64a19;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 180px;
    }

    .breadcrumb-wrapper {
        padding: 12px 0;
    }
}
