body{
    background:#f5f5f5;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding-top: 90px;
    padding-bottom: 60px;
}

/* HEADER */
.navbar{
    background:#ee4d2d;
}

/* KATEGORI NAV */
.category-nav{
    background:white;
    border-bottom:1px solid #eee;
    padding:10px 0;
}
.category-nav a{
    font-size:14px;
    margin-right:18px;
    color:#333;
    text-decoration:none;
}
.category-nav a:hover{
    color:#ee4d2d;
}

/* SIDEBAR */
.sidebar{
    background:white;
    border-radius:2px;
    padding:15px;
    font-size:14px;
    border:1px solid #e5e5e5;
}
.filter-title{
    font-weight:600;
    margin:10px 0 6px;
}

/* PRODUCT */
.product-card {
  background: #fff;
  border-radius: 6px;
  border: 1px solid #eee;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.product-body {
  padding: 8px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 14px;
  font-weight: 500;
  height: 42px; /* fix judul agar rata */
  overflow: hidden;
  line-height: 1.2rem;
}

.price {
  font-size: 15px;
  font-weight: 600;
  margin-top: 5px;
}

.old-price {
  font-size: 12px;
  color: #999;
}

.free-ongkir {
  font-size: 12px;
  background: #eef9ee;
  color: #29a82f;
  padding: 2px 4px;
  border-radius: 3px;
  display: inline-block;
  margin-top: 5px;
}

.product-meta {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  margin-top: auto; /* ini yang meratakan bawah */
}

/* SORT TAB */
.sort-bar .btn{
    background:white;
    border:1px solid #ddd;
    font-size:14px;
    border-radius:2px;
}
.sort-bar .btn.active{
    background:#ee4d2d;
    color:white;
    border-color:#ee4d2d;
}

/* PAGINATION */
.pagination-shopee{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:4px;
    margin:25px 0;
}
.pagination-shopee a{
    display:flex;
    justify-content:center;
    align-items:center;
    width:34px;
    height:34px;
    border:1px solid #ddd;
    background:white;
    color:#333;
    text-decoration:none;
    border-radius:2px;
    font-size:14px;
}
.pagination-shopee a:hover{
    border-color:#ee4d2d;
    color:#ee4d2d;
}
.pagination-shopee .active{
    background:#ee4d2d;
    color:white;
    border-color:#ee4d2d;
}
.pagination-shopee .arrow{
    width:40px;
    font-size:16px;
}

/* mobile */
@media(max-width:576px){
    body{
        padding-top: 30px;
    }
    .product-title{height:auto;}
}

.bottom-nav{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    z-index: 9999;
}