body{
    margin:0;
    padding:0;
}

.weds-wrap{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f5f5f5;
    padding:20px;
    box-sizing:border-box;
}

.weds-box{
    background:#ffffff;
    padding:50px 30px;
    border-radius:20px;
    text-align:center;
    max-width:500px;
    width:100%;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.weds-label{
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:15px;
}

.weds-box h1{
    font-size:42px;
    margin:0;
    line-height:1.3;
}

.weds-date{
    margin-top:20px;
    font-size:18px;
}


/*
========================================
BASIC
========================================
*/

.weds-basic{
    background:#f5f5f5;
}

/*
========================================
LUXURY
========================================
*/

.weds-luxury{
    background:#111111;
}

.weds-luxury .weds-box{
    background:#1d1d1d;
    color:#ffffff;
    border:1px solid #c8a96b;
}

/*
========================================
FLORAL
========================================
*/

.weds-floral{
    background:#ffeef5;
}

.weds-floral .weds-box{
    background:#ffffff;
    border:2px solid #ffb6c1;
}


.weds-section{
    margin-top:30px;
    padding:20px;
    border-radius:15px;
    background:#fafafa;
}


/*
========================================
TEMPLATE CARD
========================================
*/

.weds-template-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:20px;
}

.weds-template-card{
    display:block;
    border:2px solid #e5e5e5;
    border-radius:15px;
    overflow:hidden;
    cursor:pointer;
    background:#fff;
    transition:0.3s;
}

.weds-template-card:hover{
    transform:translateY(-3px);
}

.weds-template-card input{
    display:none;
}

.weds-template-card img{
    width:100%;
    display:block;
}

.weds-template-card span{
    display:block;
    padding:15px;
    text-align:center;
    font-weight:bold;
}

.weds-template-card:has(input:checked){
    border:3px solid #000;
}



/*
========================================
SORTABLE
========================================
*/

#weds-sortable{
    margin-top:20px;
}

.weds-sort-item{
    padding:15px;
    background:#ffffff;
    border:1px solid #ddd;
    border-radius:10px;
    margin-bottom:10px;
    cursor:move;
    font-weight:bold;
}