:root {
  --eccs-accent: #182d4b;
  --eccs-success: #1ea463;
  --eccs-light: #f6f8fb;
  --eccs-card: #ffffff;
  --eccs-text: #162133;
  --eccs-muted: #8d97a8;
  --eccs-radius: 22px;
}

.eccs-active,
.eccs-active .main_color,
.eccs-active .alternate_color {
  color: var(--eccs-text);
}

.eccs-active .container_wrap,
.eccs-active .main_color,
.eccs-active .alternate_color {
  background: transparent;
}

.eccs-active .woocommerce {
  max-width: 100%;
}

.eccs-active .woocommerce::after,
.eccs-active .woocommerce::before,
.eccs-active form.checkout::after,
.eccs-active form.checkout::before,
.eccs-active .cart-collaterals::after,
.eccs-active .cart-collaterals::before,
.eccs-active .col2-set::after,
.eccs-active .col2-set::before {
  content: "";
  display: table;
}

.eccs-active .woocommerce::after,
.eccs-active form.checkout::after,
.eccs-active .cart-collaterals::after,
.eccs-active .col2-set::after {
  clear: both;
}

.eccs-progress {
  background: var(--eccs-card);
  border: 1px solid #e7ecf3;
  border-radius: calc(var(--eccs-radius) + 2px);
  padding: 22px 26px 24px;
  margin: 0 0 28px;
}

.eccs-progress__title {
  margin: 0 0 16px;
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.eccs-progress__track {
  position: relative;
  height: 10px;
  background: #e6ebf2;
  border-radius: 999px;
}

.eccs-progress__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--eccs-accent);
  border-radius: 999px;
  transition: width .18s ease;
}

.eccs-progress__steps {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.eccs-progress__step {
  position: relative;
  text-align: center;
}

.eccs-progress__dot {
  width: 26px;
  height: 26px;
  margin: -35px auto 10px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #98a5b8;
  box-sizing: border-box;
}

.eccs-progress__step.is-complete .eccs-progress__dot,
.eccs-progress__step.is-active .eccs-progress__dot {
  border-color: var(--eccs-accent);
}

.eccs-progress__label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.eccs-progress__step.is-pending .eccs-progress__label {
  color: #98a5b8;
}

.eccs-active .woocommerce-error,
.eccs-active .woocommerce-info,
.eccs-active .woocommerce-message {
  background: var(--eccs-card) !important;
  /*border: 1px solid #e7ecf3 !important;*/
  border-radius: 10px !important;
  color: var(--eccs-text) !important;
  box-shadow: none !important;
  line-height: 1.6em;
  padding: 0px !important;
}

.eccs-active .woocommerce form .form-row input.input-text,
.eccs-active .woocommerce form .form-row textarea,
.eccs-active .woocommerce form .form-row select,
.eccs-active #coupon_code,
.eccs-active input.qty {
  width: 100%;
  min-height: 52px;
  border: 1px solid #d8e0ea !important;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

.eccs-active .button,
.eccs-active button.button,
.eccs-active input.button,
.eccs-active #place_order,
.eccs-active .checkout-button.button,
.eccs-active a.checkout-button.button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 25px !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: var(--eccs-accent) !important;
  color: #fff !important;
  line-height: 1.1 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.eccs-active .button:disabled,
.eccs-active button.button:disabled,
.eccs-active input.button:disabled {
  opacity: .45;
}

/* CART */
.eccs-cart-page .woocommerce {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}

.eccs-cart-page .woocommerce-cart-form {
  min-width: 0;
}

.eccs-cart-page .cart-collaterals {
  float: none !important;
  width: auto !important;
  min-width: 0;
  position: sticky;
  top: 24px;
}

.eccs-cart-page .cart-collaterals > * + * {
  margin-top: 16px;
}

.eccs-cart-page .shop_table.shop_table_responsive.cart {
  border: 0;
  margin: 0;
  background: transparent;
}

.eccs-cart-page .shop_table.shop_table_responsive.cart thead {
  display: none;
}

.eccs-cart-page .shop_table.shop_table_responsive.cart tbody {
  display: block;
}

.eccs-cart-page .shop_table.shop_table_responsive.cart tr.cart_item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) 180px;
  grid-template-areas:
    "thumb name price"
    "thumb qty subtotal";
  gap: 18px 26px;
  position: relative;
  padding: 22px 24px;
  margin: 0 0 18px;
  background: var(--eccs-card);
  border: 1px solid #e7ecf3;
  border-radius: var(--eccs-radius);
}

