.checkout-overlay{
 position:fixed;inset:0;z-index:2900;
 display:none;background:rgba(15,23,42,.52);
 backdrop-filter:blur(3px)
}
.checkout-overlay.open{display:block}
.checkout-sheet{
 position:absolute;right:0;top:0;bottom:0;
 width:min(100%,480px);
 display:flex;flex-direction:column;
 background:#f8faf9
}
.checkout-head{
 padding:17px 18px;
 display:flex;align-items:center;
 justify-content:space-between;
 background:#fff;border-bottom:1px solid #e2e9e5
}
.checkout-head strong{
 font-size:18px;color:#173b2d
}
.checkout-close{
 width:38px;height:38px;border:0;
 border-radius:12px;background:#f1f5f2;
 font-size:23px;cursor:pointer
}
.checkout-body{
 flex:1;overflow:auto;padding:14px
}
.checkout-box{
 background:#fff;border:1px solid #e1e8e4;
 border-radius:15px;padding:14px;
 margin-bottom:11px
}
.checkout-box-title{
 display:block;margin-bottom:10px;
 color:#263d32;font-size:13px;font-weight:900
}
.checkout-option{
 display:flex;gap:9px;align-items:flex-start;
 margin-top:9px;font-size:13px;color:#35483f
}
.checkout-address{
 width:100%;box-sizing:border-box;
 min-height:82px;margin-top:8px;padding:11px;
 border:1px solid #d8e1dc;border-radius:11px;
 resize:vertical;font-family:inherit
}
.checkout-address:focus{
 outline:none;border-color:#0f6b45
}
.checkout-pickup{
 padding:11px;border-radius:11px;
 background:#f4f9f6;color:#53645c;
 font-size:12px;line-height:1.55
}
.checkout-summary-row{
 display:flex;justify-content:space-between;
 gap:12px;margin:7px 0;
 font-size:12px;color:#728079
}
.checkout-summary-row strong{
 color:#263d32;text-align:right
}
.checkout-total{
 padding-top:10px;margin-top:10px;
 border-top:1px solid #edf1ef
}
.checkout-total strong{
 color:#0f6b45;font-size:20px
}
.checkout-footer{
 background:#fff;border-top:1px solid #e1e8e4;
 padding:13px 15px max(13px,env(safe-area-inset-bottom))
}
.checkout-submit{
 width:100%;min-height:47px;border:0;
 border-radius:12px;background:#0f6b45;
 color:#fff;font-weight:900;cursor:pointer
}
.checkout-submit:disabled{
 opacity:.55;cursor:not-allowed
}
.checkout-message{
 margin-top:9px;min-height:16px;
 font-size:12px;line-height:1.5;color:#b42318
}
.checkout-tempo-info{
 display:block;margin-top:4px;
 color:#728079;font-size:11px;line-height:1.45
}
@media(max-width:600px){
 .checkout-sheet{
  top:auto;width:100%;height:min(90vh,780px);
  border-radius:22px 22px 0 0;
  overflow:hidden
 }
}
