.bpl-product-list {
    max-width: 448px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.bpl-product {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
}

.bpl-product__image {
    display: block;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.bpl-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.bpl-product__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
    min-height: 120px;
}

.bpl-product__buyers,
.bpl-category-card__buyers {
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    display: flex;
    padding: 3px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 3px;
    color: #58ce04;
    background-color: #58ce041a;
}

.bpl-product__title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.bpl-product__title a {
    color: inherit;
    text-decoration: none;
}

.bpl-product__rating-views {
    font-size: 12px;
    color: #46474B;
}

.bpl-product__discount {
    font-size: 14px;
    font-weight: 700;
    color: #5B37ED;
}

.bpl-product__discount:empty {
    display: none;
}

.bpl-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    width: 100%;
}

.bpl-category-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.bpl-category-card__image {
    display: block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.bpl-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bpl-category-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1 1 auto;
}

.bpl-category-card__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.bpl-category-card__title a {
    color: inherit;
    text-decoration: none;
}

.bpl-category-card__price {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: baseline;
    font-size: 14px;
}

.bpl-category-card__price-regular {
    color: #393939;
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    text-decoration-line: line-through;
}

.bpl-category-card__price-sale,
.bpl-category-card__price-current {
    color: #5b37ed;
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
}

.bpl-category-card__price-regular .woocommerce-Price-amount,
.bpl-category-card__price-sale .woocommerce-Price-amount,
.bpl-category-card__price-current .woocommerce-Price-amount,
.bpl-category-card__price-regular .woocommerce-Price-currencySymbol,
.bpl-category-card__price-sale .woocommerce-Price-currencySymbol,
.bpl-category-card__price-current .woocommerce-Price-currencySymbol {
    color: inherit !important;
    font: inherit !important;
    text-decoration: inherit !important;
}

.bpl-category-card__button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 16px;
    border-radius: 12px;
    background-color: #f5f5f5;
    color: #757575;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}
