.amazon-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.amazon-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.amazon-product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 220px;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.amazon-product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.amazon-product-info {
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.amazon-product-info h3 {
    font-size: 16px;
    margin: 0 0 10px;
    flex-grow: 1;
}

.amazon-product-info p {
    margin: 5px 0;
}

.amazon-buy-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px;
    text-align: center;
    background: #ff9900;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.amazon-buy-button:hover {
    background: #e68a00;
}

@media (min-width: 576px) {
    .amazon-product {
        width: calc(50% - 10px);
    }
}

@media (min-width: 768px) {
    .amazon-product {
        width: calc(33.333% - 10px);
    }
}

@media (min-width: 992px) {
    .amazon-product {
        width: calc(25% - 10px);
    }
}

@media (min-width: 1200px) {
    .amazon-product {
        width: calc(20% - 10px);
    }
}
