.toon-amazon-card {
    max-width: 380px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.09);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 28px 0;
    border: 1px solid #f1f1f1;
}

.toon-amazon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.14);
}

.toon-card-image {
    height: 260px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.toon-card-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.toon-amazon-card:hover .toon-card-image img {
    transform: scale(1.08);
}

.toon-card-content {
    padding: 22px;
}

.toon-card-title {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0 0 14px 0;
    color: #1f2937;
    font-weight: 600;
}

.toon-card-rating {
    color: #f4b400;
    font-size: 1.35rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.toon-card-price {
    font-size: 1.55rem;
    font-weight: 700;
    color: #b12704;
    margin: 12px 0 18px 0;
}

.toon-amazon-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #ffd814, #f4c300);
    color: #111111;
    text-align: center;
    padding: 15px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(255, 216, 20, 0.35);
    transition: all 0.3s ease;
}

.toon-amazon-button:hover {
    background: linear-gradient(135deg, #f4c300, #e0b000);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 216, 20, 0.5);
}

.toon-disclaimer {
    text-align: center;
    font-size: 0.73rem;
    color: #888;
    margin-top: 14px;
    font-style: italic;
}