/* Han FK Mağaza Styles */
.hfm-wrapper{
    max-width:1300px;
    margin:0 auto;
    font-family:'Poppins',sans-serif;
}
.hfm-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
    flex-wrap:wrap;
    gap:12px;
}
.hfm-cats{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.hfm-cat{
    background:#ffffff;
    border:2px solid #10026D;
    color:#10026D;
    padding:6px 14px;
    border-radius:22px;
    font-size:14px;
    cursor:pointer;
    transition:all .3s;
}
.hfm-cat.active,
.hfm-cat:hover{
    background:#10026D;
    color:#ffffff;
}
.hfm-sort select{
    padding:6px 12px;
    border:2px solid #10026D;
    border-radius:22px;
    color:#10026D;
    background:#ffffff;
    font-size:14px;
}
.hfm-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(32%,1fr));
    gap:24px;
}
@media(max-width:900px){
    .hfm-grid{
        grid-template-columns:repeat(auto-fill,minmax(48%,1fr));
    }
}
@media(max-width:600px){
    .hfm-grid{
        grid-template-columns:100%;
    }
}
.hfm-card{
    border:1px solid #e5e5e5;
    border-radius:16px;
    overflow:hidden;
    text-align:center;
    transition:transform .3s;
    background:#fff;
}
.hfm-card:hover{
    transform:translateY(-6px);
}
.hfm-card img{
    width:100%;
    height:auto;
    display:block;
}
.hfm-card h3{
    font-size:16px;
    margin:12px 0 4px;
    color:#10026D;
}
.hfm-price{
    font-weight:600;
    color:#10026D;
    margin-bottom:12px;
    display:block;
}

.hfm-card{
    padding:12px;
}
.hfm-card img.hfm-img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:14px;
    margin-bottom:12px;
}
.hfm-btn{
    display:inline-block;
    background:#10026D;
    color:#fff;
    padding:8px 24px;
    border-radius:22px;
    font-size:14px;
    font-weight:600;
    transition:all .3s;
    text-decoration:none;
}
.hfm-btn:hover{
    background:#220DB1;
    color:#fff;
}


/* --- Fix: show full image (no crop) & button readability --- */
.hfm-card{ padding:16px; }
.hfm-card .hfm-img-link{ display:block; background:#fff; padding:6px; border-radius:14px; }
.hfm-card img.hfm-img{
    width:100%;
    height:auto;
    max-height:320px;
    object-fit:contain;
    background:#fff;
    display:block;
    margin:0 auto 14px auto;
}
.hfm-card h3{ margin:10px 8px 4px; line-height:1.3; }
.hfm-price{ margin:0 0 12px; }
.hfm-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:10px 26px;
    background:#10026D !important;
    color:#ffffff !important;
    border:2px solid #10026D;
    border-radius:24px;
    letter-spacing:.2px;
    text-decoration:none !important;
    font-weight:700;
    font-size:14px;
}
.hfm-btn:hover{
    background:#220DB1 !important;
    border-color:#220DB1;
    color:#ffffff !important;
    transform:translateY(-1px);
}