.eccs-cart-page .shop_table.shop_table_responsive.cart tr.cart_item td {
  padding: 0;
  border: 0;
  background: transparent;
  min-width: 0;
}

.eccs-cart-page td.product-remove {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 26px;
}

.eccs-cart-page td.product-remove a {
  color: var(--eccs-text) !important;
  font-size: 24px;
  line-height: 1;
}

.eccs-cart-page td.product-thumbnail {
  grid-area: thumb;
}

.eccs-cart-page td.product-thumbnail a {
  display: inline-flex;
}

.eccs-cart-page td.product-thumbnail img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  /*padding: 10px;
  border-radius: 10px;
  /*background: #f8fafc;
  border: 1px solid #edf1f6;*/
}

.eccs-cart-page td.product-name {
  grid-area: name;
  padding-right: 18px;
}

.eccs-cart-page td.product-name a {
  display: inline-block;
  color: var(--eccs-text);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  text-decoration: none;
}

.eccs-cart-page td.product-name .variation,
.eccs-cart-page td.product-name .wc-item-meta {
  margin: 10px 0 0;
  color: var(--eccs-muted);
  font-size: 15px;
}

.eccs-cart-page td.product-name .variation dt,
.eccs-cart-page td.product-name .variation dd {
  font-size: 15px;
}

.eccs-cart-page td.product-price {
  grid-area: price;
  text-align: right;
}

.eccs-cart-page td.product-subtotal {
  grid-area: subtotal;
  text-align: right;
  padding-right: 28px;
}

.eccs-cart-page td.product-price .amount,
.eccs-cart-page td.product-subtotal .amount {
  font-size: 18px;
  font-weight: 700;
}

.eccs-cart-page td.product-quantity {
  grid-area: qty;
  align-self: end;
}

.eccs-cart-page td.product-quantity .quantity {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid #d8e0ea;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.eccs-cart-page td.product-quantity .qty {
  width: 58px;
  min-height: 42px;
  border: 0;
  text-align: center;
  padding: 0 8px;
}

.eccs-cart-page td.product-quantity .plus,
.eccs-cart-page td.product-quantity .minus,
.eccs-cart-page td.product-quantity .qty-plus,
.eccs-cart-page td.product-quantity .qty-minus,
.eccs-cart-page td.product-quantity .quantity button {
  width: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #eef2f6 !important;
  color: var(--eccs-text) !important;
  font-size: 22px;
  line-height: 1;
  box-shadow: none !important;
}

.eccs-cart-page td.product-quantity .plus:hover,
.eccs-cart-page td.product-quantity .minus:hover,
.eccs-cart-page td.product-quantity .qty-plus:hover,
.eccs-cart-page td.product-quantity .qty-minus:hover,
.eccs-cart-page td.product-quantity .quantity button:hover {
  background: #e4eaf1 !important;
}

.eccs-cart-page td.product-quantity .qty::-webkit-outer-spin-button,
.eccs-cart-page td.product-quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.eccs-cart-page td.product-quantity .qty {
  -moz-appearance: textfield;
}

.eccs-cart-page td.actions {
  display: flex !important;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  /*margin-top: 6px;*/
  padding: 22px 24px !important;
  background: var(--eccs-card);
  border: 1px solid #e7ecf3;
  border-radius: var(--eccs-radius);
}

.eccs-cart-page td.actions .coupon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  flex: 1 1 380px;
}

.eccs-cart-page td.actions #coupon_code {
  max-width: 260px;
}

.eccs-cart-page td.actions .button[name="update_cart"] {
  margin-left: auto !important;
}

.eccs-cart-page td.actions .button[name="update_cart"] {
  opacity: .55;
}

.eccs-cart-page td.actions.is-auto-updating .button[name="update_cart"] {
  opacity: 1;
}

.eccs-cart-page .cart_totals {
  float: none !important;
  width: auto !important;
  padding: 26px;
  background: var(--eccs-card);
  border: 1px solid #e7ecf3;
  border-radius: var(--eccs-radius);
}

.eccs-cart-page .cart_totals h2 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.1;
}

.eccs-cart-page .cart_totals table.shop_table {
  margin: 0;
  border: 0;
}

.eccs-cart-page .cart_totals table.shop_table th,
.eccs-cart-page .cart_totals table.shop_table td {
  padding: 14px 0;
  border-color: #edf1f6;
}

.eccs-cart-page .wc-proceed-to-checkout {
  padding: 10px 0 0;
}

