/* ===============================
   HB SHEIN-STYLE PRODUCTS GRID
================================ */

.hb-shein-section {
    padding: 40px 20px;
    background: #fff;
}

/* HEADER */
.hb-shein-header {
    max-width: 1200px;
    margin: 0 auto 30px;
    text-align: center;
}

.hb-shein-header span {
    font-size: 11px;
    letter-spacing: 3px;
    color: #b89b6a;
}

.hb-shein-header h2 {
    font-size: 28px;
    font-weight: 500;
    margin: 10px 0;
}

.hb-shein-header p {
    font-size: 13px;
    opacity: 0.6;
}

/* GRID */
.hb-shein-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}

/* CARD */
.hb-shein-card {
    text-decoration: none;
    color: #000;
    background: #fff;
    transition: transform .18s ease;
}

/* IMAGE */
.hb-shein-image {
    aspect-ratio: 1 / 1.25;
    background: #f5f5f5;
    overflow: hidden;
}

.hb-shein-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

/* INFO */
.hb-shein-info {
    padding: 8px 4px;
    text-align: left;
}

.hb-shein-info h3 {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 4px;
}

.hb-shein-price {
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

/* HOVER */
.hb-shein-card:hover {
    transform: translateY(-2px);
}

.hb-shein-card:hover img {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 576px) {
    .hb-shein-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hb-shein-info h3,
    .hb-shein-price {
        font-size: 12px;
    }
}
