.hj-product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.hj-product-box {
    background: #111;
    border: 1px solid #333;
    padding: 15px;
    border-radius: 8px;
    color: #fff;
    flex: 1 1 300px;
}
.hj-product-img img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}
.hj-product-title {
    font-size: 18px;
    margin: 10px 0;
    color: #fff;
}
.hj-slider-wrapper {
    position: relative;
    margin-top: 10px;
    margin-bottom: 25px;
}
.hj-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 4px;
    color: #fff;
}
.hj-slider-dots {
    position: absolute;
    width: 100%;
    top: 30px;
    display: flex;
    justify-content: space-between;
    padding: 0 6px;
    pointer-events: none;
}
.hj-slider-dots .dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.6;
}
.hj-slider-dots .dot.active {
    background: #00ffcc;
    width: 12px;
    height: 12px;
    opacity: 1;
}
.hj-weight-label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #fff;
}
.hj-price-info span {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
    color: #fff;
}