.eccs-cart-page .wc-proceed-to-checkout .checkout-button {
  width: 100%;
  margin: 0 !important;
  text-align: center;
}

.eccs-usp {
  display: grid;
  gap: 14px;
}

.eccs-usp__item {
  display: flex;
  align-items: center;
  gap: 10px;
  /*padding: 16px 18px;*/
  background: var(--eccs-card);
  border: 1px solid #e7ecf3;
  border-radius: 10px;
  font-weight: 700;
}

.eccs-upsell {
  position: relative;
  margin-top: 22px;
  padding: 22px 56px;
  background: #f7f9fc;
  border: 1px solid #e7ecf3;
  border-radius: var(--eccs-radius);
}

.eccs-upsell__title {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
}

.eccs-upsell__viewport {
  overflow: hidden;
}

.eccs-upsell__track {
  display: flex;
  transition: transform .24s ease;
}

.eccs-upsell__slide {
  min-width: 100%;
}

.eccs-upsell__card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: rgba(255,255,255,.8);
  border: 1px solid #e4eaf3;
  border-radius: 10px;
}

.eccs-upsell__img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  padding: 8px;
  background: #fff;
  border: 1px solid #edf1f6;
  border-radius: 10px;
}

.eccs-upsell__name {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.eccs-upsell__price {
  margin-bottom: 12px;
}

.eccs-upsell__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--eccs-accent);
  font-size: 38px;
  line-height: 1;
}

.eccs-upsell__nav--prev { left: 6px; }
.eccs-upsell__nav--next { right: 6px; }

/* CHECKOUT */
.eccs-checkout-page form.checkout.woocommerce-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}

.eccs-checkout-page #customer_details {
  grid-column: 1;
  min-width: 0;
}

.eccs-checkout-page .col2-set,
.eccs-checkout-page .col2-set .col-1,
.eccs-checkout-page .col2-set .col-2 {
  float: none !important;
  width: 100% !important;
}

.eccs-checkout-page .col2-set .col-1,
.eccs-checkout-page .col2-set .col-2 {
  margin: 0 0 22px;
  padding: 10px;
  background: var(--eccs-card);
  border: 1px solid #e7ecf3;
  border-radius: var(--eccs-radius);
}

.eccs-checkout-page .col2-set h3,
.eccs-checkout-page #order_review_heading {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.1;
}

.eccs-checkout-page #order_review_heading {
  grid-column: 2;
  padding: 0;
  background: transparent;
  border: 0;
}

.eccs-checkout-page #order_review {
  grid-column: 2;
  min-width: 0;
  padding: 10px;
  background: var(--eccs-card);
  border: 1px solid #e7ecf3;
  border-radius: var(--eccs-radius);
  position: sticky;
  top: 24px;
}

.eccs-checkout-page #order_review .shop_table,
.eccs-checkout-page #order_review table.shop_table {
  width: 100%;
  margin: 0 0 18px;
  border: 0;
}

.eccs-checkout-page #order_review table.shop_table th,
.eccs-checkout-page #order_review table.shop_table td {
  padding: 12px 4;
  border-color: #edf1f6;
  vertical-align: top;
  border: none !important;
}

.eccs-checkout-page #order_review table.shop_table td.product-name,
.eccs-checkout-page #order_review table.shop_table th.product-name {
  padding-right: 18px;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere;
  text-transform: none;
  font-size: 15px;
  letter-spacing: 0;
}

.eccs-checkout-page #order_review table.shop_table td.product-total,
.eccs-checkout-page #order_review table.shop_table th.product-total {
  text-align: right;
  white-space: nowrap;
}

.eccs-checkout-page .woocommerce-checkout-review-order-table .variation,
.eccs-checkout-page .woocommerce-checkout-review-order-table .wc-item-meta {
  margin-top: 6px;
  color: var(--eccs-muted);
  font-size: 15px;
}

.eccs-checkout-page .woocommerce-checkout-payment {
  margin-top: 18px;
  background: transparent !important;
}

.eccs-checkout-page #payment ul.payment_methods {
  margin: 0 0 16px;
  padding: 0 !important;
  border: 0 !important;
}

.eccs-checkout-page #payment ul.payment_methods li {
  list-style: none;
  margin: 0 0 10px;
  padding: 10px;
  /*background: #ffffff;
  border: 1px solid #e7ecf3;
  border-radius: 10px; */
}

