.shipTopBar{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.sbpShipBackBtn{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.saveAddressBtn{
    width:100%;
    height:52px;
    border:none;
    border-radius:14px;
    background:#111;
    color:#fff;
    font-size:17px;
    font-weight:700;
    margin-top:20px;
}

.fieldWrap{
    position:relative;
    margin-bottom:14px;
}

.fieldWarning{
    position:absolute;
    right:14px;
    top:50%;
    transform:translateY(-50%);
    color:red;
    display:none;
    font-size:18px;
    pointer-events:none;
}
.shipInput{
    padding-right:45px !important;
}

.showWarning .fieldWarning{
    display:block;
}

.errorField{
    border:2px solid red !important;
}

/*shipping address css*/
.shipInput{
    width:100%;
    padding:14px;
    margin-bottom:10px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    background:#fff;
}

.backBtn{
    width:100%;
    padding:40px;
    margin-top:10px;
    background:#999;
    color:#fff;
    border:none;
    border-radius:10px;
    font-weight:700;
}
/*shipping css*/
/* =========================
   SHIPPING ADDRESS UI
========================= */

.addressCard{
  background:#fff;

  padding:22px;

  border-radius:8px; /* ✅ less radius */

  box-shadow:0 3px 10px rgba(0,0,0,0.06);

  margin:16px 0;

  border:1px solid #eee;
}

.addressCard h3{
  font-size:18px;

  margin-bottom:10px;

  color:#111;

  font-weight:700;

  line-height:1.5;
}

.addressCard p{
  font-size:15px;

  color:#666;

  margin:8px 0;

  line-height:1.6;
}
/* TEXTAREA */

#addressNote{

  min-height:120px;

  padding-top:16px;

  resize:none;
}

/* =========================
   PREMIUM SHIPPING CARD
========================= */

.addressCard{

    position:relative;

    background:linear-gradient(
        135deg,
        #ffffff,
        #f7f8ff
    );

    border-radius:18px;

    padding:24px;

    margin-top:18px;

    border:1px solid #ececec;

    box-shadow:
    0 8px 24px rgba(0,0,0,0.06);

    overflow:hidden;
}

/* badge */

.addressBadge{

    display:inline-block;

    background:#111;

    color:#fff;

    font-size:12px;

    padding:7px 14px;

    border-radius:30px;

    margin-bottom:18px;

    font-weight:600;

    letter-spacing:.3px;
}

/* top */

.addressTop{

    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    margin-bottom:22px;
}

.shipCustomerName{

    font-size:24px;

    font-weight:800;

    color:#111;

    margin:0;
}

.shipShopName{

    margin-top:6px;

    font-size:15px;

    color:#666;
}

/* grid */

.shipInfoGrid{

    display:flex;

    flex-direction:column;

    gap:16px;
}

.shipInfoItem{

    background:#fff;

    border-radius:14px;

    padding:14px 16px;

    border:1px solid #efefef;
}

.shipInfoItem span{

    display:block;

    font-size:13px;

    color:#888;

    margin-bottom:6px;

    font-weight:500;
}

.shipInfoItem strong{

    display:block;

    font-size:16px;

    color:#111;

    line-height:1.6;

    font-weight:700;

    word-break:break-word;
}

/* buttons */

.addressActions{

    display:flex;

    gap:14px;

    margin-top:24px;
}

.editBtn,
.delBtn{

    flex:1;

    height:54px;

    border:none;

    border-radius:14px;

    font-size:16px;

    font-weight:700;

    transition:.2s;
}

.editBtn{

    background:#006fff;

    color:#fff;
}

.delBtn{

    background:#ff3b30;

    color:#fff;
}

.editBtn:active,
.delBtn:active{

    transform:scale(.98);
}