
.ctp-wrapper{
    max-width:1200px;
    margin:auto;
    padding:20px;
    font-family:Arial,sans-serif;
}

.ctp-title{
    margin-bottom:20px;
}

.ctp-search{
    width:100%;
    padding:14px;
    border-radius:10px;
    border:1px solid #ddd;
    margin-bottom:20px;
}

.ctp-filters{
    display:flex;
    gap:10px;
    margin-bottom:20px;
    overflow:auto;
}

.ctp-filters button{
    border:none;
    padding:10px 16px;
    border-radius:30px;
    cursor:pointer;
}

.ctp-filters .active{
    background:#000;
    color:#fff;
}

.ctp-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
}

.ctp-card{
    border:1px solid #eee;
    border-radius:14px;
    padding:20px;
    background:#fff;
}

.ctp-card button{
    width:100%;
    padding:12px;
    background:#000;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

@media(max-width:768px){
    .ctp-grid{
        grid-template-columns:1fr;
    }
}
