/**
 * Amazon Partnerlink Plugin Styles
 * Version: 1.2
 */

/* Button Style */
.amazon-link-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff9900;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.amazon-link-button:hover {
    background-color: #e88a00;
    color: #ffffff !important;
}

.amazon-link-button:active {
    background-color: #cc7a00;
}

/* Produktbox */
.amazon-product-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px 0;
    background-color: #f9f9f9;
    transition: box-shadow 0.3s ease;
}

.amazon-product-box:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.amazon-product-image {
    flex-shrink: 0;
}

.amazon-product-box img {
    max-width: 150px;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
    display: block;
}

.amazon-product-box img:hover {
    transform: scale(1.05);
}

.amazon-product-content {
    flex: 1;
}

.amazon-product-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.amazon-product-box .amazon-link-button {
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .amazon-product-box {
        flex-direction: column;
        text-align: center;
    }

    .amazon-product-box img {
        max-width: 100%;
    }

    .amazon-link-button {
        width: 100%;
        text-align: center;
    }
}