.dz-details {display: none}
.dz-image-preview:hover .dz-image img {
    filter: none !important;
}
.dz-image img {
   	transition: .3s !important;
  	max-width: 120px !important;
}
.dropzone {
    min-height: 150px;
    border: 2px dashed rgba(0, 0, 0, 0.3);
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #666;
    font-family: Arial, sans-serif;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dropzone:hover {
    background: #f0f0f0;
    border-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.dropzone.dragover {
    background: #e0f7fa;
    border-color: #00acc1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.dropzone p {
    margin: 0;
    font-size: 14px;
    color: #555;
}
.dropzone.dragover::before {
    font-size: 18px;
    color: #00acc1;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.dropzone .dz-preview.dz-image-preview {background: transparent}
img.upload-icon {
    max-width: 100px !important;
    margin-bottom: .5em;
}
.dz-message p {
    font-size: 1.1rem !important;
}
#wc-dropzone-form:has(.dz-preview) {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Default: 4 images per row */
    gap: 10px;
}

@media (max-width: 900px) {
    #wc-dropzone-form:has(.dz-preview) {
        grid-template-columns: repeat(3, 1fr); /* 3 images per row */
    }
}

@media (max-width: 600px) {
    #wc-dropzone-form:has(.dz-preview) {
        grid-template-columns: repeat(2, 1fr); /* 2 images per row */
    }
}