/* ==========================================================
   BLP PRODUK
   Modern Store Style
========================================================== */

*{
    box-sizing:border-box;
}

body{

    margin:0;

    padding:0 0 90px;

    background:#f4f7fb;

    color:#1f2937;

    font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

}

/* ==========================================================
   CONTAINER
========================================================== */

.blp-container{

    max-width:460px;

    margin:auto;

    padding:28px 16px;

}

/* ==========================================================
   HEADER MEMBER
========================================================== */

.blp-avatar{

    text-align:center;

}

.blp-avatar img{

    width:110px;

    height:110px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #fff;

    box-shadow:
    0 5px 18px rgba(0,0,0,.15);

}

.blp-name{

    margin-top:18px;

    font-size:26px;

    font-weight:700;

    text-align:center;

}

.blp-username{

    text-align:center;

    color:#64748b;

    margin-top:5px;

    font-size:14px;

}

.blp-subtitle{

    text-align:center;

    margin-top:10px;

    color:#2563eb;

    font-size:15px;

    font-weight:600;

}

/* ==========================================================
   KATEGORI
========================================================== */

.blp-kategori{

    margin:28px 0;

    display:flex;

    flex-wrap:wrap;

    gap:8px;

    justify-content:center;

}

.blp-kategori a{

    text-decoration:none;

    color:#475569;

    background:#fff;

    border:1px solid #dbe4ef;

    padding:8px 14px;

    border-radius:40px;

    font-size:13px;

    transition:.25s;

}

.blp-kategori a:hover{

    background:#2563eb;

    color:#fff;

}

.blp-kategori a.active{

    background:linear-gradient(
        135deg,
        #2563eb,
        #4f46e5
    );

    color:#fff;

    border-color:#2563eb;

}

/* ==========================================================
   GRID
========================================================== */

.blp-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:14px;

}

/* ==========================================================
   CARD
========================================================== */

.blp-card{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:

    0 6px 18px rgba(15,23,42,.08);

    transition:.25s;

}

.blp-card:hover{

    transform:translateY(-4px);

    box-shadow:

    0 12px 25px rgba(15,23,42,.15);

}

.blp-card a{

    color:inherit;

    text-decoration:none;

    display:block;

}

/* ==========================================================
   IMAGE
========================================================== */

.blp-card img{

    width:100%;

    aspect-ratio:1/1;

    object-fit:contain;

    background:#fff;

    padding:14px;

}

/* ==========================================================
   BODY
========================================================== */

.blp-card-body{

    padding:12px;

}

.blp-card-title{

    font-size:14px;

    font-weight:700;

    line-height:1.45;

    min-height:42px;

    color:#111827;

}

/* ==========================================================
   PRICE
========================================================== */

.blp-price{

    margin-top:8px;

    font-size:17px;

    font-weight:700;

    color:#16a34a;

}

/* ==========================================================
   BADGE
========================================================== */

.blp-badge{

    display:inline-block;

    margin-top:8px;

    padding:5px 10px;

    border-radius:30px;

    font-size:11px;

    font-weight:700;

    background:#fef3c7;

    color:#92400e;

}

/* ==========================================================
   BUTTON
========================================================== */

.blp-btn{

    display:block;

    margin-top:12px;

    text-align:center;

    padding:10px;

    border-radius:10px;

    font-weight:700;

    color:#fff;

    background:

    linear-gradient(

    135deg,

    #2563eb,

    #4f46e5

    );

}

.blp-card:hover .blp-btn{

    opacity:.92;

}

/* ==========================================================
   EMPTY
========================================================== */

.blp-empty{

    grid-column:1/-1;

    background:#fff;

    border-radius:14px;

    padding:40px 20px;

    text-align:center;

    color:#64748b;

}

/* ==========================================================
   PAGINATION
========================================================== */

.blp-pagination{

    margin:30px 0;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:8px;

}

.blp-pagination a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    border-radius:10px;

    background:#fff;

    color:#334155;

    font-weight:600;

    box-shadow:

    0 2px 8px rgba(0,0,0,.08);

}

.blp-pagination a:hover{

    background:#2563eb;

    color:#fff;

}

.blp-pagination a.active{

    background:

    linear-gradient(

    135deg,

    #2563eb,

    #4f46e5

    );

    color:#fff;

}

/* ==========================================================
   BOTTOM NAV
========================================================== */

.blp-bottom-nav{

    position:fixed;

    left:0;

    right:0;

    bottom:0;

    height:70px;

    background:#fff;

    display:flex;

    justify-content:space-around;

    align-items:center;

    box-shadow:

    0 -3px 18px rgba(0,0,0,.10);

    z-index:999;

}

.blp-bottom-nav a{

    flex:1;

    text-align:center;

    text-decoration:none;

    color:#64748b;

    font-size:12px;

}

.blp-bottom-nav span{

    display:block;

    font-size:22px;

    margin-bottom:4px;

}

.blp-bottom-nav a.active{

    color:#2563eb;

    font-weight:700;

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:480px){

.blp-container{

    padding:22px 12px;

}

.blp-grid{

    gap:12px;

}

.blp-card-title{

    font-size:13px;

}

.blp-price{

    font-size:15px;

}

}