/* YENDRE cart drawer — shared styles for shop / home / PDP */
.yendre-cart-overlay{position:fixed;inset:0;background:rgba(34,34,34,.32);opacity:0;visibility:hidden;transition:opacity .22s ease,visibility .22s ease;z-index:990}
.yendre-cart-drawer{position:fixed;top:0;right:0;width:440px;max-width:100%;height:100vh;background:#FBFAF7;color:#222;box-shadow:-8px 0 24px rgba(0,0,0,.08);border-left:1px solid #E5E0D6;transform:translateX(105%);transition:transform .28s ease;z-index:991;display:flex;flex-direction:column;overflow:hidden}
body.yendre-cart-open{overflow:hidden;max-width:100vw}
body.yendre-cart-open .yendre-cart-overlay{opacity:1;visibility:visible}
body.yendre-cart-open .yendre-cart-drawer{transform:translateX(0)}
.yendre-cart-drawer-header{height:72px;min-height:72px;padding:0 24px;border-bottom:1px solid #E5E0D6;display:flex;align-items:center;justify-content:space-between;background:#FBFAF7}
.yendre-cart-drawer-title{font-size:18px;font-weight:600;letter-spacing:.01em;color:#222}
.yendre-cart-close{width:36px;height:36px;border:0;background:transparent;color:#222;cursor:pointer;font-size:26px;line-height:1;display:inline-flex;align-items:center;justify-content:center;border-radius:999px}
.yendre-cart-close:hover{background:#F0ECE4}
.yendre-cart-drawer-body{flex:1;overflow-y:auto;padding:24px;background:#FBFAF7}
.yendre-cart-empty{min-height:calc(100vh - 320px);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;color:#666;padding:28px 8px}
.yendre-cart-empty strong{display:block;color:#222;font-size:20px;font-weight:600;margin-bottom:10px}
.yendre-cart-empty p{font-size:14px;line-height:1.6;max-width:300px;margin:0 auto 24px}
.yendre-cart-empty-btn{height:48px;padding:0 28px;border-radius:6px;background:#2F3824;color:#fff;text-decoration:none;display:inline-flex;align-items:center;justify-content:center;font-weight:600;font-size:14px}
.yendre-cart-items{display:flex;flex-direction:column;gap:20px}
.yendre-cart-item{min-height:112px;display:grid;grid-template-columns:88px 1fr;gap:16px;padding:0 0 20px;border-bottom:1px solid #E5E0D6;background:transparent}
.yendre-cart-item-image{width:88px;height:88px;border-radius:8px;overflow:hidden;background:#EFE9DD;align-self:start}
.yendre-cart-item-image img{width:100%;height:100%;object-fit:cover;display:block}
.yendre-cart-item-main{min-width:0;display:flex;flex-direction:column}
.yendre-cart-item-top{display:flex;justify-content:space-between;gap:12px}
.yendre-cart-item-name{font-size:15px;font-weight:600;line-height:1.35;color:#222;max-width:190px}
.yendre-cart-item-variant{margin-top:4px;font-size:13px;color:#666;line-height:1.4}
.yendre-cart-item-price{font-size:14px;font-weight:600;color:#222;white-space:nowrap}
.yendre-cart-item-bottom{margin-top:auto;display:flex;align-items:center;justify-content:space-between;gap:12px}
.yendre-cart-qty{width:96px;height:32px;border:1px solid #D8D2C6;border-radius:16px;background:#fff;display:flex;align-items:center;justify-content:space-between;overflow:hidden}
.yendre-cart-qty button{width:30px;height:30px;border:0;background:transparent;color:#222;cursor:pointer;font-size:16px;line-height:1}
.yendre-cart-qty span{min-width:28px;text-align:center;font-size:13px;color:#222}
.yendre-cart-remove{border:0;background:transparent;color:#666;text-decoration:underline;cursor:pointer;font-size:12px;padding:0;line-height:1.4}
.yendre-cart-drawer-footer{position:sticky;bottom:0;background:#FBFAF7;padding:24px;border-top:1px solid #E5E0D6;min-height:230px}
.yendre-cart-free-shipping{font-size:13px;color:#4F5B3A;margin:0 0 14px;line-height:1.5}
.yendre-cart-progress{height:6px;border-radius:999px;background:#E5E0D6;overflow:hidden;margin:-4px 0 18px}
.yendre-cart-progress span{display:block;height:100%;width:0;background:#4F5B3A;border-radius:999px;transition:width .25s ease}
.yendre-cart-subtotal{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px;color:#222;font-size:16px}
.yendre-cart-subtotal strong{font-size:18px;font-weight:650}
.yendre-cart-actions{display:grid;gap:10px}
.yendre-cart-btn{width:100%;border-radius:6px;display:flex;align-items:center;justify-content:center;text-decoration:none;font-size:14px;font-weight:650;cursor:pointer;letter-spacing:.02em}
.yendre-cart-btn-primary{height:52px;background:#2F3824;color:#fff;border:1px solid #2F3824}
.yendre-cart-btn-secondary{height:48px;background:#fff;color:#222;border:1px solid #D8D2C6}
.yendre-cart-btn-text{height:28px;background:transparent;color:#666;border:0;font-size:13px;font-weight:500;text-align:center}
.yendre-cart-toast{position:fixed;right:470px;top:92px;background:#2F3824;color:#fff;border-radius:6px;padding:10px 14px;font-size:13px;z-index:1000;opacity:0;transform:translateY(-6px);transition:opacity .22s ease,transform .22s ease;pointer-events:none}
.yendre-cart-toast.show{opacity:1;transform:translateY(0)}
.cart-icon-wrap .cart-count{display:inline-block}
@media(max-width:600px){
  .yendre-cart-drawer{width:100%;height:100vh}
  .yendre-cart-drawer-header{height:64px;min-height:64px;padding:0 20px}
  .yendre-cart-drawer-body{padding:18px 20px}
  .yendre-cart-drawer-footer{padding:16px 20px 20px;min-height:230px}
  .yendre-cart-item{grid-template-columns:84px 1fr;gap:14px}
  .yendre-cart-item-image{width:84px;height:84px}
  .yendre-cart-item-name{max-width:160px}
  .yendre-cart-btn{height:44px}
  .yendre-cart-toast{right:20px;top:84px}
}
