/* =========================================================
   Affiliate Scraper — Front (cupons)
   ========================================================= */

/* Botão de compra "pílula" com a identidade da loja */
/* Cupons */
.ascw-coupons { margin: 18px 0; display: grid; gap: 12px; }
.ascw-coupon-card {
    border: 1px dashed #c3c4c7;
    border-radius: 10px;
    padding: 14px 16px;
    background: #fafafa;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
}
.ascw-coupon-info { flex: 1; min-width: 180px; }
.ascw-coupon-label { font-weight: 700; color: #1d2327; }
.ascw-coupon-meta { font-size: 12px; color: #646970; margin-top: 2px; }
.ascw-coupon-code {
    font-family: monospace;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid #c3c4c7;
    border-radius: 6px;
    padding: 8px 12px;
    background: #fff;
}
.ascw-copy,
.ascw-coupon-action {
    cursor: pointer;
    border: none;
    border-radius: 6px;
    padding: 9px 16px;
    background: #2271b1;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.ascw-copy:hover,
.ascw-coupon-action:hover { background: #135e96; color: #fff; }

/* Lista de produtos do cupom / listagem de cupons */
.ascw-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
    margin: 18px 0;
}
.ascw-product-card {
    border: 1px solid #e2e4e7;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    background: #fff;
}
.ascw-product-card img { max-width: 100%; height: auto; border-radius: 6px; }
.ascw-product-card .ascw-product-name {
    display: block;
    margin: 8px 0 10px;
    color: #1d2327;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
.ascw-product-card .ascw-product-name:hover { color: #2271b1; }
.ascw-product-card .ascw-product-price { display: block; margin-bottom: 8px; color: #646970; }
