/* GamePC modern quick-purchase cart layer. */
body.in-kosik{
  --gpcm-ink:#24163b;
  --gpcm-muted:#716a7d;
  --gpcm-purple:#4d12a8;
  --gpcm-purple-2:#7040c7;
  --gpcm-lavender:#f2edfb;
  --gpcm-mint:#edf8ee;
  --gpcm-blue:#eef5fb;
  --gpcm-line:#ded7ea;
  --gpcm-surface:#fff;
  background:#f8f6fb!important;
}

body.in-kosik #cart-wrapper{
  max-width:1180px!important;
}

body.in-kosik #cart-wrapper .cart-header{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:8px!important;
  margin:0 0 18px!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
}

body.in-kosik #cart-wrapper .cart-header>li{
  display:flex!important;
  width:auto!important;
  min-width:0!important;
  min-height:64px!important;
  align-items:center!important;
  justify-content:center!important;
  margin:0!important;
  padding:12px 16px!important;
  border:1px solid var(--gpcm-line)!important;
  border-radius:9px!important;
  background:#f3f0f8!important;
}

body.in-kosik #cart-wrapper .cart-header>li.active{
  border-color:#bda7e6!important;
  background:#fff!important;
  box-shadow:inset 0 3px 0 var(--gpcm-purple)!important;
}

body.in-kosik #cart-wrapper .cart-header li strong,
body.in-kosik #cart-wrapper .cart-header li a{
  display:flex!important;
  align-items:center!important;
  gap:10px!important;
  color:var(--gpcm-ink)!important;
  font-size:15px!important;
  font-weight:900!important;
  line-height:1.2!important;
}

body.in-kosik #cart-wrapper .cart-header li strong::before,
body.in-kosik #cart-wrapper .cart-header li a::before{
  display:grid!important;
  width:29px!important;
  height:29px!important;
  flex:0 0 29px!important;
  place-items:center!important;
  border-radius:6px!important;
}

body.in-kosik #cart-wrapper .cart-table{
  margin:0!important;
  overflow:hidden!important;
  border:1px solid var(--gpcm-line)!important;
  border-radius:10px!important;
  background:var(--gpcm-surface)!important;
  box-shadow:0 10px 30px rgba(49,26,86,.055)!important;
}

body.in-kosik #cart-wrapper .cart-table tbody tr:not(.related){
  background:#fff!important;
}

body.in-kosik #cart-wrapper .cart-table td{
  border-color:#ebe6f2!important;
}

body.in-kosik #cart-wrapper .cart-p-image img{
  padding:5px!important;
  border:1px solid #ebe6f2!important;
  border-radius:7px!important;
  background:#f6f3fa!important;
}

body.in-kosik #cart-wrapper .cart-table .p-name a{
  color:var(--gpcm-ink)!important;
  font-size:15px!important;
  font-weight:900!important;
  line-height:1.35!important;
}

body.in-kosik #cart-wrapper .p-availability strong{
  display:inline-flex!important;
  align-items:center!important;
  padding:5px 8px!important;
  border:1px solid #cde8cf!important;
  border-radius:6px!important;
  color:#20802d!important;
  background:var(--gpcm-mint)!important;
  font-size:11px!important;
  font-weight:900!important;
  text-transform:uppercase!important;
}

body.in-kosik #cart-wrapper .p-quantity .quantity{
  display:grid!important;
  grid-template-columns:38px 58px 38px!important;
  position:relative!important;
  width:134px!important;
  min-width:134px!important;
  max-width:134px!important;
  overflow:hidden!important;
  border:1px solid #d9cfea!important;
  border-radius:7px!important;
  background:#fff!important;
}

body.in-kosik #cart-wrapper .p-quantity .increase-tooltip,
body.in-kosik #cart-wrapper .p-quantity .decrease-tooltip{
  display:none!important;
}

body.in-kosik #cart-wrapper .p-quantity .quantity>.decrease{
  grid-column:1!important;
  grid-row:1!important;
}

