/* =====================================================
ADDRESSES PAGE
===================================================== */

.address-empty-state{
background:#fff;
padding:60px 30px;
border-radius:24px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.address-empty-icon{
width:120px;
height:120px;
border-radius:50%;
background:#eef2ff;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 25px;
}

.address-empty-icon i{
font-size:48px;
color:#6366f1;
}

.address-empty-state h3{
font-size:26px;
font-weight:700;
margin-bottom:12px;
color:#111827;
}

.address-empty-state p{
max-width:500px;
margin:0 auto 25px;
font-size:14px;
line-height:1.8;
color:#6b7280;
}

.address-add-btn{
background:linear-gradient(
135deg,
#4f46e5,
#7c3aed
);
border:none;
padding:12px 24px;
border-radius:12px;
font-weight:600;
}

.address-add-btn:hover{
background:linear-gradient(
135deg,
#4338ca,
#6d28d9
);
}


/* =====================================================
ADDRESS CARD
===================================================== */

.address-card{
background:#fff;
border-radius:24px;
padding:25px;
box-shadow:0 10px 30px rgba(0,0,0,.06);
height:100%;
transition:.3s ease;
}

.address-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.address-card-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
}

.address-type{
font-size:15px;
font-weight:700;
color:#111827;
display:flex;
align-items:center;
gap:8px;
}

.default-badge{
padding:6px 12px;
border-radius:50px;
background:#dcfce7;
color:#166534;
font-size:12px;
font-weight:700;
}

.address-card-body h4{
font-size:18px;
font-weight:700;
margin-bottom:10px;
color:#111827;
}

.address-card-body p{
margin-bottom:6px;
font-size:14px;
line-height:1.7;
color:#4b5563;
}

.address-card-footer{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:20px;
}

.address-action-btn{
padding:8px 14px;
border-radius:10px;
text-decoration:none;
font-size:13px;
font-weight:600;
transition:.3s ease;
}

.edit-btn{
background:#e0e7ff;
color:#4338ca;
}

.delete-btn{
background:#fee2e2;
color:#991b1b;
}

.default-btn{
background:#fef3c7;
color:#92400e;
}

.address-action-btn:hover{
opacity:.9;
}


/* =====================================================
ADDRESS LIST
===================================================== */

.addresses-page-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;
}

.addresses-page-header h2{
font-size:28px;
font-weight:700;
margin-bottom:6px;
color:#111827;
}

.addresses-page-header p{
margin:0;
font-size:14px;
color:#6b7280;
}

@media(max-width:768px){

.addresses-page-header{
flex-direction:column;
align-items:flex-start;
gap:15px;
}

}


/* =====================================================
ADDRESS MODAL
===================================================== */

.modal-content{
border:none;
border-radius:24px;
overflow:hidden;
}

.modal-header{
padding:20px 25px;
border-bottom:1px solid #e5e7eb;
}

.modal-title{
font-size:20px;
font-weight:700;
color:#111827;
}

.modal-body{
padding:25px;
}

.modal-body .form-control,
.modal-body .form-select{
height:48px;
border-radius:12px;
border:1px solid #d1d5db;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus{
box-shadow:none;
border-color:#6366f1;
}

.modal-footer{
padding:20px 25px;
border-top:1px solid #e5e7eb;
}



.address-card-footer{
border-top:1px solid #f1f5f9;
padding-top:18px;
margin-top:20px;
display:flex;
flex-wrap:wrap;
gap:10px;
}


