/* Image Upload */
.image-upload-wrapper {
    position: relative;
}

.form-control-file {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.image-preview {
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    background: var(--light);
    transition: all 0.3s ease;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-preview:hover {
    border-color: var(--primary);
    background: rgba(0, 83, 197, 0.05);
}

.image-preview i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.image-preview p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.image-preview small {
    color: #9ca3af;
}

.image-preview img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    object-fit: contain;
}

.items-card {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition:
        opacity 0.6s ease-out,
        transform 0.6s ease-out;
    will-change: opacity, transform;
}

.items-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ck-editor__editable_inline {
    min-height: 500px;
}
