.wmpc-compare {
  --wmpc-line: #dfe5e8;
  --wmpc-text: #1f2933;
  --wmpc-muted: #66737f;
  --wmpc-soft: #f6f8f9;
  --wmpc-accent: #0f766e;
  color: var(--wmpc-text);
  margin: 28px 0;
}

.wmpc-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.wmpc-eyebrow,
.wmpc-count {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: var(--wmpc-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.wmpc-head h2 {
  margin: 4px 0 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
}

.wmpc-products {
  display: grid;
  grid-template-columns: repeat(var(--wmpc-products), minmax(190px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  overflow: clip;
}

.wmpc-product-card {
  position: relative;
  min-width: 0;
  border-radius: 8px;
  background: transparent;
  transition: border-color .18s ease, box-shadow .18s ease, opacity .18s ease, transform .18s ease;
}

.wmpc-card-face {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-radius: inherit;
  border: 1px solid var(--wmpc-line);
  padding: 12px 38px 12px 12px;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.wmpc-product-card:hover {
  box-shadow: none;
}

.wmpc-product-card:hover .wmpc-card-face {
  border-color: rgba(15, 118, 110, .24);
  box-shadow: 0 8px 24px rgba(31, 41, 51, .07);
}

.wmpc-product-card.is-delete-pending {
  pointer-events: none;
}

.wmpc-product-card.is-delete-pending .wmpc-card-face {
  border-color: rgba(179, 45, 46, .22);
  box-shadow: 0 10px 28px rgba(179, 45, 46, .09);
  animation: wmpcDeletePending .62s ease both;
}

.wmpc-product-card.is-removing {
  pointer-events: none;
  animation: wmpcCardRemove .42s cubic-bezier(.34, .92, .28, 1) forwards;
}

.wmpc-product-card.is-removing .wmpc-card-face {
  border-color: rgba(179, 45, 46, .18);
  box-shadow: 0 14px 34px rgba(31, 41, 51, .08);
}

.wmpc-product-media {
  display: block;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  background: var(--wmpc-soft);
}

.wmpc-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.wmpc-product-body {
  min-width: 0;
}

.wmpc-product-body h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}

.wmpc-product-body h3 a {
  color: inherit;
  text-decoration: none;
}

.wmpc-dci,
.wmpc-presentation-summary {
  margin: 0 0 5px;
  color: var(--wmpc-muted);
  font-size: 12px;
  line-height: 1.35;
}

.wmpc-remove {
  display: inline-flex;
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 4;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5f6b76;
  font-size: 0;
  line-height: 1;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(.92);
  transition: opacity .2s ease, color .18s ease, transform .2s ease;
}

.wmpc-product-card:hover .wmpc-remove,
.wmpc-product-card:focus-within .wmpc-remove {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.wmpc-remove::before {
  content: "\00d7";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.wmpc-remove span::before {
  content: "";
}

.wmpc-remove:hover {
  color: #a33131;
  transform: translateY(0) scale(1.08);
}

.wmpc-remove.is-loading {
  opacity: 1;
  pointer-events: none;
  transform: translateY(0) scale(1);
}

.wmpc-remove.is-loading::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  animation: wmpcSpin .68s linear infinite;
}

.wmpc-table [data-wmpc-col].is-removing {
  opacity: 0;
  transform: translateY(8px) scale(.985);
  transition: opacity .38s ease, transform .38s ease;
}

.wmpc-table th[data-wmpc-col].is-removing,
.wmpc-table td[data-wmpc-col].is-removing {
  overflow: hidden;
}

.wmpc-shop-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  max-width: min(360px, calc(100vw - 36px));
  overflow: hidden;
  border: 1px solid rgba(31, 41, 51, .08);
  border-radius: 8px;
  padding: 13px 16px 14px;
  background: linear-gradient(180deg, #fff, #fbfdfd);
  color: #17212b;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
  box-shadow: 0 14px 34px rgba(31, 41, 51, .14);
  opacity: 0;
  transform: translateY(12px) scale(.97);
  pointer-events: none;
  transition: opacity .24s ease, transform .24s cubic-bezier(.2, .85, .25, 1);
}

.wmpc-shop-notice::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--wmpc-accent);
  opacity: .85;
  transform: scaleX(0);
  transform-origin: left;
}

.wmpc-shop-notice.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wmpc-shop-notice.is-visible::after {
  animation: wmpcNoticeLife 2.6s linear forwards;
}

.wmpc-table-wrap {
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--wmpc-line);
  border-radius: 8px;
  background: #fff;
  line-height: 0;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.wmpc-table-wrap::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.wmpc-table {
  width: 100%;
  min-width: 760px;
  margin: 0 !important;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  line-height: normal;
}

.wmpc-table th,
.wmpc-table td {
  width: 260px;
  padding: 16px;
  border-right: 1px solid var(--wmpc-line);
  border-bottom: 1px solid var(--wmpc-line);
  vertical-align: top;
  text-align: left;
  line-height: 1.45;
  scroll-snap-align: start;
}

.wmpc-table th:first-child,
.wmpc-table td:first-child {
  width: 210px;
}

.wmpc-table tr > *:last-child {
  border-right: 0;
}

.wmpc-table tbody tr:last-child > * {
  border-bottom: 0;
}

.wmpc-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fff;
  font-size: 13px;
}

.wmpc-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--wmpc-soft);
  font-size: 14px;
}

