.rafa-product-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: auto;
}

.rafa-product-item {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    gap: 15px;
    transition: box-shadow 0.2s;
}

.rafa-.product-item:hover {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.rafa-product-img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 5px;
}

.rafa-product-info {
    flex: 1;
}

.rafa-product-info h3 {
    font-size: 16px;
    margin: 0;
}

.rafa-product-info h3 a {
    text-decoration: none;
    color: #000;
    transition: all 0.2s;
}

.rafa-product-info h3 a:hover {
    text-decoration: underline;
}

.rafa-product-info p {
    font-size: 14px;
    color: #555;
    margin: 5px 0 0;
}

.rafa-product-btn {
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.rafa-product-btn:hover {
    background: #c62828;
}

/* Responsividade */
@media (max-width: 600px) {
    .rafa-product-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .rafa-product-img {
        width: 100%;
        height: auto;
    }

    .rafa-product-btn {
        width: 100%;
        text-align: center;
    }
}