/*
 * Chocolenka cart redesign.
 * Visual layer only: Shoptet keeps quantities, gifts, coupons, checkout and add-on behavior.
 */

body.id--9 {
  --ch-cart-ink: #351d0d;
  --ch-cart-brown: #6a3b17;
  --ch-cart-accent: #d9801a;
  --ch-cart-accent-hover: #bd6915;
  --ch-cart-paper: #fffdf9;
  --ch-cart-cream: #f8f1e8;
  --ch-cart-line: #ead9c7;
  --ch-cart-muted: #79695d;
  --ch-cart-green: #397a39;
  --ch-cart-green-bg: #eff8ec;
  background: #f6f3ef;
}

body.id--9 #content {
  background:
    radial-gradient(circle at 15% 5%, rgba(217, 128, 26, .055), transparent 25rem),
    #f6f3ef;
}

body.id--9 #content > .content-inner {
  width: min(100%, 1480px);
  margin-inline: auto;
  padding: 28px 30px 70px;
}

body.id--9 #cart-wrapper,
body.id--9 .cart-inner {
  width: 100%;
}

body.id--9 .cart-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
  gap: 24px;
  margin: 0 !important;
}

body.id--9 .cart-row > .col-md-8,
body.id--9 .cart-row > .sidebar-in-cart {
  float: none !important;
  width: auto !important;
  min-width: 0;
  padding: 0 !important;
}

body.id--9 .cart-row > .col-md-8 {
  grid-column: 1;
  grid-row: 1;
}

body.id--9 .cart-row > .sidebar-in-cart {
  grid-column: 2;
  grid-row: 1;
}

/* Checkout steps */
body.id--9 .cart-header {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  margin: 0 0 18px;
  padding: 0;
  border: 1px solid var(--ch-cart-line);
  border-radius: 16px;
  background: rgba(255, 253, 249, .92);
  box-shadow: 0 8px 25px rgba(53, 29, 13, .055);
}

body.id--9 .cart-header li {
  position: relative;
  min-width: 0;
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 12px 22px;
  border: 0 !important;
  color: #8a7a6e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

body.id--9 .cart-header li + li {
  border-left: 1px solid var(--ch-cart-line) !important;
}

body.id--9 .cart-header li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: transparent;
}

body.id--9 .cart-header li.active,
body.id--9 .cart-header li:first-child {
  background: #fffaf3;
  color: var(--ch-cart-ink);
}

body.id--9 .cart-header li.active::after,
body.id--9 .cart-header li:first-child::after {
  background: var(--ch-cart-accent);
}

body.id--9 .cart-header li strong,
body.id--9 .cart-header li a {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  text-decoration: none;
}

@media (min-width: 768px) {
  body.id--9 .cart-header li {
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  body.id--9 .cart-header li > strong,
  body.id--9 .cart-header li > a {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom: 0 !important;
    font: inherit;
    text-align: center;
  }

  body.id--9 .cart-header li.active > strong {
    border-bottom: 0 !important;
  }
}

/* Product rows */
body.id--9 .cart-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  background: transparent;
}

body.id--9 .cart-table tr.removeable {
  filter: drop-shadow(0 8px 16px rgba(53, 29, 13, .045));
}

body.id--9 .cart-table tr.removeable > td {
  height: 126px;
  padding: 18px 12px;
  vertical-align: middle;
  border-top: 1px solid var(--ch-cart-line) !important;
  border-bottom: 1px solid var(--ch-cart-line) !important;
  background: var(--ch-cart-paper);
}

body.id--9 .cart-table tr.removeable > td:first-child {
  padding-left: 18px;
  border-left: 1px solid var(--ch-cart-line) !important;
  border-radius: 16px 0 0 16px;
}

body.id--9 .cart-table tr.removeable > td:last-child {
  padding-right: 18px;
  border-right: 1px solid var(--ch-cart-line) !important;
  border-radius: 0 16px 16px 0;
}

body.id--9 .cart-table .cart-p-image {
  width: 116px;
}

body.id--9 .cart-table .cart-p-image a {
  width: 92px;
  height: 92px;
  display: block;
  overflow: hidden;
  border: 1px solid #eadfd3;
  border-radius: 13px;
  background: #fff;
}

body.id--9 .cart-table .cart-p-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.id--9 .cart-table .p-name {
  min-width: 220px;
  padding-left: 8px;
}

