.pcp-wrapper{
    max-width:850px;
    margin:auto;
    padding:25px;
    background:#fff;
    border-radius:16px;
    /*box-shadow:0 15px 40px rgba(0,0,0,0.08);*/
    font-family:system-ui;
    text-align:center;
}

.pcp-upload input{
    padding:10px;
    border:2px dashed #ccc;
    border-radius:10px;
    cursor:pointer;
}

.pcp-palette{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
    margin-top:25px;
}

.color-card{
    width:120px;
    height:120px;
    border-radius:12px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
    position:relative;
    cursor:pointer;
    transition:0.2s;
}

.color-card:hover{
    transform:translateY(-5px);
}

.color-hex{
    background:rgba(0,0,0,0.6);
    color:#fff;
    width:100%;
    text-align:center;
    padding:5px;
    font-size:13px;
    border-radius:0 0 12px 12px;
}

.remove-btn{
    position:absolute;
    top:6px;
    right:6px;
    background:#ff4d4d;
    color:#fff;
    border:none;
    border-radius:50%;
    width:22px;
    height:22px;
    cursor:pointer;
    font-size:12px;
}

.image-preview-box{
    margin-top:15px;
    padding:15px;
    border-radius:12px;
    background:#f9f9f9;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.image-preview-box img{
    max-width:100%;
    max-height:250px;
    border-radius:10px;
    object-fit:contain;
    display: inline!important;
}

.slider-colorcount input{-webkit-appearance: auto!important;}