.customer-popup{

display:none;

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.65);

z-index:999999;

justify-content:center;

align-items:center;

backdrop-filter:blur(6px);

}

.customer-popup.show{

display:flex;

}

.customer-popup-box{

width:420px;

max-width:95%;

background:#fff;

border-radius:18px;

padding:30px;

position:relative;

animation:popup .3s ease;

}

@keyframes popup{

from{

transform:translateY(30px);

opacity:0;

}

to{

transform:translateY(0);

opacity:1;

}

}

.popup-close{

position:absolute;

top:15px;

right:15px;

border:none;

background:none;

font-size:28px;

cursor:pointer;

}

.popup-logo{

text-align:center;

margin-bottom:20px;

}

.popup-logo img{

width:80px;

}

.popup-text{

text-align:center;

margin-bottom:25px;

color:#666;

}

.customer-popup label{

display:block;

font-weight:600;

margin-bottom:8px;

}

.customer-popup input{

width:100%;

padding:12px;

border:1px solid #ddd;

border-radius:8px;

margin-bottom:15px;

}

.popup-btn{

width:100%;

padding:12px;

background:#2A1800;

color:#fff;

border:none;

border-radius:8px;

cursor:pointer;

font-weight:bold;

}

.popup-btn:hover{

background:#C8A76A;

color:#2A1800;

}