/* ==========================================
            HERO
========================================== */

.store-hero{
    padding:0px 8% 0px;
    text-align:center;
}

.store-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:#4f7cff15;
    color:#4f7cff;
    font-weight:700;
    margin-bottom:0px;
    margin-top: 10px;
}

.store-hero h1{
    font-size:28px;
    margin-bottom:10px;
}

.store-hero p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

/* ==========================================
            SEARCH
========================================== */

.store-search{
    padding:20px 8%;
}

.store-search input{
    width:100%;
    padding:18px 24px;
    border-radius:16px;
    border:1px solid #ddd;
    outline:none;
    font-size:16px;
    transition:.3s;
}

.store-search input:focus{
    border-color:#4f7cff;
    box-shadow:0 0 0 4px rgba(79,124,255,.12);
}

/* ==========================================
            FILTERS
========================================== */

.store-filters{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    padding:10px 8%;
}

.store-filters select{
    padding:12px 18px;
    border-radius:12px;
    border:1px solid #ddd;
    cursor:pointer;
    font-size:14px;
}

/* ==========================================
        QUICK FILTER
========================================== */

.quick-filter{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    padding:25px 8%;
}

.quick-filter button{
    border:none;
    padding:10px 18px;
    border-radius:50px;
    cursor:pointer;
    background:#f3f5fb;
    transition:.3s;
    font-weight:600;
}

.quick-filter button:hover,

.quick-filter .active{
    background:#4f7cff;
    color:#fff;
}

/* ==========================================
        RESULT COUNT
========================================== */

.resource-count{
    padding:0 8% 25px;
    font-size:15px;
    color:#666;
}

/* ==========================================
            GRID
========================================== */

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 0 8% 70px;
}

.resource-card {
    position: relative;
    width: 100%;
    background: #c6c5c7;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: .35s;
    box-shadow: 0 10px 15px rgba(236, 236, 236, 0.08);
}

@media (max-width: 768px) {
    .resource-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 4% 40px !important;
    }
}

.resource-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(255, 255, 255, 0.16);
}

/* ==========================================
            IMAGE
========================================== */

.resource-image{
    position:relative;
    height:120px;
    overflow:hidden;
}

.resource-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s;
}

.resource-card:hover img{
    transform:scale(1.08);
}

.premium-tag{
    position:absolute;
    top:10px;
    right:10px;
    background:#ff9800;
    color:#fff;
    font-size:10px;
    font-weight:700;
    padding:5px 10px;
    border-radius:30px;
}

/* ==========================================
            CONTENT
========================================== */

.card-body{
    padding:14px;
}

.card-class{
    color:#4f7cff;
    font-size:11px;
    font-weight:700;
}

.card-body h3{
    margin:8px 0;
    font-size:18px;
    line-height:1.4;
    min-height:45px;
}

.card-rating{
    font-size:13px;
    margin:10px 0;
}

.card-rating span{
    color:#888;
}

.card-info{
    font-size:12px;
    color:#666;
    margin-bottom:12px;
}

.card-price{
    font-size:22px;
    color:#4f7cff;
    font-weight:800;
}

/* ==========================================
            HOVER OVERLAY
========================================== */

/* .card-hover{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(20,20,20,.55);
    color:#fff;
    font-weight:700;
    opacity:0;
    transition:.35s;
    backdrop-filter:blur(2px);
} */

.resource-card:hover .card-hover{
    opacity:1;
}

/* ==========================================
        TABLET
========================================== */

@media(max-width:1100px){
.resource-grid{
grid-template-columns:repeat(1,1fr);
}

}

/* ==========================================
        MOBILE
========================================== */

@media(max-width:300px){
.resource-grid{
grid-template-columns:repeat(1,1fr);
padding:0 5% 40px;
}

.store-filters{
padding:8px 5%;
}

.quick-filter{
padding:15px 5%;
}

.resource-count{
padding:0 5% 20px;
}

.store-hero h1{
font-size:20px;
}

.card-body h3{
font-size:10px;
}

}
.empty-state{
grid-column:1/-1;
text-align:center;
padding:80px 20px;
background:#fff;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.empty-icon{
font-size:70px;
margin-bottom:20px;
}

.empty-state h2{
font-size:30px;
margin-bottom:15px;
}

.empty-state p{
color:#777;
margin-bottom:25px;
}

.empty-state button{
border:none;
background:#4f7cff;
color:#fff;
padding:14px 28px;
border-radius:12px;
cursor:pointer;
font-size:15px;
font-weight:600;
transition:.3s;
}

.empty-state button:hover{
background:#3568ff;
}