/* Custom Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    font-weight: bold;
}

.product-card {
    transition: transform .2s;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.product-card:hover {
    transform: scale(1.02);
}

.product-card .card-body {
    background-color: #fff;
}

.product-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.product-card .card-text {
    color: #6c757d;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

.footer {
    background-color: #343a40;
    color: #fff;
    padding: 40px 0;
}

.footer a {
    color: #f8f9fa;
}

.footer a:hover {
    color: #007bff;
}
