/* ============================================
   Mr. Smile Fish Haven — Supplies Page CSS
   ============================================ */

/* ── SUPPLY CATEGORY HIGHLIGHTS ── */
.cat-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.cat-highlight-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(22,104,22,0.1);
    border: 1px solid rgba(144,238,144,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cat-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(22,104,22,0.18);
    border-color: #90EE90;
}

.cat-highlight-card span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.cat-highlight-card p {
    color: #166816;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .cat-highlights {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 600px) {
    .cat-highlights {
        grid-template-columns: repeat(3, 1fr);
    }
    .cat-highlight-card {
        padding: 1rem 0.5rem;
    }
    .cat-highlight-card span {
        font-size: 2rem;
    }
}