/* ================================================================
   OBITUARY FLOWERS
   ================================================================ */

.flowers-card {
    overflow: hidden;
}

/* ================================================================
   FLOWER GRID
   ================================================================ */

.flowers-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ================================================================
   FLOWER CARD
   ================================================================ */

.flower-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.flower-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ================================================================
   FLOWER IMAGE
   ================================================================ */

.flower-image {
    height: 180px;
    overflow: hidden;
}

.flower-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.flower-card:hover .flower-image img {
    transform: scale(1.05);
}

/* ================================================================
   FLOWER CONTENT
   ================================================================ */

.flower-content {
    padding: 18px;
    text-align: center;
}

.flower-content h3 {
    font-size: 17px;
    color: #1e293b;
    margin-bottom: 14px;
    font-weight: 700;
}

/* ================================================================
   BUTTON
   ================================================================ */

.flower-btn {
    background: #003366;
    color: #fff;
    border: none;
    width: 100%;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.flower-btn:hover {
    background: #002244;
}



.flower-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 10px;
    background: #dc2626;
    color: #ffffff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
}
/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 991px) {

    .flowers-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 576px) {

    .flowers-wrapper {
        grid-template-columns: 1fr;
    }

}