.product-image-editor-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    margin-top: 10px;
    overflow: hidden;
    border: 1px dashed #cddbd3;
    border-radius: 12px;
    background: #f7faf8;
    color: #78857e;
    text-align: center;
}

.product-image-editor-preview img {
    display: block;
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    background: #ffffff;
}

.product-image-editor-preview[data-has-image="true"] {
    border-style: solid;
    background: #ffffff;
}

.product-manager-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 14px;
    overflow: hidden;
    border-radius: 10px;
    background: #f2f6f4;
    color: #87938d;
    font-size: 0.85rem;
}

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

.public-product-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
    padding: 0;
    overflow: hidden;
}

.public-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-placeholder[data-product-image] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 380px;
    padding: 24px;
    overflow: hidden;
}

.product-detail-placeholder[data-product-image].is-filled {
    padding: 0;
    background: #ffffff;
}

.product-detail-placeholder[data-product-image] img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    max-height: 620px;
    object-fit: contain;
    background: #ffffff;
}

@media (max-width: 760px) {
    .product-detail-placeholder[data-product-image],
    .product-detail-placeholder[data-product-image] img {
        min-height: 260px;
    }
}
