﻿/* Core Styling Rules */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #212529;
}

/* Card Hover Animations */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 8px;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.product-image-wrapper {
    height: 220px;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

    .product-image-wrapper img {
        max-height: 100%;
        max-width: 100%;
        object-fit: cover;
    }

/* Component Customizations */
.sticky-top {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.min-vh-100 {
    min-height: 80vh !important;
}
