@charset "UTF-8";
.wctg-section {
  --wctg-surface: #fff;
  --wctg-surface-soft: #f8faf8;
  --wctg-mint: #7ec897;
  --wctg-mint-strong: #6fc58c;
  --wctg-mint-soft: #ddf7e6;
  --wctg-line: rgba(0, 0, 0, 0.15);
  --wctg-line-soft: rgba(0, 0, 0, 0.06);
  --wctg-dot-idle: #d6d6d6;
  --wctg-ink: #000;
  --wctg-muted: #8c8c8c;
  --wctg-disabled: #ececec;
  --wctg-danger: #c86f6f;
  --wctg-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  margin: 50px 0 0;
  color: var(--wctg-ink);
  font-size: 16px;
  line-height: 1.4;
}

.wctg-shell {
  position: relative;
  padding: 37px 35px 32px;
  border: 1px solid var(--wctg-mint);
  border-radius: 10px;
  background: var(--wctg-surface);
}

.wctg-eyebrow {
  position: absolute;
  top: -21px;
  left: 35px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 6.5px 9px;
  border-radius: 3px;
  background: var(--wctg-mint-soft);
  color: var(--wctg-ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.wctg-eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  background: var(--wctg-surface);
  font-size: 16px;
}
.wctg-eyebrow-icon .wctg-eyebrow-icon-icon {
  display: block;
  font-size: 15px;
  line-height: 1;
  transform: translateY(3px);
}

.wctg-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.wctg-header-copy {
  flex: 0 1 340px;
  display: grid;
  gap: 14px;
}

.wctg-title {
  margin: 0;
  color: var(--wctg-ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.wctg-counter {
  margin: 0;
  color: var(--wctg-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.wctg-counter--teaser {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}

.wctg-counter--teaser strong {
  font-weight: 700;
}

.wctg-thresholds {
  flex: 1 1 520px;
  position: relative;
  min-width: 280px;
  max-width: 640px;
}

.wctg-thresholds-track {
  position: absolute;
  top: 9.5px;
  left: calc(50% / var(--wctg-count, 1));
  right: calc(50% / var(--wctg-count, 1));
  height: 1px;
  background: var(--wctg-line);
  z-index: 0;
}

.wctg-thresholds-fill {
  display: block;
  width: var(--wctg-progress, 0%);
  height: 100%;
  background: var(--wctg-mint);
}

.wctg-threshold-list {
  display: grid;
  grid-template-columns: repeat(var(--wctg-count, 1), minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wctg-threshold {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.wctg-threshold-dot {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: transparent;
  color: #fff;
}

.wctg-threshold-dot::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  background: var(--wctg-dot-idle);
}

.wctg-threshold--completed .wctg-threshold-dot::before {
  background: var(--wctg-mint);
}

.wctg-threshold--current .wctg-threshold-dot::before {
  inset: 0;
  background: var(--wctg-mint);
}

.wctg-threshold-check {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}

.wctg-threshold-check svg {
  display: block;
  width: 10px;
  height: 10px;
}

.wctg-threshold-copy {
  display: grid;
  gap: 0;
}

.wctg-threshold-title {
  display: block;
  color: var(--wctg-ink);
  font-size: 16px;
  line-height: 19px;
}

.wctg-threshold-amount {
  display: block;
  color: var(--wctg-ink);
  font-size: 14px;
  line-height: 19px;
}

.wctg-threshold--current .wctg-threshold-title {
  font-weight: 700;
}

.wctg-divider {
  margin: 24px 0 16px;
  border-top: 1px solid var(--wctg-line);
}

.wctg-feedback {
  display: none;
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.wctg-feedback:not(:empty) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 500;
}

.wctg-feedback::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.wctg-feedback[data-state=info] {
  background: var(--wctg-mint-soft);
  color: var(--wctg-ink);
}

.wctg-feedback[data-state=info]::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid var(--wctg-mint);
  border-right-color: transparent;
  border-radius: 999px;
  animation: wctg-spin 0.7s linear infinite;
}

.wctg-feedback[data-state=success] {
  background: var(--wctg-mint-soft);
  color: #2c6841;
}

.wctg-feedback[data-state=success]::before {
  content: "✓";
  background: var(--wctg-mint);
  color: #fff;
}

.wctg-feedback[data-state=error] {
  background: #fdecec;
  color: #9a3f3f;
}

.wctg-feedback[data-state=error]::before {
  content: "!";
  background: var(--wctg-danger);
  color: #fff;
}

@keyframes wctg-spin {
  to {
    transform: rotate(360deg);
  }
}
.wctg-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 12px;
  width: 100%;
  margin: 0 0 16px;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--wctg-mint-soft);
  color: #2c6841;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.wctg-banner::before {
  content: "★";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--wctg-mint);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.wctg-banner__main {
  font-weight: 700;
}

.wctg-banner__extra {
  color: #4a8466;
  font-weight: 500;
}

.wctg-banner__extra strong {
  color: #2c6841;
  font-weight: 700;
}

.wctg-banner--with-extra {
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.wctg-banner--with-extra::before {
  margin-bottom: 2px;
}

.wctg-grid-wrap {
  position: relative;
}

.wctg-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 45px;
  margin: 0;
  padding: 4px 36px 16px 2px;
  list-style: none;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-left: 2px;
  overscroll-behavior-x: contain;
  scrollbar-color: var(--wctg-mint) rgba(0, 0, 0, 0.06);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 36px), transparent 100%);
  mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 36px), transparent 100%);
}