body.id--9 .cart-table .p-name > a:first-child {
  color: var(--ch-cart-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

body.id--9 .cart-table .p-name > a:first-child:hover {
  color: var(--ch-cart-accent);
}

body.id--9 .cart-table .p-name > a + a {
  width: fit-content;
  display: block;
  margin-top: 8px;
  color: var(--ch-cart-muted);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

body.id--9 .cart-table .p-name > a + a:hover {
  color: var(--ch-cart-accent);
}

body.id--9 .cart-table .p-availability {
  width: 98px;
  text-align: center;
}

body.id--9 .cart-table .p-availability strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--ch-cart-green-bg);
  color: var(--ch-cart-green);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

body.id--9 .cart-table .p-quantity {
  width: 92px;
}

body.id--9 .cart-table .quantity {
  overflow: hidden;
  border: 1px solid #ddcdbb;
  border-radius: 10px;
  background: #fff;
}

body.id--9 .cart-table .quantity input {
  min-height: 44px;
  border: 0 !important;
  background: #fff;
  color: var(--ch-cart-ink);
  font-weight: 800;
}

body.id--9 .cart-table .quantity .increase,
body.id--9 .cart-table .quantity .decrease {
  border-color: #efe3d6;
  color: var(--ch-cart-brown);
}

body.id--9 .cart-table .p-price {
  width: 126px;
  color: var(--ch-cart-muted);
  font-size: 12px;
  white-space: nowrap;
}

body.id--9 .cart-table .p-price strong {
  color: var(--ch-cart-ink);
  font-size: 15px;
  font-weight: 800;
}

body.id--9 .cart-table .p-total {
  position: relative;
  width: 132px;
  padding-right: 18px;
  color: var(--ch-cart-ink);
  white-space: nowrap;
}

body.id--9 .cart-table .p-total strong {
  font-size: 17px;
  font-weight: 900;
}

body.id--9 .cart-table .remove-item {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  border: 0;
  border-radius: 50%;
  background: #f4ece4;
  color: #8c6f5a;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

body.id--9 .cart-table .remove-item:hover {
  background: #f8dfd9;
  color: #a13c2c;
  transform: scale(1.06);
}

/* Gifts, coupon and free-shipping state */
body.id--9 .cart-summary {
  margin-top: 16px;
  padding: 24px;
  border: 1px solid var(--ch-cart-line);
  border-radius: 18px;
  background: var(--ch-cart-paper);
  box-shadow: 0 10px 28px rgba(53, 29, 13, .055);
}

body.id--9 .cart-summary > h2 {
  margin: 0 0 20px;
  color: var(--ch-cart-ink);
  font-size: 20px;
  font-weight: 900;
}

body.id--9 .cart-summary .extras-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
}

body.id--9 .cart-summary .extras-col {
  min-width: 0;
  width: 100%;
  grid-column: 1 / -1;
}

body.id--9 .cart-summary .extras-col:nth-child(2) {
  order: 1;
}

body.id--9 .cart-summary .extras-col:nth-child(1) {
  order: 2;
}

body.id--9 .cart-summary .free-gift,
body.id--9 .cart-summary .discount-coupon,
body.id--9 .cart-summary .extras-wrap {
  border: 1px solid #efe2d5;
  border-radius: 13px;
  background: #fffaf4;
}

body.id--9 .cart-summary .free-gift {
  padding: 13px;
}

body.id--9 .cart-summary .free-gifts {
  margin-bottom: 12px;
}

body.id--9 .cart-summary .free-gifts li {
  min-height: 72px;
  align-items: center;
}

body.id--9 .cart-summary .free-gifts-img {
  width: 76px;
  height: 62px;
  overflow: hidden;
  border-radius: 9px;
  background: #fff;
}

body.id--9 .cart-summary .free-gifts-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.id--9 .cart-summary .free-gift-name {
  color: var(--ch-cart-ink);
  font-size: 13px;
  font-weight: 750;
}

body.id--9 .cart-summary .free-gift-trigger,
body.id--9 .cart-summary .discount-coupon .btn {
  min-height: 42px;
  border: 1px solid #d8b995 !important;
  border-radius: 9px !important;
  background: #fff !important;
  color: var(--ch-cart-brown) !important;
  font-weight: 800;
}

body.id--9 .cart-summary .free-gift-trigger:hover,
body.id--9 .cart-summary .discount-coupon .btn:hover {
  border-color: var(--ch-cart-accent) !important;
  background: #fff7eb !important;
}

body.id--9 .cart-summary .discount-coupon {
  width: 100%;
  margin-top: 0;
  padding: 13px;
}

body.id--9 .cart-summary .discount-coupon::before {
  /* The Classic template positions its native % decoration absolutely.
     It would otherwise peek out from underneath the redesigned form. */
  content: none !important;
  display: none !important;
}

body.id--9 .cart-summary .discount-coupon form {
  width: min(100%, 560px);
  display: flex;
}

body.id--9 .cart-summary .discount-coupon input {
  min-height: 42px;
  border-color: #ddcdbb;
  border-radius: 9px 0 0 9px;
  background: #fff;
}

body.id--9 .cart-summary .discount-coupon .btn {
  border-radius: 0 9px 9px 0 !important;
}

body.id--9 .cart-summary .extras-wrap {
  height: 100%;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: var(--ch-cart-green-bg);
  border-color: #d9e9d4;
}

body.id--9 .cart-summary .extra.delivery {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ch-cart-green);
  text-align: center;
}

body.id--9 .cart-summary .extra.delivery strong {
  color: var(--ch-cart-green);
  font-size: 15px;
  font-weight: 900;
}

/* Two free-shipping thresholds: selected carriers / Messenger + CoolBalik. */
body.id--9 .cart-summary .extras-wrap.ch-shipping-thresholds-host {
  min-height: 0;
  display: block;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
}

body.id--9 .ch-shipping-thresholds {
  width: 100%;
  padding: 15px 18px 16px;
  border: 1px solid #d9e8d2;
  border-radius: 16px;
  background: #f0f7ed;
  color: #40583a;
  text-align: left;
}

body.id--9 .ch-shipping-thresholds__header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}

