/**
 * Home Page Main Categories Styles
 * Original card design - matches existing Elementor design
 */

.blco-home-categories {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* === Container === */
.custom-cat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin: 40px 0;
    padding: 0 10px;
}

/* === Each Card === */
.custom-cat-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 260px;
    padding: 60px 20px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.custom-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* === Top Icon (your red circle image) === */
.custom-cat-icon {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
}

.custom-cat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* === Title === */
.custom-cat-title {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 0;
}

/* === Button / Link === */
.custom-cat-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    color: #b20000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.custom-cat-link:hover {
    color: #ff2d2d;
}

/* === Responsive === */
@media (max-width: 768px) {
    .custom-cat-card {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .custom-cat-card {
        width: 100%;
    }
}

