.amazon-deals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.deal {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.deal img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.deal h3 {
    margin: 0.5rem 0;
}

.deal p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}