.cfs-flags-wrapper {
    width: 100%;
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

/* container */
.cfs-flags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

/* each item */
.cfs-flags a {
    display: flex;
    flex-direction: column;   /* 🔥 forces name under flag */
    align-items: center;
    text-align: center;
    text-decoration: none;
}

/* FLAG SIZE (bigger) */
.cfs-flags img {
    width: 60px;   /* 🔥 increased from 48px */
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* hover effect */
.cfs-flags img:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* COUNTRY NAME */
.cfs-country-name {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
}