*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter', sans-serif;
}



body{
    background:#fff;
    color:#222;
}


.header{

    height:65px;

    border-bottom:1px solid #ececec;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 40px;

    background:#fff;

}


.logo{

    height:50px;

}

.logo img{

    height:34px;

}


.official{

    display:flex;
    align-items:center;
    gap:8px;

    font-size:14px;
    color:#555;

}

.official img{

    width:18px;
    height:18px;
    display:block;

}

.logo img{

    height:42px;
    width:auto;
    display:block;

}


/* MAIN */

.container{

    width:1280px;
    max-width:95%;

    margin:30px auto;

    display:grid;

    grid-template-columns:minmax(0,1fr) 420px;

    gap:30px;

}



/* HERO */


.hero{
    height:260px;
    border-radius:10px;
    overflow:hidden;
    padding:0;
}

.hero-full{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}





/* PROMO */


.promo{
    margin-top:20px;
    height:74px;
    background:#fff1ed;

    display:grid;
    grid-template-columns:340px 1fr 220px;
    align-items:center;
}



.discount{
    width:100%;
    height:100%;
    display:flex;
    align-items:stretch;
}

.discount img{
    width:88%;
    height:auto;
}

.countdown{

    color:#ee4d2d;

}



.countdown span{

    background:#ee4d2d;

    color:white;

    padding:8px 18px;

    border-radius:8px;

    font-size:20px;

    font-weight:bold;

}



.buyers{

    color:#ee4d2d;

    margin-right:30px;

}




h2{

    font-size:22px;

    margin:25px 0;

}



/* VOUCHERS */


.voucher-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:16px;
}



.voucher{

    height:130px;

    border:1px solid #eee;

    border-radius:10px;

    padding:15px;

    cursor:pointer;

    position:relative;

}



.voucher:hover,
.voucher.active{

    border:2px solid #ee4d2d;

}



.tag{

    position:absolute;

    right:8px;

    top:10px;

    background:#ee4d2d;

    color:white;

    border-radius:12px;

    font-size:11px;

    padding:3px 8px;

}



.voucher h3{

    margin-top:15px;

    font-size:16px;

}



.voucher del{

    display:block;

    margin-top:18px;

    color:#999;

    font-size:12px;

}



.voucher strong{

    display:block;

    margin-top:5px;

    color:#ee4d2d;

    font-size:18px;

}




.info-box{

    margin-top:25px;

    border:1px solid #eee;

    padding:20px;

    border-radius:10px;

    font-size:14px;

    color:#555;

    display:flex;
    align-items:center;
    gap:10px;

}

.info-box img{

    width:20px;
    height:20px;
    flex-shrink:0;

}





/* ORDER */


.order{

    border:1px solid #eee;

    border-radius:12px;

    padding:28px;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

}



.order h2{

    margin:0 0 35px;

}



.selected{

    display:flex;

    justify-content:space-between;

}



.selected p{

    color:#555;

}



.selected h1{

    margin-top:10px;

    font-size:28px;

}



.selected span{

    background:#ee4d2d;

    color:white;

    padding:8px 15px;

    border-radius:6px;

    height:max-content;

}



.order-price{

    text-align:right;

}



.order-price del{

    color:#999;

}



.order-price strong{

    display:block;

    color:#ee4d2d;

    font-size:24px;

}




.quantity{

    display:flex;

    justify-content:space-between;

}



.quantity div{

    display:flex;

    border:1px solid #ddd;

}



.quantity button{

    width:42px;

    height:35px;

    border:0;

    background:white;

    font-size:22px;

}



.quantity b{

    width:45px;

    display:flex;

    justify-content:center;

    align-items:center;

}



.payment{

    margin-top:25px;

}



.payment strong{

    display:block;

    text-align:right;

    font-size:26px;

    color:#ee4d2d;

}



.buy{

    width:100%;
    height:48px;
    margin-top:25px;

    border:0;

    background:#ee4d2d;

    color:white;

    border-radius:7px;

    font-size:18px;

    font-weight:600;

    transition:.2s;

    cursor:pointer;

}

.buy:hover{

    background:#e04424;

}

.secure{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    margin:20px 0;

    color:#16a34a;

}


.secure-icon{

    width:20px;

    height:20px;

    flex-shrink:0;

}


.benefits{

    background:#fffafa;

    padding:18px;

    line-height:22px;

}


.benefit{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:22px;

}

.icon{

    width:22px;

    height:22px;

    flex-shrink:0;

    margin-top:2px;

    filter: invert(47%) sepia(88%) saturate(514%) hue-rotate(89deg) brightness(90%) contrast(88%);

}

.benefit b{

    font-size:16px;

}


footer{

    width:1280px;

    max-width:95%;

    margin:40px auto;

    text-align:right;

}

.email-box{

    margin:25px 0;

}

.email-box label{

    display:block;

    font-size:15px;

    font-weight:600;

    margin-bottom:8px;

}

.email-box input{

    width:100%;

    height:46px;

    border:1px solid #ddd;

    border-radius:8px;

    padding:0 14px;

    font-size:15px;

    transition:.2s;

}

.email-box input:focus{

    outline:none;

    border-color:#ee4d2d;

    box-shadow:0 0 0 3px rgba(238,77,45,.15);

}

.email-box small{

    display:block;

    margin-top:8px;

    color:#777;

    font-size:13px;

}

.email-box small{

    display:block;

    margin-top:8px;

    color:#777;

    font-size:13px;

}

/* DESKTOP SCALING */

@media (max-width:1350px){

    .container{

        grid-template-columns:minmax(0,1fr) 360px;

        gap:20px;

    }

    .promo{

        grid-template-columns:280px 1fr 170px;

    }

    .discount img{

        width:90%;

    }

}

@media (max-width:1180px){

    .container{

        grid-template-columns:minmax(0,1fr) 320px;

        gap:15px;

    }

    .promo{

        grid-template-columns:240px 1fr 150px;

    }

    .countdown span{

        font-size:18px;
        padding:7px 16px;

    }

    .buyers{

        font-size:14px;

    }

}


/* MOBILE */


@media(max-width:768px){


body{

    overflow-x:hidden;

}



.header{

    height:50px;

    padding:0 15px;

}



.logo{

    font-size:24px;

}



.container{

    display:block;

    width:100%;

    max-width:none;

    padding:12px;

    margin:0;

}



/* hero */


.hero{

    height:auto;

    padding:0;

    overflow:hidden;

}




.hero-full{
    width:100%;
    height:auto;
    object-fit:contain;
}




/* promo */


.promo{

    height:auto;
    padding:4px;
    display:flex;
    flex-direction:column;
    gap:12px;
    background:#fff5f2;
    border-radius:10px;

}



.discount{
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.discount img{
    width:100%;
    height:auto;
    display:block;
}

.countdown{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;

    font-size:15px;

}

.countdown span{

    font-size:18px;
    padding:8px 16px;

}

.buyers{

    text-align:center;
    margin:0;

    font-size:15px;

}




/* cards */


.voucher-grid{

    grid-template-columns:repeat(2,1fr);

    gap:12px;

}



.voucher{

    height:125px;

}




/* ORDER */


.order{

    margin-top:25px;

    padding:20px;

}



.order h2{

    font-size:20px;

}



.payment strong{

    text-align:left;

}



.buy{

    position:fixed;

    bottom:65px;

    left:15px;

    width:calc(100% - 30px);

    z-index:999;

    height:50px;

}



.benefits{

    margin-bottom:90px;

}



footer{

    display:none;

}


}