body.in-kosik #cart-wrapper .p-quantity .quantity>input{
  grid-column:2!important;
  grid-row:1!important;
}

body.in-kosik #cart-wrapper .p-quantity .quantity>.increase{
  grid-column:3!important;
  grid-row:1!important;
}

body.in-kosik #cart-wrapper .p-quantity .quantity input,
body.in-kosik #cart-wrapper .p-quantity .quantity button{
  display:block!important;
  position:static!important;
  inset:auto!important;
  width:100%!important;
  height:42px!important;
  min-width:0!important;
  margin:0!important;
  border:0!important;
  border-radius:0!important;
  background:#fff!important;
  box-shadow:none!important;
  opacity:1!important;
  visibility:visible!important;
  transform:none!important;
}

body.in-kosik #cart-wrapper .p-quantity .quantity button{
  color:var(--gpcm-purple)!important;
  background:var(--gpcm-lavender)!important;
  font-size:20px!important;
  font-weight:900!important;
}

body.in-kosik #cart-wrapper .p-quantity .quantity button:hover{
  color:#fff!important;
  background:var(--gpcm-purple)!important;
}

body.in-kosik #cart-wrapper .p-quantity .quantity input{
  color:var(--gpcm-ink)!important;
  font-family:Nunito,Arial,sans-serif!important;
  font-size:16px!important;
  font-weight:900!important;
  line-height:42px!important;
  text-align:center!important;
}

body.in-kosik #cart-wrapper .p-quantity .quantity button{
  color:transparent!important;
  font-size:0!important;
}

body.in-kosik #cart-wrapper .p-quantity .quantity button::before{
  display:block!important;
  position:static!important;
  inset:auto!important;
  color:var(--gpcm-purple)!important;
  font-family:Arial,sans-serif!important;
  font-size:20px!important;
  font-weight:900!important;
  line-height:42px!important;
  transform:none!important;
}

body.in-kosik #cart-wrapper .p-quantity .quantity>.decrease::before{content:"−"!important}
body.in-kosik #cart-wrapper .p-quantity .quantity>.increase::before{content:"+"!important}
body.in-kosik #cart-wrapper .p-quantity .quantity button:hover::before{color:#fff!important}

body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity button::before{
  display:none!important;
  content:none!important;
}

body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity button::after{
  display:block!important;
  position:static!important;
  inset:auto!important;
  color:var(--gpcm-purple)!important;
  font-family:Arial,sans-serif!important;
  font-size:20px!important;
  font-weight:900!important;
  line-height:42px!important;
  opacity:1!important;
  visibility:visible!important;
  transform:none!important;
}

body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity button.decrease::after{content:"−"!important}
body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity button.increase::after{content:"+"!important}
body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity button:hover::after{color:#fff!important}

body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity>input{
  display:block!important;
  position:relative!important;
  z-index:2!important;
  padding:0!important;
  color:var(--gpcm-ink)!important;
  -webkit-text-fill-color:var(--gpcm-ink)!important;
  font-family:Nunito,Arial,sans-serif!important;
  font-size:16px!important;
  line-height:42px!important;
  text-indent:0!important;
  opacity:1!important;
  appearance:textfield!important;
}

body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity:not(.gpc-qty-ready)>input{
  padding:0 20px 0 9px!important;
  text-align:left!important;
}

body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity:not(.gpc-qty-ready)::after{
  display:flex!important;
  position:absolute!important;
  top:0!important;
  left:68px!important;
  z-index:3!important;
  height:42px!important;
  align-items:center!important;
  color:#776d84!important;
  content:"ks"!important;
  font-size:11px!important;
  font-weight:800!important;
  line-height:1!important;
  pointer-events:none!important;
}

body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity.gpc-qty-ready>input{
  display:block!important;
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  opacity:0!important;
  pointer-events:none!important;
}

body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity.gpc-qty-ready{
  position:relative!important;
}

body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity.gpc-qty-ready>.gpc-qty-value{
  display:flex!important;
  position:absolute!important;
  top:0!important;
  left:38px!important;
  z-index:2!important;
  align-items:center!important;
  justify-content:center!important;
  width:58px!important;
  min-width:58px!important;
  height:42px!important;
  color:var(--gpcm-ink)!important;
  background:#fff!important;
  font-size:16px!important;
  font-weight:900!important;
  line-height:1!important;
}

body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity.gpc-qty-ready>button{
  color:var(--gpcm-purple)!important;
  font-family:Arial,sans-serif!important;
  font-size:20px!important;
  line-height:42px!important;
}

body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity.gpc-qty-ready>button::before,
body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity.gpc-qty-ready>button::after{
  display:none!important;
  content:none!important;
}

body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity.gpc-qty-ready>button:hover{color:#fff!important}

body.in-kosik #cart-wrapper .p-price strong,
body.in-kosik #cart-wrapper .p-total strong{
  color:var(--gpcm-ink)!important;
  font-weight:900!important;
  white-space:nowrap!important;
}

body.in-kosik #cart-wrapper .p-total button{
  color:#a29aaa!important;
  transition:color .12s ease,background .12s ease!important;
}

