.wcpfup-glass-upload {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 22px 0;
    padding: 16px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(15, 163, 219, 0.16), rgba(230, 0, 126, 0.10)),
        rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    box-sizing: border-box;
}

.wcpfup-glass-upload::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -35px;
    top: -40px;
    background: rgba(255, 205, 22, 0.45);
    border-radius: 50%;
    filter: blur(10px);
    z-index: 0;
}

.wcpfup-glass-upload > * {
    position: relative;
    z-index: 1;
}

.wcpfup-glass-kicker {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #e6007e;
}

.wcpfup-glass-header h3 {
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 900;
    color: #000;
}

.wcpfup-dropzone {
    border: 2px dashed rgba(0, 0, 0, 0.24);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.38);
    box-sizing: border-box;
}

.wcpfup-dropzone.is-dragover {
    border-color: #0fa3db;
    background: rgba(15, 163, 219, 0.14);
}

.wcpfup-drop-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    border-radius: 13px;
    background: #0fa3db;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 39px;
    box-shadow: 4px 4px 0 #000;
}

.wcpfup-drop-title {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
    color: #000;
}

.wcpfup-drop-text {
    margin: 6px 0 14px;
    font-size: 13px;
    line-height: 1.35;
    color: #333;
}

.wcpfup-file-inputs {
    display: grid;
    gap: 10px;
}

.wcpfup-file-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #e6007e;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 4px 4px 0 #000;
    transition: transform .2s ease, box-shadow .2s ease;
    box-sizing: border-box;
}

.wcpfup-file-button:hover {
    transform: translateY(-1px);
    box-shadow: 5px 5px 0 #000;
}

.wcpfup-file-button input {
    display: none;
}

.wcpfup-selected-files {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.wcpfup-file-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 13px;
    font-weight: 700;
    color: #000;
}

.wcpfup-file-preview span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wcpfup-file-preview small {
    flex: 0 0 auto;
    font-size: 11px;
    color: #555;
}

.wcpfup-status {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
    color: #e6007e;
}

.wcpfup-status.is-complete {
    color: #0fa3db;
}

.wcpfup-formats {
    margin: 10px 0 0;
    font-size: 11px;
    line-height: 1.35;
    font-weight: 800;
    color: #000;
}

/* Tablet */
@media (max-width: 1024px) {
    .wcpfup-glass-upload {
        max-width: 100%;
    }
}

/* Movil */
@media (max-width: 767px) {
    .wcpfup-glass-upload {
        max-width: 100%;
        margin: 18px 0;
        padding: 14px;
        border-radius: 16px;
    }

    .wcpfup-glass-header h3 {
        font-size: 18px;
    }

    .wcpfup-dropzone {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .wcpfup-drop-icon {
        width: 40px;
        height: 40px;
        font-size: 26px;
        line-height: 37px;
    }

    .wcpfup-drop-title {
        font-size: 14px;
    }

    .wcpfup-drop-text {
        font-size: 12px;
    }

    .wcpfup-file-button {
        width: 100%;
        min-height: 40px;
        font-size: 13px;
    }

    .wcpfup-status {
        font-size: 11px;
    }

    .wcpfup-formats {
        font-size: 10.5px;
    }
}