.gs-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gs-product-card {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.gs-product-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.gs-product-card h3 {
    margin: 15px 0 10px;
    font-size: 1.2em;
}

.gs-product-card .price {
    color: #e44d26;
    font-weight: bold;
    font-size: 1.1em;
}

.view-detail {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.product-detail-extra {
    margin-bottom: 20px;
}

.product-detail-extra img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