.wmpc-table tbody th span {
  display: block;
}

.wmpc-table tbody th small {
  display: block;
  margin-top: 5px;
  color: var(--wmpc-muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.wmpc-main-photo {
  display: block;
  max-width: 140px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  background: var(--wmpc-soft);
}

.wmpc-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.wmpc-photo-gallery {
  position: relative;
  width: 100%;
  margin: 0;
}

.wmpc-photo-gallery .wd-carousel-inner {
  position: relative;
}

.wmpc-photo-gallery .woocommerce-product-gallery__wrapper {
  margin: 0;
}

.wmpc-photo-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.wmpc-photo-track::-webkit-scrollbar {
  display: none;
}

.wmpc-photo-gallery .wd-carousel-item {
  min-width: 0;
  scroll-snap-align: center;
}

.wmpc-photo-gallery .woocommerce-product-gallery__image {
  position: relative;
  margin: 0;
}

.wmpc-photo-gallery .woocommerce-product-gallery__image a {
  display: block;
  aspect-ratio: 1;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: var(--wmpc-soft);
}

.wmpc-photo-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.wmpc-photo-gallery .wd-nav-arrows {
  pointer-events: none;
  opacity: 0;
  transition: opacity .22s ease;
}

.wmpc-photo-gallery .wd-btn-arrow {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 26px;
  height: 38px;
  margin-top: -14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(23, 33, 43, .72);
  box-shadow: none;
  cursor: pointer;
  opacity: 0;
  transition: color .18s, transform .22s ease, opacity .22s ease;
}

.wmpc-photo-gallery:hover .wd-nav-arrows,
.wmpc-photo-gallery:focus-within .wd-nav-arrows,
.wmpc-photo-gallery:hover .wd-btn-arrow,
.wmpc-photo-gallery:focus-within .wd-btn-arrow {
  opacity: 1;
}

.wmpc-photo-gallery .wd-btn-arrow:hover {
  color: var(--wmpc-accent);
}

.wmpc-photo-gallery .wd-prev {
  left: 4px;
  transform: translateX(-8px);
}

.wmpc-photo-gallery .wd-next {
  right: 4px;
  transform: translateX(8px);
}

.wmpc-photo-gallery:hover .wd-prev,
.wmpc-photo-gallery:focus-within .wd-prev,
.wmpc-photo-gallery:hover .wd-next,
.wmpc-photo-gallery:focus-within .wd-next {
  transform: translateX(0);
}

.wmpc-photo-gallery .wd-disabled {
  opacity: .35;
  pointer-events: none;
}

.wmpc-photo-gallery .wd-arrow-inner::before {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  line-height: 1;
}

.wmpc-photo-gallery .wd-prev .wd-arrow-inner::before {
  content: "\2039";
}

.wmpc-photo-gallery .wd-next .wd-arrow-inner::before {
  content: "\203a";
}

.wmpc-photo-pagination {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.wmpc-photo-pagination .wd-nav-pagin {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wmpc-photo-pagination .wd-nav-pagin-item span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ccd6dc;
  cursor: pointer;
}

.wmpc-photo-pagination .wd-active span {
  background: var(--wmpc-accent);
}

.wmpc-presentation-list {
  display: grid;
  gap: 8px;
}

.wmpc-presentation-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  border: 1px solid var(--wmpc-line);
  border-radius: 7px;
  padding: 8px;
  background: #fff;
}

.wmpc-presentation-image {
  aspect-ratio: 1;
  border-radius: 5px;
  overflow: hidden;
  background: var(--wmpc-soft);
}

.wmpc-presentation-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.wmpc-presentation-card strong {
  color: #17212b;
  font-size: 12.5px;
  line-height: 1.3;
}

.wmpc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.wmpc-pills span,
.wmpc-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid rgba(15, 118, 110, .2);
  border-radius: 999px;
  padding: 3px 9px;
  background: rgba(15, 118, 110, .07);
  color: #0f5f59;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
}

.wmpc-expanded-cell {
  display: grid;
  gap: 10px;
}

.wmpc-composition-list,
.wmpc-info-list {
  display: grid;
  gap: 8px;
}

.wmpc-composition-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--wmpc-line);
  border-radius: 7px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(31, 41, 51, .03);
}

