
.product-card {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: center;
    animation: fadeIn 0.5s ease forwards;
    text-decoration: none;
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info{
    margin-top: -18px; /* Pushes product-info down inside flex */
    padding-bottom: 1rem;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 1rem;
    background-color: var(--light-lavender);
    border-bottom: 1px solid var(--lavender);
    position: relative;
    left: -2px;
}

.product-card h4 {
    color: var(--deep-indigo);
    font-size: 1.2rem;
    margin: 0.5rem 0 0.3rem;
    padding: 0 1rem;
    position: relative;
    top: -5px;
}

.product-card p {
    color: var(--blue-violet);
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0.2rem 0;
    padding: 0 1rem;
    position: relative;
    top: -5px;
}

p .stock-indicator {
    text-decoration: none;
    color: white;
    display: inline-block;
    margin: 0.4rem auto 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    width: fit-content;
    background-color: var(--blue-violet);
}
