*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#f3f4f6;
    font-family:Arial,sans-serif;
}

/* MAIN */
.itp-wrap{
    max-width:1400px;
    margin:40px auto;
    padding:20px;
}

.itp-title{
    font-size:70px;
    text-align:center;
    margin-bottom:20px;
    color:#111;
}

.itp-desc{
    text-align:center;
    max-width:900px;
    margin:0 auto 40px;
    font-size:24px;
    line-height:1.6;
    color:#444;
}

/* LAYOUT */
.itp-main{
    display:flex;
    gap:30px;
    align-items:flex-start;
}

/* LEFT SIDE */
.itp-left{
    flex:1;
}

/* RIGHT SIDE */
.itp-right{
    width:340px;
    background:#fff;
    border-radius:25px;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.itp-right h3{
    font-size:34px;
    margin-bottom:20px;
    color:#111;
}

/* UPLOAD */
.itp-upload-box{
    width:100%;
    min-height:420px;
    background:#ffd400;
    border-radius:30px;
    border:3px dashed #fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    position:relative;
    overflow:hidden;
}

.itp-upload-box input{
    display:none;
}

.itp-upload-inner{
    text-align:center;
    padding:40px;
}

.itp-cloud{
    font-size:120px;
    color:#fff;
    margin-bottom:20px;
}

.itp-upload-inner h2{
    font-size:62px;
    color:#111;
    line-height:1.2;
    margin-bottom:20px;
}

.itp-upload-inner p{
    font-size:28px;
    color:#555;
    margin-bottom:30px;
}

.itp-choose-btn{
    background:#fff;
    border:none;
    padding:18px 40px;
    border-radius:14px;
    font-size:24px;
    font-weight:700;
    cursor:pointer;
}

.itp-choose-btn:hover{
    background:#111;
    color:#fff;
}

/* PREVIEW */
#itp-preview{
    margin-top:35px;
    display:flex;
    flex-wrap:wrap;
    gap:25px;
}

.itp-item{
    width:240px;
    background:#fff;
    border-radius:20px;
    padding:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    cursor:move;
}

.itp-item img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:15px;
}

.itp-item span{
    display:block;
    margin-top:12px;
    text-align:center;
    font-size:18px;
    word-break:break-word;
}

/* OPTIONS */
.itp-option-row{
    display:flex;
    gap:15px;
    margin-bottom:30px;
}

.itp-option,
.itp-margin{
    flex:1;
    height:110px;
    border:2px solid #ddd;
    background:#fff;
    border-radius:20px;
    font-size:24px;
    cursor:pointer;
    transition:0.3s;
}

.itp-option.active,
.itp-margin.active{
    border-color:#2563eb;
    background:#eef4ff;
}

/* SELECT */
#itp-size{
    width:100%;
    height:60px;
    border-radius:14px;
    border:2px solid #ddd;
    padding:0 15px;
    font-size:20px;
    margin-bottom:30px;
}

/* CHECKBOX */
.itp-check{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:24px;
    margin-bottom:35px;
}

.itp-check input{
    width:22px;
    height:22px;
}

/* BUTTONS */
.itp-bottom{
    margin-top:40px;
    display:flex;
    gap:20px;
}

#itp-start{
    flex:1;
    height:80px;
    border:none;
    border-radius:18px;
    background:#2563eb;
    color:#fff;
    font-size:34px;
    font-weight:700;
    cursor:pointer;
}

#itp-start:hover{
    background:#1d4ed8;
}

#itp-download{
    flex:1;
    height:80px;
    border:none;
    border-radius:18px;
    background:#16a34a;
    color:#fff;
    font-size:30px;
    font-weight:700;
    cursor:pointer;
}

#itp-download:hover{
    background:#15803d;
}

/* MOBILE */
@media(max-width:1100px){

    .itp-main{
        flex-direction:column;
    }

    .itp-right{
        width:100%;
    }

    .itp-upload-inner h2{
        font-size:40px;
    }

    .itp-title{
        font-size:50px;
    }
}

@media(max-width:768px){

    .itp-bottom{
        flex-direction:column;
    }

    .itp-item{
        width:100%;
    }

    .itp-upload-inner h2{
        font-size:34px;
    }

    .itp-cloud{
        font-size:80px;
    }

    .itp-right h3{
        font-size:28px;
    }
    .itp-item{
    position:relative;
}

.itp-delete{
    position:absolute;
    top:10px;
    right:10px;
    width:35px;
    height:35px;
    border:none;
    border-radius:50%;
    background:red;
    color:#fff;
    font-size:24px;
    cursor:pointer;
    z-index:10;
}

.itp-delete:hover{
    background:#111;
}
}