.scfp-container { text-align:center; }
.scfp-buttons { 
    margin-bottom:20px; 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 10px; 
}
.scfp-btn { 
    background:#fff; 
    border:1px solid #ea0d00; 
    padding:10px 15px; 
    margin:5px; 
    border-radius:5px; 
    cursor:pointer; 
    color: #ea0d00;
    font-weight: bold;
    flex: 0 0 calc(33.333% - 20px);
    min-width: 120px;
    transition: all 0.3s ease;
}
.scfp-btn:hover {
    background: #ea0d00;
    color: #fff;
}
.scfp-btn.active { 
    background:#ea0d00; 
    color:#fff; 
}
.scfp-count {
    font-size: 14px;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}
.scfp-grid { 
    display:flex; 
    flex-wrap:wrap; 
    justify-content:center; 
    gap:20px; 
}
.scfp-item { 
    width:300px; 
    border:1px solid #ea0d00; 
    border-radius:10px; 
    padding:10px; 
    background:#fff; 
    transition: all 0.3s ease;
    opacity: 1;
}
.scfp-item.fade-out {
    opacity: 0;
}
.scfp-item img { 
    width:100%; 
    height:200px; 
    object-fit:cover; 
    border-radius:8px; 
}
.scfp-item h3 {
    color: #ea0d00;
    text-transform: capitalize;
    margin: 10px 0 5px 0;
}
.scfp-item .scfp-category {
    text-align: left;
    margin: 5px 0;
    font-weight: bold;
    font-size: 12px;
    color: #000;
}
.scfp-item .scfp-country {
    text-align: left;
    margin: 5px 0;
    font-weight: bold;
    font-size: 12px;
    color: #000;
}
.scfp-item:hover { 
    box-shadow:0 0 10px rgba(234,13,0,0.2); 
}

/* Responsive Design */
@media (max-width: 768px) {
    .scfp-btn {
        flex: 0 0 calc(50% - 10px);
        min-width: 100px;
    }
    .scfp-item {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .scfp-btn {
        flex: 0 0 calc(50% - 10px);
        margin: 5px 0;
    }
    .scfp-item {
        width: 100%;
        max-width: 300px;
    }
    .scfp-buttons {
        flex-direction: row;
        align-items: center;
    }
}
