
    /* 1. LAYOUT & WRAPPER */
    .ups-wrapper {
        max-width: 1100px;
        margin: 2rem auto;
        width: 100%;
        color: var(--text);
    }

    .ups-grid {
        display: grid;
        grid-template-columns: 62% 38%;
        gap: 20px;
        align-items: start;
    }

    /* 2. CARD & COMPONENTS */
    .ups-card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .ups-card-header {
        padding: 12px 18px;
        background: #1e242f;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.5);
        border-bottom: 1px solid var(--border);
    }

    .ups-padding {
        padding: 20px;
        background-color: #1e242f;
    }

    /* 3. UPLOAD ZONE */
    .ups-drop-zone {
        border: 2px dashed rgba(255, 255, 255, 0.1);
        border-radius: 10px;

        position: relative;
        height: 220px;
        /* FIXED height */
        padding: 0;
        /* REMOVE padding */

        text-align: center;
        background: rgb(52, 22, 14);
        margin-bottom: 20px;
        cursor: pointer;
        transition: 0.3s;
        position: relative;
        min-height: 220px;
        /* 👈 IMPORTANT */
    }

    .ups-drop-zone:hover {
        border-color: #E45611;
        background: rgba(0, 0, 0, 0.25);
    }

    #previewImage {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: none;
        z-index: 5;
    }

    .credits-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #1c2533;
        padding: 12px 20px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    #imageInput {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
        z-index: 10;
    }

    /* 4. BUTTONS & CONTROLS */
    .ups-options {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }

    .ups-opt-btn {
        background: #1e242f;
        border: 1px solid var(--border);
        color: var(--text);
        padding: 12px 5px;
        border-radius: 8px;
        font-size: 13px;
        cursor: pointer;
    }

    .ups-opt-btn.ups-active {
        border-color: #E45611;
        background: rgba(228, 86, 17, 0.1);
    }

    .ups-btn-primary {
        background: linear-gradient(135deg, #BC4004, #E45611);
        color: #fff;
        border: none;
        padding: 14px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    /* 5. PREVIEW SECTION */
    .ups-preview-row {
        display: flex;
        gap: 15px;
        padding: 20px;
        background: #1e242f;
    }

    .ups-img-box {
        flex: 1;
        text-align: center;
    }

    .ups-img-box span {
        font-size: 11px;
        color: var(--muted);
        display: block;
        margin-bottom: 8px;
    }

    .ups-img-placeholder {
        width: 100%;
        aspect-ratio: 1/1;
        background: #0d0d0d;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        border: 1px solid #1a1a1a;
        overflow: hidden;
    }

    .ups-img-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* 6. FULLSCREEN OVERLAY CSS */
    #zoom-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #0b0e14;
        z-index: 99999;
        display: none;
        flex-direction: column;
    }

    .full-zoom-container {
        display: flex;
        width: 100%;
        height: 100%;
    }

    .full-zoom-pane {
        flex: 1;
        height: 100%;
        position: relative;
        overflow: hidden;
        border: 1px solid #222;
        background-repeat: no-repeat;
        background-size: 300%;
        background-position: center;
    }

    #close-zoom {
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 100001;
        padding: 10px 20px;
        background: #ff4757;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .pane-tag {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: rgba(0, 0, 0, 0.7);
        padding: 5px 15px;
        border-radius: 4px;
        font-size: 12px;
    }

    /* SPINNER */
    .spinner {
        width: 40px;
        height: 40px;
        border: 4px solid #333;
        border-top: 4px solid #E45611;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    @media (max-width: 900px) {
        .ups-grid {
            grid-template-columns: 1fr;
        }
    }
