.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.banner {
    position: relative;
    height: 600px;
    color: white;
    background-size: cover;
    background-position: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.product-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.product-info {
    flex-grow: 1;
}

.product-title {
    font-size: 14px;
    color: #333;
}

.price {
    color: #333;
    font-weight: bold;
}

.stars {
    color: gold;
    font-size: 12px;
}

.meta-info {
    font-size: 12px;
    color: #666;
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .banner {
        height: 400px;
    }
}