body.in-kosik #cart-wrapper .p-total button:hover{
  color:#d62d49!important;
  background:#fff0f3!important;
}

body.in-kosik #cart-wrapper .cart-inner>.cart-row>.col-md-8>.cart-content{
  gap:18px!important;
}

body.in-kosik #cart-wrapper .cart-summary .extras-wrapper{
  grid-template-columns:minmax(0,1.45fr) minmax(300px,.75fr)!important;
  grid-template-rows:auto auto!important;
  gap:10px 14px!important;
}

body.in-kosik #cart-wrapper .cart-summary .extras-col{
  height:auto!important;
  min-height:0!important;
  padding:18px!important;
  border:1px solid var(--gpcm-line)!important;
  border-radius:10px!important;
  box-shadow:none!important;
}

body.in-kosik #cart-wrapper .cart-summary .js-extras-col-summary{
  grid-column:1!important;
  grid-row:1/3!important;
  padding:22px 24px!important;
  border-left:5px solid var(--gpcm-purple)!important;
  background:linear-gradient(135deg,#fff 0%,#f5f0fc 100%)!important;
}

body.in-kosik #cart-wrapper .cart-summary .summary-wrapper{
  display:block!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
}

body.in-kosik #cart-wrapper .cart-summary .price-wrapper{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  align-items:center!important;
  gap:7px 18px!important;
  margin:0!important;
}

body.in-kosik #cart-wrapper .cart-summary .price-label{
  margin:0!important;
  color:var(--gpcm-muted)!important;
  font-size:13px!important;
  font-weight:750!important;
  line-height:1.25!important;
}

body.in-kosik #cart-wrapper .cart-summary .price-label.price-primary{
  color:var(--gpcm-ink)!important;
  font-size:16px!important;
  font-weight:900!important;
}

body.in-kosik #cart-wrapper .cart-summary .price{
  margin:0!important;
  text-align:right!important;
  white-space:nowrap!important;
}

body.in-kosik #cart-wrapper .cart-summary .price.price-primary{
  color:var(--gpcm-purple)!important;
  font-size:34px!important;
  font-weight:950!important;
  letter-spacing:-.035em!important;
  line-height:1!important;
}

body.in-kosik #cart-wrapper .cart-summary .price.price-secondary{
  color:#9b86c7!important;
  font-size:18px!important;
  font-weight:850!important;
}

body.in-kosik #cart-wrapper .cart-summary .next-step{
  min-width:0!important;
  margin-top:18px!important;
}

