body {
    font-family: 'Inter', sans-serif;
}

a, button, .nav-link, .dropdown-item,
.btn, .btn-sm, .btn-lg {
    transition: color 0.2s, border-color 0.2s, box-shadow 0.2s, background-color 0.2s ease;
}

    a:hover, a:focus,
    .nav-link:hover, .nav-link:focus,
    .dropdown-item:hover, .dropdown-item:focus {
        color: #0d6efd;
        background: transparent;
        text-decoration: none;
    }

    .nav-link:hover, .dropdown-item:hover {
        background-color: rgba(13, 110, 253, 0.1);
    }
.bg-primary {
    background-color: #0d6efd;
}

.text-primary {
    color: #0d6efd;
}

.border-primary {
    border-color: #0d6efd;
}
.btn-primary:hover, .btn-primary:focus {
    background: #0b5ed7;
    border-color: #0a58ca;
    animation: pulse 0.6s ease;
}

.btn-outline-danger:hover, .btn-outline-danger:focus {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

#cart-total:hover, #cart-total:focus {
    animation: pulse 0.6s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.custom-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

    .custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: #6c757d;
    }

.breadcrumb-item a {
    color: #0d6efd;
    text-decoration: none;
    border-radius: 0.25rem;
    padding: 2px 4px;
}

    .breadcrumb-item a:hover {
        color: #0a58ca;
        background: rgba(13, 110, 253, 0.08);
    }

.breadcrumb-item.active a {
    color: #6c757d;
    pointer-events: none;
    cursor: default;
}

.breadcrumb-item {
    opacity: 0;
    transform: translateY(5px);
    animation: fadeInUp 0.3s ease forwards;
}

    .breadcrumb-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .breadcrumb-item:nth-child(2) {
        animation-delay: 0.2s;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-input {
    padding-left: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 48px;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1rem;
    pointer-events: none;
}

.search-button {
    background: #007bff;
    color: #fff;
    border: none;
}

    .search-button:hover {
        background: #0056b3;
    }

#suggestions {
    color: #000;
    list-style: none;
    margin-top: 4px;
    padding-left: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
}

    #suggestions li {
        padding: 10px 16px;
        cursor: pointer;
    }

        #suggestions li:hover {
            background: #f0f4ff;
        }

.pill-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

    .pill-card:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .pill-card .btn {
        background: #0d6efd;
        color: #fff;
        border: none;
    }

        .pill-card .btn:hover {
            background: #084298;
        }


