﻿/* Styles from your inline <style> tag */

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 0.25rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

    .breadcrumb-item + .breadcrumb-item::before {
        content: "/";
        padding: 0 0.5rem;
        color: #6c757d;
    }

    .breadcrumb-item a {
        text-decoration: none;
        color: #007bff;
    }

        .breadcrumb-item a:hover {
            text-decoration: underline;
        }

    .breadcrumb-item.active {
        color: #6c757d;
    }

.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.before-discount {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
}

.card-img {
    height: 200px;
    object-fit: contain;
}

.card-title {
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 768px) {
    .card-img {
        height: 150px;
    }
}
