/* EM CARD – zdieľaný košík (ikona v navigácii + odznak s počtom) */
.nav-cart-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;height:40px;
  border-radius:12px;
  color:#dfe5e2;
  margin-right:2px;
  flex:0 0 auto;
}
.nav-cart-btn:hover{background:rgba(46,214,210,.14);color:#fff}
.nav-cart-btn svg{width:21px;height:21px;display:block}
.cart-badge{
  position:absolute;
  top:1px;right:1px;
  min-width:16px;height:16px;
  padding:0 3px;
  border-radius:999px;
  background:#f37016;
  color:#fff;
  font-size:10px;
  font-weight:900;
  line-height:16px;
  text-align:center;
}
.mobile-panel a.mobile-cart .cart-badge{
  position:static;
  display:inline-flex;
  min-width:18px;height:18px;
  line-height:18px;
  margin-left:8px;
}
@media(max-width:760px){
  .nav-cart-btn{margin-right:4px}
}

/* stránka Košík */
.cart-page{padding:52px 0 70px;background:#f6f9fb;min-height:50vh}
.cart-page .back-link-v102{color:#087f8b}
.cart-head{max-width:720px;margin-bottom:30px}
.cart-head h1{font-size:clamp(30px,4vw,44px);line-height:1.08;letter-spacing:-1.4px;margin:10px 0 8px;color:#182028}
.cart-head p{font-size:16px;line-height:1.6;color:#5c7080;margin:0}
.cart-layout{display:grid;grid-template-columns:1.6fr 1fr;gap:24px;align-items:start}
.cart-list{display:grid;gap:16px}
.cart-bundle{
  background:#fff;border:1px solid #dbe5ec;border-radius:24px;padding:24px 26px;box-shadow:0 12px 30px rgba(5,27,45,.06);
}
.cart-bundle-head{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;margin-bottom:14px}
.cart-bundle-head h3{margin:0 0 4px;font-size:19px;letter-spacing:-.4px;color:#182028}
.cart-bundle-head span{display:block;font-size:13px;color:#087f8b;font-weight:850}
.cart-remove{
  border:1px solid #e3e9ee;background:#fff;color:#8494a3;border-radius:10px;padding:7px 11px;font-weight:850;font-size:13px;cursor:pointer;flex:0 0 auto;
}
.cart-remove:hover{color:#d64459;border-color:#f6c9cf;background:#fdf1f2}
.cart-bundle-items{list-style:none;margin:0;padding:0;display:grid;gap:8px}
.cart-bundle-items li{display:flex;justify-content:space-between;gap:10px;font-size:14px;color:#33465a;padding:9px 12px;background:#f6f9fb;border-radius:12px}
.cart-bundle-items li>span{display:flex;flex-direction:column;gap:2px}
.cart-bundle-items li b{color:#182028;font-weight:800}
.cart-bundle-items li small{font-size:11.5px;color:#8494a3;font-weight:700}
.cart-bundle-items li em{font-style:normal;color:#5c7080;font-weight:800;white-space:nowrap}
.cart-empty{
  background:#fff;border:1px dashed #cfdbe3;border-radius:24px;padding:48px 30px;text-align:center;color:#5c7080;
}
.cart-empty svg{width:44px;height:44px;color:#9fb3c1;margin-bottom:14px}
.cart-empty h3{margin:0 0 8px;color:#182028;font-size:20px}
.cart-empty p{margin:0 0 20px}
.cart-side{background:#fff;border:1px solid #dbe5ec;border-radius:24px;padding:24px;box-shadow:0 12px 30px rgba(5,27,45,.06);position:sticky;top:96px}
.cart-side h3{margin:0 0 14px;font-size:16px;letter-spacing:.4px;text-transform:uppercase;color:#182028}
.cart-side-row{display:flex;justify-content:space-between;padding:10px 0;border-top:1px solid #eef2f5;font-size:14px;color:#33465a}
.cart-side-row:first-of-type{border-top:0}
.cart-side-row b{color:#182028}
.cart-side .btn{width:100%;margin-top:16px}
.cart-side-note{font-size:12.5px;color:#8494a3;margin-top:10px;line-height:1.5}
.cart-clear{display:block;text-align:center;margin-top:12px;font-size:13px;font-weight:850;color:#8494a3;cursor:pointer;background:none;border:0;width:100%}
.cart-clear:hover{color:#d64459}
@media(max-width:860px){
  .cart-layout{grid-template-columns:1fr}
  .cart-side{position:static}
}