.wctg-grid-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: -10px;
  padding: 0;
  border: 1px solid var(--wctg-mint);
  border-radius: 999px;
  background: #fff;
  color: var(--wctg-mint-strong);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, opacity 0.2s ease, transform 0.18s ease;
  opacity: 0;
  pointer-events: none;
}

.wctg-grid-nav svg {
  display: block;
}

.wctg-section--overflowing .wctg-grid-nav:not(:disabled):not([aria-disabled=true]) {
  opacity: 1;
  pointer-events: auto;
}

.wctg-section--overflowing .wctg-shell {
  border-color: var(--wctg-line);
}

.wctg-grid-nav:hover:not(:disabled) {
  background: var(--wctg-mint);
  color: #fff;
}

.wctg-grid-nav:focus-visible {
  outline: 2px solid var(--wctg-mint-strong);
  outline-offset: 2px;
}

.wctg-grid-nav:active:not(:disabled) {
  transform: translateY(-50%) scale(0.96);
}

.wctg-grid-nav--prev {
  left: -32px;
}

.wctg-grid-nav--next {
  right: -32px;
}

.wctg-grid::-webkit-scrollbar {
  height: 8px;
}

.wctg-grid::-webkit-scrollbar-track {
  margin: 0 4px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
}

.wctg-grid::-webkit-scrollbar-thumb {
  background: var(--wctg-mint);
  border-radius: 999px;
  border: 1px solid transparent;
  background-clip: padding-box;
}

.wctg-grid::-webkit-scrollbar-thumb:hover {
  background: var(--wctg-mint-strong);
}

.wctg-card {
  flex: 0 0 182px;
  min-width: 0;
  scroll-snap-align: start;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.wctg-card--disabled {
  opacity: 0.42;
}

.wctg-card--selected {
  opacity: 1;
}

.wctg-card--locked {
  opacity: 0.3;
  pointer-events: none;
}

.wctg-card-inner {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 100%;
}

.wctg-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 96px;
  padding: 0;
  background: transparent;
}

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

.wctg-card-body {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 100%;
}

.wctg-copy {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 100%;
  text-align: center;
}