body.in-kosik #cart-wrapper .next-step-forward{
  display:flex!important;
  width:100%!important;
  min-height:58px!important;
  align-items:center!important;
  justify-content:center!important;
  border:0!important;
  border-radius:8px!important;
  color:#fff!important;
  background:linear-gradient(100deg,var(--gpcm-purple-2),#3b0b7d)!important;
  box-shadow:0 10px 22px rgba(77,18,168,.18)!important;
  font-size:15px!important;
  font-weight:950!important;
  text-transform:none!important;
  transition:transform .12s ease,filter .12s ease,box-shadow .12s ease!important;
}

body.in-kosik #cart-wrapper .next-step-forward:hover{
  transform:translateY(-1px)!important;
  filter:brightness(1.06)!important;
  box-shadow:0 13px 26px rgba(77,18,168,.24)!important;
}

body.in-kosik #cart-wrapper .cart-summary .extras-col:not(.extras-col-basket):not(.js-extras-col-summary){
  grid-column:2!important;
  grid-row:1!important;
  padding:14px 16px!important;
  border-left:5px solid #78bb75!important;
  background:linear-gradient(135deg,#f6fbf5,var(--gpcm-mint))!important;
}

body.in-kosik #cart-wrapper .cart-summary .extras-wrap,
body.in-kosik #cart-wrapper .cart-summary .extras-wrap .extra-item,
body.in-kosik #cart-wrapper .cart-summary .extras-wrap .extra-content{
  width:100%!important;
  height:auto!important;
  min-height:0!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
}

body.in-kosik #cart-wrapper .cart-summary .extras-wrap .extra.delivery{
  display:flex!important;
  min-height:38px!important;
  align-items:center!important;
  justify-content:center!important;
  padding:0!important;
  font-size:14px!important;
  font-weight:850!important;
}

body.in-kosik #cart-wrapper .cart-summary .extras-col-basket{
  display:block!important;
  grid-column:2!important;
  grid-row:2!important;
  padding:12px!important;
  background:#fff!important;
}

body.in-kosik #cart-wrapper .extras-col-basket .discount-coupon-checkbox{
  display:flex!important;
  position:static!important;
  width:100%!important;
  min-height:44px!important;
  align-items:center!important;
  justify-content:center!important;
  gap:9px!important;
  margin:0!important;
  padding:10px 14px!important;
  border:1px solid #d8cce9!important;
  border-radius:7px!important;
  color:var(--gpcm-purple)!important;
  background:var(--gpcm-lavender)!important;
  font-size:13px!important;
  font-weight:900!important;
  text-decoration:none!important;
  cursor:pointer!important;
}

body.in-kosik #cart-wrapper .extras-col-basket .discount-coupon-checkbox::before{
  display:grid!important;
  position:static!important;
  inset:auto!important;
  width:23px!important;
  height:23px!important;
  place-items:center!important;
  border-radius:5px!important;
  color:#fff!important;
  background:var(--gpcm-purple)!important;
  content:"%"!important;
  font-size:12px!important;
  font-weight:950!important;
  transform:none!important;
}

body.in-kosik #cart-wrapper .extras-col-basket .discount-coupon-checkbox::after{
  display:inline!important;
  position:static!important;
  inset:auto!important;
  margin-left:auto!important;
  content:"+"!important;
  font-size:18px!important;
  line-height:1!important;
  transform:none!important;
}

body.in-kosik #cart-wrapper .extras-col-basket.gpc-coupon-open .discount-coupon-checkbox::after{
  content:"−"!important;
}

body.in-kosik #cart-wrapper .extras-col-basket .discount-coupon{
  display:none!important;
  position:static!important;
  width:100%!important;
  margin:10px 0 0!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
}

body.in-kosik #cart-wrapper .extras-col-basket.gpc-coupon-open .discount-coupon{
  display:block!important;
}

body.in-kosik #cart-wrapper .discount-coupon .h4{
  display:none!important;
}

body.in-kosik #cart-wrapper .discount-coupon .input-group{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  gap:8px!important;
  width:100%!important;
}