.eccs-checkout-page #payment div.payment_box {
  margin-top: 10px;
  background: #f7f9fc;
  border-radius: 10px;
}

.eccs-checkout-page #place_order {
  width: 100%;
}

/* prevent awkward legacy widths */
.eccs-cart-page .cart-collaterals * ,
.eccs-checkout-page #order_review * {
  max-width: 100%;
}

@media (max-width: 1100px) {
  .eccs-cart-page .woocommerce,
  .eccs-checkout-page form.checkout.woocommerce-checkout {
    grid-template-columns: 1fr;
  }

  .eccs-cart-page .cart-collaterals,
  .eccs-checkout-page #order_review {
    position: static;
  }

  .eccs-checkout-page #order_review_heading,
  .eccs-checkout-page #order_review {
    grid-column: 1;
  }
}

@media (max-width: 767px) {
  .eccs-progress {
    padding: 0px;
  }

  .eccs-progress__title {
    font-size: 16px;
  }

  .eccs-progress__label {
    font-size: 13px;
  }

  .eccs-cart-page .shop_table.shop_table_responsive.cart tr.cart_item {
    grid-template-columns: 84px minmax(0, 1fr);
    grid-template-areas:
      "thumb name"
      "thumb price"
      "qty subtotal";
    gap: 14px 16px;
    padding: 18px;
  }

  .eccs-cart-page td.product-thumbnail img {
    width: 84px;
    height: 84px;
  }

  .eccs-cart-page td.product-price,
  .eccs-cart-page td.product-subtotal {
    text-align: left;
  }

  .eccs-cart-page td.product-subtotal {
    padding-right: 24px;
  }

  .eccs-cart-page td.actions .button[name="update_cart"] {
    margin-left: 0 !important;
  }

  .eccs-upsell {
    padding: 18px 42px;
  }

  .eccs-upsell__card {
    grid-template-columns: 1fr;
  }

  .eccs-checkout-page .col2-set .col-1,
  .eccs-checkout-page .col2-set .col-2,
  .eccs-checkout-page #order_review {
    padding: 18px;
  }
}


/* v1.8 layout corrections */
.eccs-cart-page .woocommerce > .eccs-progress-mount,
.eccs-cart-page .woocommerce > .woocommerce-notices-wrapper,
.eccs-checkout-page .woocommerce > .eccs-progress-mount,
.eccs-checkout-page .woocommerce > .woocommerce-notices-wrapper {
  grid-column: 1 / -1;
}

.eccs-cart-page .woocommerce-cart-form {
  grid-column: 1;
}

.eccs-cart-page .cart-collaterals {
  grid-column: 2;
  display: flex;
  flex-direction: column;
}

.eccs-cart-page .cart-collaterals .cart_totals,
.eccs-cart-page .cart-collaterals .eccs-usp {
  width: 100% !important;
}

.eccs-cart-page .cart-collaterals .cart_totals table.shop_table td,
.eccs-cart-page .cart-collaterals .cart_totals table.shop_table th {
  width: auto;
  border: none;
}

.eccs-cart-page .shop_table.shop_table_responsive.cart tr.cart_item {
  grid-template-columns: 120px minmax(0, 1fr) 130px;
  grid-template-areas:
    "thumb name price"
    "thumb qty subtotal";
  align-items: start;
}

.eccs-cart-page td.product-name {
  padding-right: 8px;
}

.eccs-cart-page td.product-name a {
  max-width: 100%;
}

.eccs-cart-page td.product-price,
.eccs-cart-page td.product-subtotal {
  min-width: 110px;
}

.eccs-cart-page td.product-subtotal {
  align-self: end;
}

.eccs-cart-page td.product-quantity {
  padding-top: 6px;
}

.eccs-cart-page td.product-remove {
  right: -5px;
  top: -8px;
  bottom: auto;
}

.eccs-cart-page .shop_table.shop_table_responsive.cart td::before,
.eccs-checkout-page #order_review table.shop_table td::before {
  display: none !important;
  content: none !important;
}

.eccs-cart-page td.actions {
  justify-content: space-between;
}

.eccs-cart-page td.actions .coupon {
  flex: 1 1 auto;
}

.eccs-cart-page td.actions .button[name="update_cart"] {
  flex: 0 0 auto;
}

.eccs-checkout-page form.checkout.woocommerce-checkout {
  grid-template-columns: minmax(0, 1fr) 400px;
}

.eccs-checkout-page #customer_details {
  grid-column: 1;
  grid-row: 1 / span 20;
}