.wctg-status {
  display: inline-block;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(200, 111, 111, 0.12);
  color: var(--wctg-danger);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.wctg-product-title {
  display: -webkit-box;
  margin: 0;
  max-width: 100%;
  min-height: 2.4em;
  color: var(--wctg-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.wctg-price-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 11px;
}

.wctg-price-original {
  color: var(--wctg-ink);
  font-size: 16px;
  line-height: 19px;
  text-decoration: line-through;
}

.wctg-price-promo {
  color: var(--wctg-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 19px;
}

.wctg-actions {
  display: flex;
  justify-content: center;
  width: 100%;
}

.wctg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 8px 26px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: var(--wctg-mint);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.wctg-button:hover {
  background: var(--wctg-mint-strong);
}

.wctg-button:focus-visible {
  outline: 2px solid var(--wctg-mint-strong);
  outline-offset: 3px;
}

.wctg-button.is-disabled,
.wctg-button[disabled] {
  background: rgba(0, 0, 0, 0.15);
  border-color: transparent;
  color: rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
}

.wctg-button.is-loading {
  position: relative;
  background: var(--wctg-mint);
  color: transparent;
  cursor: progress;
  pointer-events: none;
}

.wctg-button.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-top-color: #fff;
  border-radius: 999px;
  animation: wctg-spin 0.7s linear infinite;
}

/* ----- Gift item marker inside WC cart table ----------------------------- */
.wctg-cart-item--gift {
  background: linear-gradient(90deg, rgba(221, 247, 230, 0.65) 0%, rgba(221, 247, 230, 0.35) 60%, rgba(221, 247, 230, 0.18) 100%);
}

.wctg-cart-item--gift td {
  vertical-align: middle;
}

.wctg-cart-item--gift > td:first-child {
  box-shadow: inset 4px 0 0 var(--wctg-mint);
}

.wctg-cart-item--gift .product-quantity .quantity {
  display: none;
}

.wctg-gift-thumb-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.wctg-gift-thumb-wrap img {
  display: block;
}

.wctg-gift-stamp {
  position: absolute;
  top: -8px;
  right: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--wctg-mint);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 3px 10px rgba(31, 108, 71, 0.35);
  border: 2px solid #fff;
  z-index: 2;
  pointer-events: none;
}

.wctg-cart-item__qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 6px 10px;
  border-radius: 6px;
  background: #ddf7e6;
  color: #2c6841;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 980px) {
  .wctg-shell {
    padding-right: 28px;
    padding-left: 28px;
  }
  .wctg-header {
    flex-direction: column;
  }
  .wctg-header-copy {
    flex: auto;
  }
  .wctg-thresholds {
    max-width: none;
    width: 100%;
    flex: auto;
  }
}
@media (max-width: 767px) {
  .wctg-section {
    margin-top: 46px;
  }
  .wctg-shell {
    padding: 34px 20px 24px;
    border-radius: 10px;
  }
  .wctg-eyebrow {
    left: 20px;
  }
  .wctg-thresholds {
    padding-top: 4px;
  }
  .wctg-thresholds-track {
    top: 11px;
  }
  .wctg-threshold-list {
    grid-template-columns: repeat(var(--wctg-count, 1), minmax(0, 1fr));
    gap: 10px;
  }
  .wctg-threshold {
    gap: 10px;
  }
  .wctg-threshold-dot {
    width: 15px;
    height: 15px;
  }
  .wctg-threshold-dot::before {
    inset: 3.5px;
  }
  .wctg-threshold--current .wctg-threshold-dot::before {
    inset: 0;
  }
  .wctg-threshold-check svg {
    width: 8px;
    height: 8px;
  }
  .wctg-threshold-title,
  .wctg-threshold-amount {
    font-size: 14px;
    line-height: 19px;
  }
  .wctg-threshold--current .wctg-threshold-title {
    font-size: 14px;
  }
  .wctg-grid {
    gap: 25px;
    padding: 4px 24px 14px 2px;
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 24px), transparent 100%);
  }
  .wctg-card {
    flex: 0 0 160px;
  }
  .wctg-image-wrap {
    width: 100%;
    height: 176px;
  }
  .wctg-button {
    width: 100%;
    padding: 8px 16px;
  }
  .wctg-cart-item--gift td {
    background: var(--wctg-mint);
  }
  .wctg-cart-item--gift td.product-remove, .wctg-cart-item--gift td.product-price, .wctg-cart-item--gift td.product-name, .wctg-cart-item--gift td.product-thumbnail {
    background-color: transparent !important;
  }
}
.wctg-mount:empty {
  display: none;
}