/* Layout & Spacing */
.mh-upload-wrapper {
    margin: 10px 0;
}

.mh-label {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

/* Bricks-Inspired Drop Zone */
.mh-drop-zone {
    border: 1px dashed var(--bricks-color-color2);
    padding: 10px;
    border-radius: var(--border-radius-s);
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    background: #f9f9f9;
}

.mh-drop-zone.mh-drag-active {
    border-color: #000;
    background: #eee;
}

.mh-upload-icon {
    font-size: 30px;
    display: block;
}

/* Front-end Previews (Before upload) */
.mh-preview-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.mh-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
}

.mh-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Delete Button Design */
.mh-remove-fe {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    line-height: 1;
}

/* Review Gallery (Inside the comments) */
.mh-review-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.mh-gallery-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: zoom-in;
    transition: transform 0.2s;
}

.mh-gallery-item img:hover {
    transform: scale(1.05);
}