.eccs-checkout-page #order_review_heading,
.eccs-checkout-page #order_review {
  float: none !important;
  clear: none !important;
  width: auto !important;
  margin: 0;
}

.eccs-checkout-page #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.eccs-checkout-page #order_review {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}

.eccs-checkout-page #order_review table.shop_table {
  table-layout: auto;
}

.eccs-checkout-page #order_review table.shop_table td.product-name,
.eccs-checkout-page #order_review table.shop_table th.product-name {
  width: auto;
}

.eccs-checkout-page #order_review table.shop_table td.product-total,
.eccs-checkout-page #order_review table.shop_table th.product-total {
  width: 120px;
}

.eccs-checkout-page .woocommerce-checkout-payment {
  clear: none !important;
}

.eccs-checkout-page #payment {
  margin-top: 18px;
}

.eccs-checkout-page #payment .place-order {
  padding-bottom: 0 !important;
}

@media (max-width: 1100px) {
  .eccs-cart-page .woocommerce-cart-form,
  .eccs-cart-page .cart-collaterals,
  .eccs-checkout-page #customer_details,
  .eccs-checkout-page #order_review_heading,
  .eccs-checkout-page #order_review {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 767px) {
  .eccs-cart-page .shop_table.shop_table_responsive.cart tr.cart_item {
    grid-template-columns: 84px minmax(0, 1fr);
    grid-template-areas:
      "thumb name"
      "thumb price"
      "qty subtotal";
  }

  .eccs-cart-page td.product-price,
  .eccs-cart-page td.product-subtotal {
    min-width: 0;
  }

  .eccs-cart-page td.actions {
    flex-direction: column;
    align-items: stretch;
  }

  .eccs-cart-page td.actions .coupon,
  .eccs-cart-page td.actions .button[name="update_cart"] {
    width: 100%;
  }
}


/* v1.8.2 refinements */
.eccs-cart-page .quantity .qty,
.eccs-cart-page .quantity input.qty {
  min-height: 44px;
  height: 44px;
  border-radius: 10px !important;
  text-align: center;
  padding: 8px 10px;
}

.eccs-cart-page .quantity .plus,
.eccs-cart-page .quantity .minus,
.eccs-cart-page .quantity button.plus,
.eccs-cart-page .quantity button.minus,
.eccs-cart-page .quantity button,
.eccs-cart-page .quantity .qty-plus,
.eccs-cart-page .quantity .qty-minus {
  min-width: 44px;
  width: 44px;
  height: 44px;
  border-radius: 10px !important;
  border: 1px solid #d8e0ea !important;
  background: #f4f6f9 !important;
  color: var(--eccs-text) !important;
  padding: 0 !important;
}
/*
.eccs-cart-page .quantity {
  gap: 6px;
}
*/
.eccs-cart-page button[name="update_cart"],
.eccs-cart-page input[name="update_cart"] {
  display: none !important;
}

.eccs-cart-page td.actions.is-auto-updating::after {
  content: 'Winkelwagen wordt bijgewerkt…';
  display: inline-block;
  margin-left: 14px;
  color: var(--eccs-muted);
  font-weight: 600;
}


/* 2.0.1 notice + polish */
.eccs-cart-page td.actions .button[name="update_cart"],
.eccs-cart-page td.actions button[name="update_cart"],
.eccs-cart-page td.actions input[name="update_cart"] { display: none !important; }
.eccs-active .woocommerce-message.is-eccs-auto-hide { transition: opacity .35s ease, transform .35s ease; }
.eccs-active .woocommerce-message.is-eccs-auto-hide.eccs-hide { opacity: 0; transform: translateY(-6px); pointer-events:none; }

/* v1.1.2 mobile cart item layout fix
   Houdt productafbeeldingen zichtbaar en voorkomt dat de productnaam in een te smalle kolom valt. */
