/* Estilos para o container do Genera Google Market Place */

.ggmp-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ggmp-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 768px) {
    .ggmp-item {
        flex-direction: row;
    }
}

.ggmp-item-image {
    flex-shrink: 0;
}

.ggmp-item-image img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .ggmp-item-image {
        width: 250px;
    }
    .ggmp-item-image img {
        height: 100%;
    }
}

.ggmp-item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ggmp-item-title {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    color: #333;
}

.ggmp-item-description {
    margin: 0 0 15px 0;
    color: #555;
    flex-grow: 1;
}

.ggmp-item-price {
    font-size: 1.1em;
    color: #111;
    margin-bottom: 15px;
}

.ggmp-item-links {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.ggmp-btn {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.2s;
}

.ggmp-btn:hover {
    background-color: #005a87;
    color: #fff;
}

.ggmp-item-coupon {
    background-color: #f0f8ff;
    border: 1px dashed #add8e6;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 1.1em;
}

.ggmp-item-coupon strong {
    color: #e53935;
}