body.id--9 .ch-shipping-thresholds__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff;
  color: #4f7944;
}

body.id--9 .ch-shipping-thresholds__icon svg,
body.id--9 .ch-shipping-thresholds__state-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.id--9 .ch-shipping-thresholds__header h3 {
  margin: 0;
  color: #355e30;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
}

body.id--9 .ch-shipping-thresholds__scale {
  position: relative;
  height: 6px;
  margin: 0 12px 18px;
  border-radius: 999px;
  background: #d9ddd4;
}

body.id--9 .ch-shipping-thresholds__fill {
  position: absolute;
  inset: 0 auto 0 0;
  max-width: 100%;
  border-radius: inherit;
  background: #d98216;
  transition: width .25s ease;
}

body.id--9 .ch-shipping-thresholds__milestone {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

body.id--9 .ch-shipping-thresholds__milestone--premium {
  right: 0;
  left: auto;
  transform: translate(50%, -50%);
}

body.id--9 .ch-shipping-thresholds__milestone strong {
  position: absolute;
  bottom: 24px;
  left: 50%;
  white-space: nowrap;
  color: #6c523e;
  font-size: 11px;
  line-height: 1;
  transform: translateX(-50%);
}

body.id--9 .ch-shipping-thresholds__milestone i {
  width: 17px;
  height: 17px;
  display: block;
  border: 3px solid #d98216;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(53, 29, 13, .1);
}

body.id--9 .ch-shipping-thresholds__states {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

body.id--9 .ch-shipping-thresholds__state {
  min-width: 0;
  padding: 10px 11px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  border: 1px solid #dbe8d6;
  border-radius: 11px;
  background: rgba(255, 255, 255, .82);
}

body.id--9 .ch-shipping-thresholds__state-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #edf5e9;
  color: #4f7944;
  font-size: 17px;
  font-weight: 900;
}

body.id--9 .ch-shipping-thresholds__state-copy,
body.id--9 .ch-shipping-thresholds__state-value {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

body.id--9 .ch-shipping-thresholds__state-copy strong {
  color: #40583a;
  font-size: 11px;
  line-height: 1.3;
}

body.id--9 .ch-shipping-thresholds__state small {
  margin-top: 2px;
  color: #7b8a75;
  font-size: 9px;
  line-height: 1.25;
}

body.id--9 .ch-shipping-thresholds__state-value {
  align-items: flex-end;
  text-align: right;
}

body.id--9 .ch-shipping-thresholds__state-value strong {
  white-space: nowrap;
  color: #9b571c;
  font-size: 12px;
  line-height: 1.2;
}

body.id--9 .ch-shipping-thresholds__state.is-complete .ch-shipping-thresholds__state-icon {
  background: #e1f1dc;
  color: #33732f;
}

body.id--9 .ch-shipping-thresholds__state.is-complete .ch-shipping-thresholds__state-value strong {
  color: #33732f;
}

/* Sticky sidebar */
body.id--9 .sidebar-in-cart {
  position: sticky;
  top: 18px;
  display: flex;
  flex-direction: column;
}

body.id--9 .sidebar-in-cart .cart-content {
  margin: 0 0 16px;
  padding: 22px;
  border: 1px solid var(--ch-cart-line);
  border-radius: 18px;
  background: var(--ch-cart-paper);
  box-shadow: 0 10px 28px rgba(53, 29, 13, .065);
}

body.id--9 .sidebar-in-cart .summary-wrapper {
  order: -1;
}

body.id--9 .sidebar-in-cart .cart-content > h2 {
  margin: 0 0 18px;
  color: var(--ch-cart-ink);
  font-size: 17px;
  font-weight: 900;
}

body.id--9 .sidebar-in-cart .box {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.id--9 .checkout-box-wrapper ul {
  display: grid;
  gap: 9px;
}

body.id--9 .checkout-box-wrapper li,
body.id--9 .checkout-box-wrapper a {
  color: #6b5849;
  font-size: 13px;
}

body.id--9 .checkout-box-wrapper a:hover {
  color: var(--ch-cart-accent);
}

body.id--9 .summary-wrapper {
  position: relative;
  overflow: hidden;
}

body.id--9 .summary-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--ch-cart-accent), #efaa44);
}

body.id--9 .summary-wrapper .price-wrapper {
  margin: 0;
  padding: 9px 0 20px;
  border-bottom: 1px solid #eadfd2;
}

body.id--9 .summary-wrapper .price-wrapper > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  color: var(--ch-cart-muted);
  font-size: 13px;
}

