/* Styling specific for "Option A" - Discrete & Pro */
.bento-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    /* Slightly more rounded */
    overflow: hidden;
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    /* Uniform height */
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    border-color: #ef3e36;
}

/* Image Container - Fixed 35% Height */
.card-img-container {
    height: 180px;
    /* Fixed px height for consistency */
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #f7fafc;
    /* Placeholder bg */
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Desaturate slightly for "Pro" look */
    filter: saturate(0.85);
    transition: filter 0.3s ease, transform 0.5s ease;
}

.bento-card:hover .card-img-container img {
    filter: saturate(1.1);
    /* Pop color on hover */
    transform: scale(1.05);
    /* Slight zoom */
}

/* Content Container */
.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Fills the rest of the card */
}

/* Typography */
.card-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-top: 0;
    margin-bottom: 0.75rem;
    text-shadow: none;
}

p.card-desc {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    /* Pushes price down */
}

.price-container {
    margin-top: auto;
    /* Always at bottom */
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-value {
    font-size: 1.5rem;
    /* Prominent price */
    font-weight: 800;
    color: #1a202c;
}

.tax {
    font-size: 0.8rem;
    color: #a0aec0;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .card-img-container {
        height: 150px;
    }
}