/* Cart V3 minimal, RTL friendly */
.cartv3-notification{direction:rtl}
.cartv3-dropdown{position:absolute; min-width:300px; max-width:360px; background:#fff; border:1px solid #eee; border-radius:8px; box-shadow:0 10px 25px rgba(0,0,0,0.08); padding:10px; opacity:0; transform:translateY(-8px); transition:opacity .18s ease, transform .18s ease; z-index:10000; direction:rtl}
.cartv3-dropdown.show{opacity:1; transform:translateY(0)}
.cartv3-empty{padding:16px; text-align:center; color:#777}
.cartv3-items{max-height:340px; overflow:auto}
.cartv3-item{display:flex; align-items:center; padding:8px; border-bottom:1px solid #f3f3f3}
.cartv3-item:last-child{border-bottom:0}
.cartv3-img{width:60px; height:60px; flex:0 0 60px; overflow:hidden; border-radius:6px; border:1px solid #f1f1f1; margin-left:10px}
.cartv3-img img{width:100%; height:100%; object-fit:cover}
.cartv3-info{flex:1 1 auto}
.cartv3-name{font-weight:600; margin-bottom:4px; color:#333}
.cartv3-specs{font-size:12px; color:#666; margin-bottom:6px}
.cartv3-meta{display:flex; gap:8px; align-items:center; color:#444}
.cartv3-remove{background:transparent; border:0; color:#999; padding:6px; cursor:pointer}
.cartv3-remove:hover{color:#e74c3c}
.cartv3-footer{display:flex; justify-content:space-between; align-items:center; padding-top:8px}
.cartv3-total{display:flex; gap:8px; color:#333}
.cartv3-checkout{background:#007bff; color:#fff; padding:8px 12px; border-radius:6px; text-decoration:none}
.cartv3-checkout:hover{color:#fff; background:#0069d9}

/* Header and close button */
.cartv3-header{display:flex; align-items:center; justify-content:space-between; padding:6px 4px 10px; border-bottom:1px solid #f3f3f3; margin-bottom:8px}
.cartv3-title{font-weight:700; color:#333}
.cartv3-close{background:transparent; border:0; color:#999; font-size:18px; line-height:1; padding:6px; cursor:pointer}
.cartv3-close:hover{color:#e74c3c}

/* Mobile-friendly overlay for small screens */
@media (max-width: 576px){
  .cartv3-dropdown{position:fixed !important; top:56px !important; right:8px !important; left:8px !important; bottom:12px !important; width:auto !important; max-width:none !important; min-width:0 !important; padding:12px; display:flex; flex-direction:column; border-radius:12px}
  .cartv3-items{flex:1 1 auto; overflow:auto; max-height:none; -webkit-overflow-scrolling:touch; overscroll-behavior:contain}
  .cartv3-header{position:sticky; top:0; background:#fff; z-index:1}
  .cartv3-footer{padding-top:10px; border-top:1px solid #f0f0f0; display:flex; flex-wrap:wrap; gap:8px}
  .cartv3-total{width:100%; justify-content:space-between; font-weight:600}
  .cartv3-checkout{width:100%; text-align:center; padding:12px 14px; font-size:1rem}
}
