/* Pulsanti e card prodotto SceltaFacile */
.btn-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    margin: 12px 0 0 0;
}
.btn-affiliate {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 10px 0;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    flex: 1 1 0;
    text-align: center;
    min-width: 0;
    border: none;
    outline: none;
    box-shadow: 0 2px 8px #dbeafe;
    font-size: 1em;
    font-family: inherit;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    white-space: nowrap;
    margin: 0;
}
.btn-affiliate.amazon {
    background: #ff9900;
    color: #fff;
}
.btn-affiliate:hover, .btn-affiliate:focus {
    background: #1746a0;
    color: #fff;
    box-shadow: 0 4px 18px #b3d1f7;
    text-decoration: none;
}
.btn-affiliate.amazon:hover, .btn-affiliate.amazon:focus {
    background: #e48b00;
    color: #fff;
}

/* Card prodotto */
.product-card {
    position: relative;
    background: #eaf3fb;
    border-radius: 10px;
    box-shadow: 0 2px 8px #dbeafe;
    padding: 18px;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
    box-shadow: 0 4px 18px #b3d1f7;
    transform: translateY(-2px) scale(1.03);
}
.product-card img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}
.product-card h3 {
    font-size: 1.05em;
    margin: 0 0 8px 0;
    color: #1a355b;
    text-align: center;
}
.product-card .info {
    font-size: 0.98em;
    margin-bottom: 8px;
    text-align: center;
}
.badge-offer {
    background: #e11d48;
    color: #fff;
    border-radius: 5px;
    padding: 3px 10px;
    font-weight: bold;
    margin-bottom: 6px;
    display: inline-block;
}
.badge-custom {
    background: #fde68a;
    color: #b45309;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 0.95em;
    margin-bottom: 6px;
    display: inline-block;
}
.not-available {
    color: #dc2626;
    font-weight: bold;
}
.star-rating {
    color: #fbbf24;
    font-size: 1.2em;
}
.product-icon {
    font-size: 2em;
    position: absolute;
    top: 10px;
    right: 10px;
}

@media (max-width: 900px) {
    .section { padding: 18px 5vw; }
    .product-list, .category-list { gap: 10px; }
    .product-card, .category-card { width: 100%; min-width: 0; }
    .section-title { font-size: 1.3em; }
}