body.in-kosik #cart-wrapper #discountCouponCode{
  width:100%!important;
  height:44px!important;
  min-width:0!important;
  padding:0 12px!important;
  border:1px solid var(--gpcm-line)!important;
  border-radius:7px!important;
  background:#fff!important;
  box-shadow:none!important;
}

body.in-kosik #cart-wrapper [data-testid="buttonSubmitDiscountCoupon"]{
  min-width:92px!important;
  height:44px!important;
  padding:0 14px!important;
  border:0!important;
  border-radius:7px!important;
  color:#fff!important;
  background:var(--gpcm-purple)!important;
  font-weight:900!important;
}

body.in-kosik #cart-wrapper .cart-inner .text-center:has(.gpc-delivery-timeline){
  overflow:hidden!important;
  padding:0!important;
  border:1px solid var(--gpcm-line)!important;
  border-radius:10px!important;
  background:#fff!important;
}

body.in-kosik #cart-wrapper .gpc-delivery-timeline{
  border-radius:9px!important;
  background:linear-gradient(110deg,#f7f3fc 0%,#f2f6fb 52%,#f1f8ef 100%)!important;
}

body.in-kosik #cart-wrapper .gpc-delivery-icon{
  border-radius:8px!important;
}

body.in-kosik #cart-wrapper .fvDoplnek-upsell{
  margin-top:0!important;
  padding:18px!important;
  border:1px solid var(--gpcm-line)!important;
  border-radius:10px!important;
  background:#f8f5fc!important;
  box-shadow:none!important;
}

body.in-kosik #cart-wrapper .fvDoplnek-upsell>h4{
  margin:0!important;
  color:var(--gpcm-ink)!important;
  font-size:18px!important;
  font-weight:950!important;
}

body.in-kosik #cart-wrapper .gpc-upsell-toggle{
  width:100%!important;
  min-height:46px!important;
  margin-top:10px!important;
  padding:11px 14px!important;
  border:1px solid var(--gpcm-line)!important;
  border-radius:7px!important;
  color:var(--gpcm-purple)!important;
  background:#fff!important;
  font-size:13px!important;
  font-weight:900!important;
}

