/* Dynamic styles for template-specific inline styles */

/* Amazon and eBay item images with dynamic background using CSS custom properties */
.amazon-item-image {
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
    background-image: var(--amazon-image-url);
}

.ebay-item-image {
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
    background-image: var(--ebay-image-url);
}

/* Legacy image styles for items-to-list and listed-items pages */
.image {
    width: 175px;
    height: 200px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
}

.amazon-image {
    background-image: var(--amazon-image-url);
}

.ebay-image {
    background-image: var(--ebay-image-url);
}