body.id--9 .summary-wrapper .price-wrapper > div:first-child {
  margin-bottom: 8px;
  color: var(--ch-cart-ink);
  font-weight: 800;
}

body.id--9 .summary-wrapper .price-wrapper > div:first-child strong {
  color: var(--ch-cart-ink);
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

body.id--9 .summary-wrapper .next-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 18px;
}

body.id--9 .summary-wrapper .next-step .btn-conversion,
body.id--9 .summary-wrapper .next-step a[href*="/objednavka/"] {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
  border: 0 !important;
  border-radius: 12px !important;
  background: var(--ch-cart-accent) !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .015em;
  box-shadow: 0 9px 22px rgba(217, 128, 26, .22);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

body.id--9 .summary-wrapper .next-step .btn-conversion:hover,
body.id--9 .summary-wrapper .next-step a[href*="/objednavka/"]:hover {
  background: var(--ch-cart-accent-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 11px 26px rgba(217, 128, 26, .27);
}

body.id--9 .summary-wrapper .back-shopping-link {
  color: var(--ch-cart-muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

body.id--9 .summary-wrapper .back-shopping-link:hover {
  color: var(--ch-cart-accent);
}

/* Native/custom cart upsell zones used on production. */
body.id--9 .vyhodny-nakup {
  margin: 34px 0 14px;
  color: var(--ch-cart-ink);
  font-size: 24px;
  font-weight: 900;
}

body.id--9 #products.hodit,
body.id--9 .hodit.products-block {
  margin: 0 0 26px;
  padding: 18px;
  border: 1px solid var(--ch-cart-line);
  border-radius: 18px;
  background: var(--ch-cart-paper);
  box-shadow: 0 10px 28px rgba(53, 29, 13, .055);
}

body.id--9 #products.hodit .product,
body.id--9 .hodit.products-block .product {
  padding: 8px;
}

body.id--9 #products.hodit .p,
body.id--9 .hodit.products-block .p {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--ch-cart-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

body.id--9 #products.hodit .btn,
body.id--9 .hodit.products-block .btn {
  border-radius: 9px !important;
}

@media (max-width: 1199px) {
  body.id--9 #content > .content-inner {
    padding-inline: 20px;
  }

  body.id--9 .cart-row {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 18px;
  }

  body.id--9 .cart-table .p-price {
    display: none;
  }

  body.id--9 .cart-table .p-name {
    min-width: 180px;
  }
}

@media (max-width: 991px) {
  body.id--9 #content > .content-inner {
    padding: 18px 14px 50px;
  }

  body.id--9 .cart-row {
    display: block !important;
  }

  body.id--9 .cart-row > .col-md-8,
  body.id--9 .cart-row > .sidebar-in-cart {
    grid-column: auto;
    grid-row: auto;
  }

  body.id--9 .sidebar-in-cart {
    position: static;
    margin-top: 18px;
  }

  body.id--9 .sidebar-in-cart .checkout-box-wrapper {
    display: none;
  }

  body.id--9 .cart-header li {
    min-height: 58px;
    padding: 10px 14px;
    font-size: 12px;
  }

  body.id--9 .cart-summary .extras-wrapper {
    grid-template-columns: 1fr;
  }

  body.id--9 .cart-summary .extras-wrap {
    min-height: 94px;
  }
}

@media (max-width: 767px) {
  body.id--9 #content > .content-inner {
    padding-inline: 10px;
  }

  body.id--9 .cart-header {
    border-radius: 13px;
  }

  body.id--9 .cart-header li {
    min-height: 54px;
    justify-content: center;
    padding: 8px 5px;
    font-size: 10px;
    text-align: center;
  }

  body.id--9 .cart-table {
    display: block;
    border-spacing: 0;
  }

  body.id--9 .cart-table tbody {
    display: grid;
    gap: 12px;
  }

  body.id--9 .cart-table tr.removeable {
    position: relative;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-areas:
      "image name"
      "image availability"
      "quantity total";
    align-items: center;
    overflow: hidden;
    padding: 13px;
    border: 1px solid var(--ch-cart-line);
    border-radius: 15px;
    background: var(--ch-cart-paper);
    filter: none;
    box-shadow: 0 8px 20px rgba(53, 29, 13, .055);
  }

  body.id--9 .cart-table tr.removeable > td {
    width: auto !important;
    height: auto;
    min-width: 0 !important;
    display: block;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent;
  }

  body.id--9 .cart-table .cart-p-image {
    grid-area: image;
    align-self: start;
    padding-right: 10px !important;
  }

  body.id--9 .cart-table .cart-p-image a {
    width: 70px;
    height: 70px;
    border-radius: 11px;
  }

  body.id--9 .cart-table .p-name {
    grid-area: name;
    padding-right: 5px !important;
  }

  body.id--9 .cart-table .p-name > a:first-child {
    font-size: 13px;
  }

  body.id--9 .cart-table .p-name > a + a {
    margin-top: 5px;
    font-size: 10px;
  }

  body.id--9 .cart-table .p-availability {
    grid-area: availability;
    padding-top: 9px !important;
    text-align: left;
  }

  body.id--9 .cart-table .p-availability strong {
    padding: 5px 9px;
    font-size: 10px;
  }

  body.id--9 .cart-table .p-quantity {
    grid-area: quantity;
    width: 92px !important;
    margin-top: 13px;
  }

  body.id--9 .cart-table .p-price {
    display: none !important;
  }

  body.id--9 .cart-table .p-total {
    grid-area: total;
    align-self: center;
    justify-self: end;
    position: static;
    margin-top: 13px;
    padding: 0 38px 0 8px !important;
    text-align: right;
  }

  body.id--9 .cart-table .p-total strong {
    font-size: 17px;
  }

  body.id--9 .cart-table .remove-item {
    top: 12px;
    right: 10px;
    margin: 0;
  }

  body.id--9 .cart-table tr.removeable .p-quantity::before,
  body.id--9 .cart-table tr.removeable .p-price::before,
  body.id--9 .cart-table tr.removeable .p-total::before {
    display: none !important;
    content: none !important;
  }

  body.id--9 .cart-summary {
    padding: 18px 14px;
    border-radius: 15px;
  }

  body.id--9 .cart-summary > h2 {
    font-size: 18px;
  }

  body.id--9 .cart-summary .discount-coupon::before {
    display: none;
  }

  body.id--9 .cart-summary .discount-coupon form {
    width: 100%;
  }

  body.id--9 .ch-shipping-thresholds {
    padding: 16px;
  }

  body.id--9 .ch-shipping-thresholds__states {
    grid-template-columns: 1fr;
  }

  body.id--9 .ch-shipping-thresholds__state {
    grid-template-columns: 30px minmax(0, 1fr) auto;
  }

  body.id--9 .sidebar-in-cart .cart-content {
    padding: 20px 16px;
    border-radius: 15px;
  }

  body.id--9 .summary-wrapper .price-wrapper > div:first-child strong {
    font-size: 28px;
  }

  body.id--9 .summary-wrapper .next-step .btn-conversion,
  body.id--9 .summary-wrapper .next-step a[href*="/objednavka/"] {
    min-height: 56px;
  }

  body.id--9 .vyhodny-nakup {
    margin-top: 26px;
    font-size: 21px;
  }
}
/* Cart shipping thresholds: keep the desktop/tablet layout readable at every width. */
@media (min-width: 768px) {
  body.id--9 .cart-summary .extras-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
  }

  body.id--9 .cart-summary .extras-col {
    float: none !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  body.id--9 .cart-summary .extras-wrap.ch-shipping-thresholds-host,
  body.id--9 .cart-summary .discount-coupon,
  body.id--9 .ch-shipping-thresholds {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  body.id--9 .ch-shipping-thresholds__states {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.id--9 .ch-shipping-thresholds__state-copy strong,
  body.id--9 .ch-shipping-thresholds__state small {
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  body.id--9 .cart-summary .discount-coupon form {
    width: 100% !important;
    max-width: none !important;
  }
}