@media (max-width: 767px) {
  .eccs-cart-page .woocommerce {
    display: block !important;
  }

  .eccs-cart-page .shop_table.shop_table_responsive.cart,
  .eccs-cart-page .shop_table.shop_table_responsive.cart tbody {
    display: block !important;
    width: 100% !important;
  }

  .eccs-cart-page .shop_table.shop_table_responsive.cart tr.cart_item {
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr) !important;
    grid-template-areas:
      "thumb name"
      "thumb price"
      "qty subtotal" !important;
    gap: 12px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    align-items: start !important;
    padding: 18px !important;
  }

  .eccs-cart-page .shop_table.shop_table_responsive.cart tr.cart_item td {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
    text-align: left !important;
    border: 0 !important;
  }

  .eccs-cart-page td.product-thumbnail {
    grid-area: thumb !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .eccs-cart-page td.product-thumbnail a {
    display: flex !important;
    width: 92px !important;
    height: 92px !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fff !important;
    border: 1px solid #edf1f6 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
  }

  .eccs-cart-page td.product-thumbnail img,
  .eccs-cart-page .shop_table.shop_table_responsive.cart td.product-thumbnail img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 92px !important;
    max-width: 92px !important;
    height: 92px !important;
    max-height: 92px !important;
    object-fit: contain !important;
    margin: 0 !important;
    padding: 8px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .eccs-cart-page td.product-name {
    grid-area: name !important;
    min-width: 0 !important;
    padding: 0 26px 0 0 !important;
  }

  .eccs-cart-page td.product-name a {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: 16px !important;
    line-height: 1.22 !important;
    text-align: left !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
  }

  .eccs-cart-page td.product-price {
    grid-area: price !important;
    align-self: start !important;
    min-width: 0 !important;
  }

  .eccs-cart-page td.product-quantity {
    grid-area: qty !important;
    padding-top: 0 !important;
  }

  .eccs-cart-page td.product-subtotal {
    grid-area: subtotal !important;
    align-self: center !important;
    min-width: 0 !important;
    padding-right: 0 !important;
  }

  .eccs-cart-page td.product-remove {
    display: block !important;
    position: absolute !important;
    right: -1px !important;
    top: -8px !important;
    width: 34px !important;
    height: 34px !important;
    z-index: 3 !important;
    text-align: center !important;
  }

  .eccs-cart-page td.product-remove a {
    display: flex !important;
    width: 34px !important;
    height: 34px !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
  }
}


/* v1.1.3 mobile cart refinement
   Verfijnt uitlijning en schaalt typografie/hoeveelheidsbediening netter op mobiel,
   zonder overige functionaliteit of desktop-layout te wijzigen. */
@media (max-width: 767px) {
  .eccs-cart-page .shop_table.shop_table_responsive.cart tr.cart_item {
    grid-template-columns: 92px minmax(0, 1fr) !important;
    grid-template-areas:
      "thumb name"
      "thumb price"
      "thumb subtotal"
      "qty qty" !important;
    gap: 10px 16px !important;
    padding: 16px !important;
  }

  .eccs-cart-page td.product-name {
    padding-right: 18px !important;
  }

  .eccs-cart-page td.product-name a {
    font-size: 15px !important;
    line-height: 1.25 !important;
  }

  .eccs-cart-page td.product-name .variation,
  .eccs-cart-page td.product-name .wc-item-meta,
  .eccs-cart-page td.product-price,
  .eccs-cart-page td.product-subtotal {
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  .eccs-cart-page td.product-price {
    margin-top: -2px !important;
  }

  .eccs-cart-page td.product-price .amount {
    font-size: 16px !important;
    line-height: 1.15 !important;
  }

  .eccs-cart-page td.product-subtotal {
    align-self: start !important;
    margin-top: -2px !important;
  }

  .eccs-cart-page td.product-subtotal .amount {
    font-size: 17px !important;
    line-height: 1.15 !important;
  }

  .eccs-cart-page td.product-price > *,
  .eccs-cart-page td.product-subtotal > * {
    max-width: 100% !important;
  }

  .eccs-cart-page td.product-quantity {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    margin-top: 2px !important;
  }

  .eccs-cart-page td.product-quantity .quantity {
    display: inline-flex !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
  }

  .eccs-cart-page .quantity .plus,
  .eccs-cart-page .quantity .minus,
  .eccs-cart-page .quantity button.plus,
  .eccs-cart-page .quantity button.minus,
  .eccs-cart-page .quantity button,
  .eccs-cart-page .quantity .qty-plus,
  .eccs-cart-page .quantity .qty-minus {
    min-width: 38px !important;
    width: 38px !important;
    height: 40px !important;
    font-size: 20px !important;
  }

  .eccs-cart-page .quantity .qty,
  .eccs-cart-page .quantity input.qty {
    width: 46px !important;
    min-width: 46px !important;
    height: 40px !important;
    min-height: 40px !important;
    font-size: 15px !important;
    padding: 6px 4px !important;
  }

  .eccs-cart-page td.product-remove {
    right: 0 !important;
    top: -6px !important;
  }
}
