.bdc-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.bdc-product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid #eee;
}

.bdc-product-card:hover {
    transform: translateY(-5px);
}

.bdc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #27ae60;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 1;
}

.bdc-product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bdc-product-info {
    padding: 15px;
    text-align: center;
}

.bdc-product-info h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
}

.bdc-price-tag {
    margin-bottom: 15px;
}

.bdc-price-tag small {
    font-size: 13px;
    color: #888;
    font-weight: normal;
    margin-left: 2px;
}

.bdc-old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 16px;
}

.bdc-sale-price, .bdc-regular-price {
    font-weight: bold;
    color: #e67e22;
    font-size: 20px;
}

.bdc-add-to-cart {
    background: #2c3e50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.bdc-add-to-cart:hover {
    background: #34495e;
}
.bdc-qty-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    gap: 5px;
}
.qty-btn {
    background: #eee;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}
.qty-input {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
    height: 30px;
    border-radius: 4px;
}
.bdc-unit-display {
    color: #888;
    font-size: 14px;
    margin-bottom: 5px;
}
.bdc-display-price {
    font-size: 22px;
    color: #e67e22;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}