/**
 * ==================================================================
 * Project      : Shops
 * File         : css/category-card-circle.css
 * Author       : Erica Mae Yeban
 * Created Date : 2026-05-30
 *
 * Copyright (c) 2026 Chomp.
 * All Rights Reserved.
 *
 * NOTICE:
 * This source code contains proprietary information owned by
 * Chomp Organization. The contents of this file may not be copied,
 * modified, distributed, disclosed, or used without express
 * written authorization from the copyright holder.
 * ==================================================================
 */

/* ===== CATEGORY CARDS ===== */
.category-card-circle {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all var(--transition-base);
}

.category-card-circle:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-card-circle img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}