.wmpc-composition-main {
  min-width: 0;
}

.wmpc-composition-main strong,
.wmpc-info-item strong {
  display: block;
  color: #17212b;
  font-size: 13px;
  line-height: 1.3;
}

.wmpc-composition-main span,
.wmpc-info-item p {
  display: block;
  margin: 4px 0 0;
  color: var(--wmpc-muted);
  font-size: 12px;
  line-height: 1.45;
}

.wmpc-composition-dose {
  display: block;
  justify-items: end;
  align-items: baseline;
  min-width: 58px;
  margin-top: 0;
  padding: 0;
  background: transparent;
  color: #17212b;
  text-align: right;
}

.wmpc-composition-dose strong {
  display: inline;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.wmpc-composition-dose span {
  display: inline;
  margin-top: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.wmpc-info-item {
  border: 1px solid var(--wmpc-line);
  border-radius: 7px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(15, 118, 110, .045), #fff 44px);
}

.wmpc-info-kicker {
  display: inline-flex;
  margin-bottom: 5px;
  color: var(--wmpc-accent);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.wmpc-info-item em {
  display: inline-flex;
  margin-top: 6px;
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(15, 118, 110, .08);
  color: #0f5f59;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.wmpc-rich {
  font-size: 13px;
  line-height: 1.55;
}

.wmpc-rich > :first-child {
  margin-top: 0;
}

.wmpc-rich > :last-child {
  margin-bottom: 0;
}

.wmpc-full-info {
  border: 1px solid var(--wmpc-line);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(15, 118, 110, .045), #fff 42px);
  overflow: hidden;
  padding: 12px;
}

.wmpc-full-info .wmpc-rich {
  font-size: 12.5px;
}

.wmpc-full-info table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.wmpc-full-info th,
.wmpc-full-info td {
  position: static;
  width: auto;
  padding: 8px;
  border: 1px solid var(--wmpc-line);
  vertical-align: top;
  text-align: left;
}

.wmpc-full-info th {
  background: #f8fafb;
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
}

.wmpc-full-info .dose-card,
.wmpc-full-info .info-tile,
.wmpc-full-info .text-card,
.wmpc-full-info .wait-card {
  margin: 0 0 8px;
  border: 1px solid var(--wmpc-line);
  border-radius: 6px;
  padding: 10px;
  background: #fff;
}

.wmpc-full-info .dose-card:last-child,
.wmpc-full-info .info-tile:last-child,
.wmpc-full-info .text-card:last-child,
.wmpc-full-info .wait-card:last-child {
  margin-bottom: 0;
}

.wmpc-empty {
  color: #9aa4ad;
}

.wmpc-empty-state {
  border: 1px solid var(--wmpc-line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.wmpc-empty-state h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.wmpc-empty-state p {
  margin: 0;
  color: var(--wmpc-muted);
}

@media (max-width: 1024px) {
  .wmpc-shop-notice {
    right: 12px;
    bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    max-width: min(360px, calc(100vw - 24px));
  }

  .wmpc-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .wmpc-products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
  }

  .wmpc-product-card {
    width: 100%;
    padding: 0;
    overflow: hidden;
    transform: none;
    transition: border-color .18s ease, box-shadow .18s ease, opacity .18s ease;
  }

  .wmpc-card-face {
    grid-template-columns: 92px minmax(0, 1fr);
    padding: 12px;
    transform: translateX(var(--wmpc-swipe-x, 0));
    transition: transform .24s cubic-bezier(.2, .8, .2, 1);
  }

  .wmpc-product-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    width: 68px;
    background: #d93025;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(217, 48, 37, .22);
    z-index: 1;
    opacity: 0;
    transform: translateX(10px) scale(.96);
    transition: opacity .18s ease, transform .18s ease;
  }

  .wmpc-product-card.is-swiping {
    transition: border-color .18s ease, box-shadow .18s ease, opacity .18s ease;
  }

  .wmpc-product-card.is-swiping .wmpc-card-face {
    transition: none;
  }

  .wmpc-product-card.is-removing {
    animation: wmpcCardRemoveMobile .42s cubic-bezier(.34, .92, .28, 1) forwards;
  }

  .wmpc-product-card.is-delete-ready {
    box-shadow: none;
  }

  .wmpc-product-card.is-delete-ready .wmpc-card-face {
    box-shadow: 0 10px 28px rgba(179, 45, 46, .12);
  }

  .wmpc-product-card.is-delete-ready::after,
  .wmpc-product-card.is-swiping::after {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  .wmpc-product-card.is-swipe-hint {
    animation: none;
  }

  .wmpc-product-card.is-swipe-hint .wmpc-card-face {
    animation: wmpcSwipeHint 1.15s ease .25s 1;
  }

  .wmpc-product-card.is-swipe-hint::after,
  .wmpc-product-card.is-swipe-hint .wmpc-remove {
    animation: wmpcDeleteHint 1.15s ease .25s 1;
  }

  .wmpc-remove {
    position: absolute;
    display: inline-flex;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: auto;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    opacity: 0;
    transform: translateX(10px) scale(.96);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }

  .wmpc-product-card.is-delete-ready .wmpc-remove,
  .wmpc-product-card.is-swiping .wmpc-remove {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  .wmpc-product-card.is-delete-ready .wmpc-remove {
    pointer-events: auto;
  }

  .wmpc-remove.is-loading {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  .wmpc-product-card:hover .wmpc-remove,
  .wmpc-product-card:focus-within .wmpc-remove {
    transform: none;
  }

  .wmpc-remove::before {
    content: "\f2ed";
    display: block;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    background: none;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome, sans-serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
  }

  .wmpc-remove.is-loading::before {
    content: "";
    width: 22px;
    height: 22px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 999px;
    animation: wmpcSpin .68s linear infinite;
  }

  .wmpc-remove .wmpc-trash-fallback {
    display: none;
  }

  .wmpc-product-media {
    grid-column: 1;
    grid-row: 1;
  }

  .wmpc-product-body {
    grid-column: 2;
    grid-row: 1;
  }

  .wmpc-table {
    min-width: max-content;
  }

  .wmpc-table th,
  .wmpc-table td {
    width: 78vw;
    max-width: 340px;
    padding: 12px;
  }

  .wmpc-table th:first-child,
  .wmpc-table td:first-child {
    position: sticky;
    left: 0;
    width: 42vw;
    max-width: 170px;
    box-shadow: 7px 0 14px rgba(31, 41, 51, .06);
  }

  .wmpc-table thead th {
    position: sticky;
    top: 0;
    z-index: 4;
  }

  .wmpc-table thead th:first-child {
    z-index: 6;
  }

  .wmpc-table-wrap {
    position: relative;
    border-radius: 0;
    margin-right: -15px;
    padding-bottom: 0;
  }

  .wmpc-photo-gallery {
    max-width: none;
  }

  .wmpc-photo-gallery .woocommerce-product-gallery__image a {
    max-height: 190px;
  }

  .wmpc-presentation-card {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .wmpc-composition-dose {
    width: auto;
    text-align: right;
  }

  .wmpc-full-info,
  .wmpc-info-item,
  .wmpc-composition-item {
    padding: 9px;
  }
}

@media (max-width: 480px) {
  .wmpc-shop-notice {
    right: 10px;
    left: 10px;
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    max-width: none;
  }
}

@keyframes wmpcSwipeHint {
  0%, 100% {
    transform: translateX(0);
  }

  38% {
    transform: translateX(-86px);
  }

  58% {
    transform: translateX(-86px);
  }
}

@keyframes wmpcDeleteHint {
  0%, 18%, 100% {
    opacity: 0;
    transform: scale(.96);
  }

  38%, 58% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes wmpcDeletePending {
  0% {
    transform: translateY(0) scale(1);
  }

  45% {
    transform: translateY(-2px) scale(1.01);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes wmpcCardRemove {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  45% {
    opacity: .72;
    transform: translateY(-4px) scale(.985);
  }

  100% {
    opacity: 0;
    transform: translateY(14px) scale(.94);
  }
}

@keyframes wmpcCardRemoveMobile {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  45% {
    opacity: .82;
    transform: translateX(-28px) scale(.985);
  }

  100% {
    opacity: 0;
    transform: translateX(-112%) scale(.96);
  }
}

@keyframes wmpcSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes wmpcNoticeLife {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wmpc-product-card.is-delete-pending .wmpc-card-face,
  .wmpc-product-card.is-removing,
  .wmpc-remove.is-loading::before,
  .wmpc-shop-notice.is-visible::after {
    animation-duration: .01ms;
    animation-iteration-count: 1;
  }

  .wmpc-table [data-wmpc-col].is-removing {
    transition-duration: .01ms;
  }
}
