.amazon-product {
    margin: 15px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.amazon-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.amazon-product-inner {
    text-align: center;
}

.amazon-product-image {
    margin-bottom: 12px;
}

.amazon-product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.amazon-product-title {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.amazon-product-title a {
    text-decoration: none;
    color: #333;
}

.amazon-product-title a:hover {
    color: #e47911;
}

.amazon-product-price {
    font-size: 16px;
    font-weight: bold;
    color: #B12704;
    margin: 8px 0;
}

.amazon-product-button {
    margin-top: 10px;
}

.amazon-button {
    display: inline-block;
    background: #FFA41C;
    color: #000 !important;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 2px;
    font-weight: bold;
    font-size: 13px;
    border: 1px solid #FF8F00;
    transition: all 0.3s ease;
}

.amazon-button:hover {
    background: #FA8900;
    transform: scale(1.05);
}

.amazon-product-left {
    float: left;
    margin-right: 20px;
}

.amazon-product-right {
    float: right;
    margin-left: 20px;
}

.amazon-product-center {
    margin-left: auto;
    margin-right: auto;
}

.amazon-in-article {
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, #fff9f0, #ffffff);
    border-radius: 10px;
    border-left: 4px solid #FFA41C;
    text-align: center;
}

.amazon-from-sidebar {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.amazon-from-sidebar:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .amazon-product {
        float: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}