@media (max-width:767px){
  body.in-kosik #cart-wrapper{
    width:calc(100% - 20px)!important;
    margin-top:12px!important;
  }

  body.in-kosik #cart-wrapper .cart-header{
    gap:4px!important;
    margin-bottom:10px!important;
  }

  body.in-kosik #cart-wrapper .cart-header>li{
    min-height:70px!important;
    padding:8px 4px!important;
    border-radius:7px!important;
  }

  body.in-kosik #cart-wrapper .cart-header li strong,
  body.in-kosik #cart-wrapper .cart-header li a{
    flex-direction:column!important;
    gap:5px!important;
    font-size:11px!important;
    line-height:1.15!important;
    text-align:center!important;
  }

  body.in-kosik #cart-wrapper .cart-header li strong::before,
  body.in-kosik #cart-wrapper .cart-header li a::before{
    width:25px!important;
    height:25px!important;
    flex-basis:25px!important;
  }

  body.in-kosik #cart-wrapper .cart-table,
  body.in-kosik #cart-wrapper .cart-table tbody{
    display:block!important;
    width:100%!important;
  }

  body.in-kosik #cart-wrapper .cart-table tbody tr:not(.related){
    display:grid!important;
    position:relative!important;
    grid-template-columns:64px minmax(0,1fr) auto!important;
    grid-template-areas:
      "image name name"
      "image availability availability"
      "quantity quantity total"!important;
    gap:8px 10px!important;
    padding:14px!important;
  }

  body.in-kosik #cart-wrapper .cart-table tbody tr:not(.related)>td{
    width:auto!important;
    min-width:0!important;
    height:auto!important;
    padding:0!important;
    border:0!important;
  }

  body.in-kosik #cart-wrapper .cart-p-image{grid-area:image!important}
  body.in-kosik #cart-wrapper .p-name{grid-area:name!important;padding-right:28px!important}
  body.in-kosik #cart-wrapper .p-availability{grid-area:availability!important}
  body.in-kosik #cart-wrapper .p-quantity{grid-area:quantity!important;display:flex!important;align-items:center!important}
  body.in-kosik #cart-wrapper .p-price{display:none!important}
  body.in-kosik #cart-wrapper .p-total{grid-area:total!important;display:flex!important;align-items:center!important;justify-content:flex-end!important}

  body.in-kosik #cart-wrapper .cart-p-image img{
    width:64px!important;
    height:64px!important;
    object-fit:contain!important;
  }

  body.in-kosik #cart-wrapper .cart-table .p-name a{
    font-size:13px!important;
    line-height:1.3!important;
  }

  body.in-kosik #cart-wrapper .p-availability strong{
    padding:3px 6px!important;
    font-size:10px!important;
  }

  body.in-kosik #cart-wrapper .p-quantity .quantity{
    grid-template-columns:34px 52px 34px!important;
    width:120px!important;
    min-width:120px!important;
    max-width:120px!important;
  }

  body.in-kosik #cart-wrapper .p-quantity .quantity input,
  body.in-kosik #cart-wrapper .p-quantity .quantity button{
    height:38px!important;
  }

  body.in-kosik #cart-wrapper .p-quantity .quantity input,
  body.in-kosik #cart-wrapper .p-quantity .quantity button::before,
  body.in-kosik #cart-wrapper .p-quantity .quantity button::after{
    line-height:38px!important;
  }

  body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity.gpc-qty-ready>.gpc-qty-value{
    left:34px!important;
    width:52px!important;
    min-width:52px!important;
    height:38px!important;
  }

  body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity.gpc-qty-ready>button{
    line-height:38px!important;
  }

  body.in-kosik #cart-wrapper table.cart-table td.p-quantity .quantity:not(.gpc-qty-ready)::after{
    left:60px!important;
    height:38px!important;
  }

  body.in-kosik #cart-wrapper .p-total strong{
    font-size:15px!important;
  }

  body.in-kosik #cart-wrapper .p-total button{
    position:absolute!important;
    top:10px!important;
    right:8px!important;
  }

  body.in-kosik #cart-wrapper .cart-summary .extras-wrapper{
    display:grid!important;
    grid-template-columns:1fr!important;
    grid-template-rows:auto!important;
    gap:10px!important;
  }

  body.in-kosik #cart-wrapper .cart-summary .js-extras-col-summary,
  body.in-kosik #cart-wrapper .cart-summary .extras-col:not(.extras-col-basket):not(.js-extras-col-summary),
  body.in-kosik #cart-wrapper .cart-summary .extras-col-basket{
    grid-column:1!important;
    grid-row:auto!important;
    padding:16px!important;
    border-radius:9px!important;
  }

  body.in-kosik #cart-wrapper .cart-summary .price-wrapper{
    grid-template-columns:minmax(0,1fr) auto!important;
    gap:6px 12px!important;
  }

  body.in-kosik #cart-wrapper .cart-summary .price.price-primary{
    font-size:28px!important;
  }

  body.in-kosik #cart-wrapper .cart-summary .price.price-secondary{
    font-size:16px!important;
  }

  body.in-kosik #cart-wrapper .next-step-forward{
    min-height:54px!important;
    padding:10px 16px!important;
    font-size:14px!important;
    line-height:1.2!important;
    text-align:center!important;
  }

  body.in-kosik #cart-wrapper .cart-inner .text-center{
    padding:14px!important;
    border-radius:9px!important;
  }

  body.in-kosik #cart-wrapper .fvDoplnek-upsell{
    padding:15px!important;
    border-radius:9px!important;
  }
}

@media (prefers-reduced-motion:reduce){
  body.in-kosik #cart-wrapper *,
  body.in-kosik #cart-wrapper *::before,
  body.in-kosik #cart-wrapper *::after{
    scroll-behavior:auto!important;
    transition:none!important;
  }
}
