.pshop-page{
    background:#fff;
}

.pshop-hero{
    padding:34px 0 28px;
    background:linear-gradient(135deg,#f8fafc 0%,#eef4ff 100%);
    border-bottom:1px solid #edf2f7;
}

.pshop-hero-inner{
    max-width:760px;
    margin:0 auto;
    text-align:center;
}

.pshop-eyebrow{
    display:inline-flex;
    padding:6px 13px;
    border-radius:999px;
    background:rgba(37,99,235,.08);
    color:#2563eb;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:9px;
}

.pshop-hero h1{
    font-size:32px;
    font-weight:950;
    color:#0f172a;
    margin-bottom:8px;
}

.pshop-hero p{
    color:#64748b;
    font-size:14px;
    line-height:1.7;
    margin:0;
}

.pshop-content{
    padding:30px 0 70px;
}

.pshop-filter{
    display:grid;
    grid-template-columns:minmax(240px,1.3fr) minmax(150px,.8fr) minmax(150px,.8fr) auto;
    gap:10px;
    align-items:center;
    margin-bottom:24px;
    padding:12px;
    background:#f8fafc;
    border:1px solid #e9eef6;
    border-radius:16px;
}

.pshop-search-field{
    position:relative;
}

.pshop-search-field i{
    position:absolute;
    left:13px;
    top:50%;
    transform:translateY(-50%);
    color:#94a3b8;
    font-size:14px;
}

.pshop-filter input,
.pshop-filter select{
    width:100%;
    height:42px;
    border:1px solid #d8e0ea;
    border-radius:11px;
    background:#fff;
    color:#111827;
    font-size:13px;
    font-weight:600;
}

.pshop-filter input{
    padding:0 13px 0 38px;
}

.pshop-filter select{
    padding:0 13px;
}

.pshop-filter-btn{
    height:42px;
    border:0;
    border-radius:11px;
    padding:0 17px;
    background:#0f172a;
    color:#fff;
    font-size:13px;
    font-weight:900;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    cursor:pointer;
}

.pshop-result-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:18px;
    margin-bottom:20px;
}

.pshop-result-head h2{
    font-size:22px;
    font-weight:950;
    color:#0f172a;
    margin-bottom:4px;
}

.pshop-result-head p{
    color:#64748b;
    font-size:13px;
    margin:0;
}

.pshop-clear-link{
    min-height:38px;
    padding:0 14px;
    border-radius:11px;
    background:#eff6ff;
    color:#2563eb;
    font-size:12px;
    font-weight:900;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.pshop-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
}

.pshop-card{
    background:#fff;
    border:1px solid #edf1f7;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 6px 22px rgba(15,23,42,.05);
    transition:.25s ease;
}

.pshop-card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 34px rgba(15,23,42,.08);
}

.pshop-card-image{
    position:relative;
    display:block;
    height:185px;
    background:#f8fafc;
    overflow:hidden;
}

.pshop-card-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:14px;
}

.pshop-sale-badge{
    position:absolute;
    top:11px;
    left:11px;
    z-index:2;
    padding:5px 10px;
    border-radius:999px;
    background:#dc2626;
    color:#fff;
    font-size:10px;
    font-weight:900;
    text-transform:uppercase;
}

.pshop-card-body{
    padding:15px;
}

.pshop-card-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:8px;
    margin-bottom:9px;
}.pshop-category-name{
    color:#2563eb;
    font-size:10.5px;
    font-weight:900;
    text-transform:uppercase;
}

.pshop-stock-pill{
    padding:4px 9px;
    border-radius:999px;
    font-size:9.5px;
    font-weight:900;
    white-space:nowrap;
}

.pshop-stock-pill.in_stock{
    background:#dcfce7;
    color:#166534;
}

.pshop-stock-pill.low_stock{
    background:#fef3c7;
    color:#92400e;
}

.pshop-stock-pill.out_of_stock{
    background:#fee2e2;
    color:#b91c1c;
}

.pshop-card-body h3{
    min-height:40px;
    margin:0 0 8px;
}

.pshop-card-body h3 a{
    display:-webkit-box;
    -webkit-line-clamp:2;
    line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    color:#0f172a;
    font-size:14px;
    line-height:1.45;
    font-weight:900;
    text-decoration:none;
}

.pshop-variants{
    min-height:28px;
    margin:0 0 12px;
    color:#64748b;
    font-size:11.5px;
    line-height:1.45;
    display:-webkit-box;
    -webkit-line-clamp:2;
    line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.pshop-card-bottom{
    display:grid;
    grid-template-columns:1fr auto;
    align-items:end;
    gap:10px;
    margin-top:12px;
}

.pshop-price{
    display:flex;
    flex-direction:column;
    gap:2px;
    min-width:0;
}

.pshop-old-price{
    color:#9ca3af;
    text-decoration:line-through;
    font-size:11px;
    line-height:1;
}

.pshop-new-price{
    color:#111827;
    font-size:16px;
    font-weight:950;
    line-height:1.15;
}

.product-card-actions{
    display:flex;
    align-items:center;
    gap:8px;
}

.product-card-actions form{
    margin:0;
}

.product-icon-btn{
    width:38px;
    height:38px;
    border:0;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:15px;
    transition:.22s ease;
}

.product-icon-btn.cart{
    background:#0f172a;
    color:#fff;
}

.product-icon-btn.wishlist{
    background:#fee2e2;
    color:#dc2626;
}

.pshop-view-btn{
    grid-column:1 / -1;
    width:100%;
    height:40px;
    margin-top:4px;
    border-radius:12px;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:900;
    text-decoration:none;
}

.pshop-empty{
    padding:60px 20px;
    text-align:center;
    background:#f8fafc;
    border:1px solid #edf1f7;
    border-radius:18px;
}

.pshop-empty i{
    font-size:42px;
    color:#cbd5e1;
}

.pshop-empty h3{
    font-size:24px;
    font-weight:900;
    margin:12px 0 6px;
    color:#0f172a;
}

.pshop-empty p{
    color:#64748b;
    font-size:14px;
    margin-bottom:18px;
}

.pshop-empty a{
    min-height:42px;
    padding:0 18px;
    border-radius:12px;
    background:#0f172a;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:900;
    text-decoration:none;
}

@media(max-width:1200px){
    .pshop-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}

@media(max-width:992px){
    .pshop-filter{
        grid-template-columns:1fr 1fr;
    }

    .pshop-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:768px){
    .pshop-filter{
        grid-template-columns:1fr;
    }

    .pshop-filter-btn{
        width:100%;
    }

    .pshop-result-head{
        flex-direction:column;
        align-items:flex-start;
    }

    .pshop-grid{
        grid-template-columns:1fr;
    }

    .pshop-card{
        max-width:380px;
        margin:0 auto;
        width:100%;
    }
}

@media(max-width:420px){
    .pshop-card-bottom{
        grid-template-columns:1fr;
        align-items:start;
    }

    .product-card-actions{
        width:100%;
    }

    .product-icon-btn{
        flex:1;
    }
}.product-icon-btn.cart:hover{
    background:#2563eb;
    color:#fff;
}

.product-icon-btn.wishlist:hover{
    background:#dc2626;
    color:#fff;
}

.product-icon-btn.wishlist.active{
    background:#dc2626;
    color:#fff;
}

.product-icon-btn.wishlist.active i{
    color:#fff;
}

.product-icon-btn.cart:active{
    transform:scale(.96);
}

.product-icon-btn.wishlist:active{
    transform:scale(.96);
}