body {
    margin: 0;
    padding: 0;
    background: #f8f8f8;
    font-family: 'Arial', sans-serif;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.product-card {
    width: 48%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 6px rgba(0,0,0,0.06);
    position: relative;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-info {
    padding: 10px;
}

.product-info h2 {
    font-size: 14px;
    margin: 6px 0;
    font-weight: 500;
    color: #333;
}

.price {
    font-size: 16px;
    color: #cc0000;
    font-weight: bold;
}

.old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-left: 6px;
}

.badge-discount {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #d60000;
    color: white;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: bold;
}
