.fcb-five-categories-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10vw;
    margin: 32px auto 16px auto;
    flex-wrap: nowrap;
    max-width: 100%;
}

.fcb-category-item {
    text-align: center;
    flex: 0 1 160px;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fcb-cat-img-wrap {
    width: 250px;
    height: 250px;
    margin: 0 auto 14px auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(60,30,15,0.06);
    background: #f7f6f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fcb-cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.fcb-cat-title {
    font-size: 1.17rem;
    color: #634d3b;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.2px;
    text-align: center;
}

.fcb-placeholder {
    font-size: 0.9rem;
    color: #c3bfc2;
    line-height: 1;
    font-style: italic;
    padding: 20px;
}

/* Responsive */
@media (max-width: 850px) {
    .fcb-five-categories-row {
        gap: 2vw;
        margin-left: auto;
        margin-right: auto;
    }
    .fcb-cat-img-wrap { width: 90px; height: 90px; }
}

@media (max-width: 700px) {
    .fcb-five-categories-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4vw 4vw;
        max-width: 98vw;
        margin-left: auto;
        margin-right: auto;
    }
    .fcb-category-item {
        min-width: 0;
        flex: 0 1 30%;        /* Two columns */
        margin-bottom: 18px;
    }
    .fcb-cat-img-wrap { 
        width: 120px !important; 
        height: 120px !important;
        min-width: 120px !important; 
        min-height: 120px !important;
        max-width: 120px !important;
        max-height: 120px !important;
    }
    .fcb-cat-title { font-size: 0.99rem; }
}
@media (max-width: 480px) {
    .fcb-cat-img-wrap { 
        width: 77px !important; 
        height: 77px !important;
        min-width: 77px !important; 
        min-height: 77px !important;
        max-width: 77px !important;
        max-height: 77px !important;
    }
    .fcb-cat-title { font-size: 0.94rem; }
}
