/* Product image render fix */

/* Admin list thumbnail */
.admin-thumb-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 62px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.admin-thumb {
    display: block;
    width: 82px;
    height: 62px;
    object-fit: cover;
}

/* Admin edit/add preview */
.admin-thumb-large-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    max-height: 220px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin: 8px 0 10px;
}

.admin-thumb-large {
    display: block;
    max-width: 320px;
    max-height: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.admin-thumb-missing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 62px;
    border: 1px dashed #d1d5db;
    border-radius: 10px;
    color: #9ca3af;
    background: #ffffff;
}

/* Frontend product cards */
.product-card-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    max-height: 240px;
    object-fit: cover;
    background: #ffffff;
}

/* Frontend detail page */
.detail-img {
    display: block;
    width: 100%;
    max-width: 760px;
    max-height: 520px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 16px;
}
