.indy-product-card {

  display: grid;

  overflow: hidden;

  border: 1px solid var(--indy-color-border);

  border-radius: var(--indy-radius-md);

  background: var(--indy-color-surface);

  box-shadow: var(--indy-shadow-sm);

  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;

}



.indy-product-card:hover {

  border-color: var(--indy-color-border);

  box-shadow: var(--indy-shadow-md);

  transform: translateY(-2px);

}



.indy-product-card__media {

  position: relative;

  display: grid;

  min-height: 190px;

  place-items: center;

  background:

    linear-gradient(180deg, var(--indy-color-surface), var(--indy-color-subtle));

}



.indy-product-card__badge {

  position: absolute;

  top: var(--indy-space-3);

  left: var(--indy-space-3);

  z-index: 1;

}



.indy-product-card__image {

  display: block;

  width: min(74%, 172px);

  max-height: 158px;

  object-fit: contain;

  filter: drop-shadow(0 18px 18px rgba(15, 45, 104, 0.14));

  transition: transform 180ms ease;

}



.indy-product-card:hover .indy-product-card__image {

  transform: translateY(-3px) scale(1.02);

}



.indy-product-card__body {

  display: grid;

  gap: 9px;

  padding: 14px;

}



.indy-product-card__brand {

  color: var(--color-primary);

  font-size: 0.7rem;

  font-weight: 900;

  text-transform: uppercase;

}



.indy-product-card .indy-h3 {

  font-size: 1.02rem;

  line-height: 1.18;

}



.indy-product-card__swatches {

  display: flex;

  align-items: center;

  gap: var(--indy-space-2);

  min-height: 28px;

}



.indy-product-card__swatch,

.indy-product-card__swatch-more {

  display: inline-grid;

  width: 24px;

  height: 24px;

  flex: 0 0 24px;

  place-items: center;

  border: 1px solid var(--indy-color-border);

  border-radius: var(--indy-radius-pill);

  box-sizing: border-box;

}



.indy-product-card__swatch {

  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);

}

.indy-product-card__swatch--button {
  padding: 0;
  cursor: pointer;
  background: var(--indy-color-surface);
}

.indy-product-card__swatch--button span {
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid var(--indy-color-surface);
  border-radius: inherit;
  background: var(--swatch-color, currentColor);
}

.indy-product-card__swatch--split span {
  background: linear-gradient(
    135deg,
    var(--swatch-color, currentColor) 0 49%,
    var(--indy-color-surface) 49% 51%,
    var(--swatch-color-secondary, var(--swatch-color, currentColor)) 51% 100%
  );
}

.indy-product-card__swatch--button:hover,
.indy-product-card__swatch--button:focus-visible,
.indy-product-card__swatch--button.is-active {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.indydtf-product-carousel__image--swapping {
  opacity: 0.42;
  transform: scale(0.985);
}



.indy-product-card__swatch--light {

  border-color: var(--indy-color-border);

}



.indy-product-card__swatch-more {

  background: var(--indy-color-surface);

  color: var(--indy-color-ink);

  font-size: 0.78rem;

  font-weight: 850;

  line-height: 1;

}



.indy-product-card .indy-small {

  display: -webkit-box;

  overflow: hidden;

  min-height: 2.45em;

  font-size: 0.78rem;

  line-height: 1.3;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;

}



.indy-product-card__actions {

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: var(--indy-space-2);

}



.indy-price {

  color: var(--indy-color-success);

  font-size: 1rem;

  font-weight: 950;

}



.indy-link {

  color: var(--color-primary);

  font-size: 0.82rem;

  font-weight: 850;

  text-decoration: none;

}



.indy-link:hover {

  color: var(--color-primary-dark);

  text-decoration: underline;

}

/* CP3I-HF1 - reusable commerce Product Recommendation Carousel. */
.indydtf-product-carousel {
  --indydtf-product-carousel-visible: 5;
  --indydtf-product-carousel-gap: var(--indy-space-4);
  clear: both;
  display: grid;
  gap: var(--indy-space-5);
  width: 100%;
  margin: var(--indy-space-10) 0 0;
}

.indydtf-product-carousel__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--indy-space-4);
}

.indydtf-product-carousel__heading {
  display: grid;
  gap: var(--indy-space-1);
}

.indydtf-product-carousel__controls {
  display: inline-flex;
  align-items: center;
  gap: var(--indy-space-2);
}

.indydtf-product-carousel__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.indydtf-product-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.indydtf-product-carousel__viewport:focus-visible {
  outline: 0;
  box-shadow: var(--indy-button-focus-ring);
}

.indydtf-product-carousel__track {
  display: grid;
  grid-auto-columns: calc((100% - ((var(--indydtf-product-carousel-visible) - 1) * var(--indydtf-product-carousel-gap))) / var(--indydtf-product-carousel-visible));
  grid-auto-flow: column;
  gap: var(--indydtf-product-carousel-gap);
}

.indydtf-product-carousel__slide {
  min-width: 0;
  scroll-snap-align: start;
}

.indydtf-product-carousel__card {
  height: 100%;
}

.indydtf-product-carousel .indy-product-card__media {
  height: 210px;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  place-items: stretch;
}

.indydtf-product-carousel .indy-product-card__image {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center top;
}

.indydtf-product-carousel__title-link {
  color: inherit;
  text-decoration: none;
}

.indydtf-product-carousel__title-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.indydtf-product-carousel__pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--indy-space-2);
}

.indydtf-product-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-pill);
  background: var(--indy-color-surface);
  cursor: pointer;
}

.indydtf-product-carousel__dot.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.indydtf-product-carousel__dot:focus-visible {
  outline: 0;
  box-shadow: var(--indy-button-focus-ring);
}

@media (min-width: 922px) {
  body.single-product.woocommerce div.product .indydtf-single-product-media,
  body.single-product.woocommerce-page div.product .indydtf-single-product-media {

    display: grid;

    position: relative;

    gap: var(--indy-space-5);

    min-width: 0;

    width: 45%;

    max-width: 45%;

    float: left;

    clear: left;

    box-sizing: border-box;

  }

  body.single-product.woocommerce div.product div.images,
  body.single-product.woocommerce-page div.product div.images,
  body.single-product.woocommerce div.product .woocommerce-product-gallery,
  body.single-product.woocommerce-page div.product .woocommerce-product-gallery {

    width: 40%;

    max-width: 40%;

    float: left;

  }

  body.single-product.woocommerce div.product .indydtf-single-product-media div.images,
  body.single-product.woocommerce-page div.product .indydtf-single-product-media div.images,
  body.single-product.woocommerce div.product .indydtf-single-product-media .woocommerce-product-gallery,
  body.single-product.woocommerce-page div.product .indydtf-single-product-media .woocommerce-product-gallery {

    width: 100%;

    max-width: 100%;

    float: none;

  }

  body.single-product.woocommerce div.product .indydtf-single-product-media div.woocommerce-product-gallery.images,
  body.single-product.woocommerce-page div.product .indydtf-single-product-media div.woocommerce-product-gallery.images {

    float: none;

    width: 100%;

    max-width: 100%;

    box-sizing: border-box;

  }

  body.single-product.woocommerce #content .ast-woocommerce-container div.product .indydtf-single-product-media div.woocommerce-product-gallery.images,
  body.single-product.woocommerce .ast-woocommerce-container div.product .indydtf-single-product-media div.woocommerce-product-gallery.images,
  body.single-product.woocommerce-page #content .ast-woocommerce-container div.product .indydtf-single-product-media div.woocommerce-product-gallery.images,
  body.single-product.woocommerce-page .ast-woocommerce-container div.product .indydtf-single-product-media div.woocommerce-product-gallery.images {

    float: none;

    width: 100%;

    max-width: 100%;

    box-sizing: border-box;

  }

  body.single-product.woocommerce div.product .indydtf-single-product-media .woocommerce-product-gallery__image img,
  body.single-product.woocommerce-page div.product .indydtf-single-product-media .woocommerce-product-gallery__image img {

    display: block;

    width: 100%;

    height: auto;

  }

  body.single-product.woocommerce div.product .indydtf-single-product-media .flex-control-thumbs,
  body.single-product.woocommerce-page div.product .indydtf-single-product-media .flex-control-thumbs {

    width: 100%;

    max-width: 100%;

    box-sizing: border-box;

  }

  body.single-product.woocommerce div.product div.summary,
  body.single-product.woocommerce-page div.product div.summary,
  body.single-product.woocommerce div.product .summary.entry-summary,
  body.single-product.woocommerce-page div.product .summary.entry-summary {

    width: 55%;

    max-width: 55%;

    float: right;

    clear: none;

    box-sizing: border-box;

    padding-left: 24px;

  }

  .woocommerce div.product .ast-woocommerce-container div.product div.summary,
  .woocommerce-page div.product .ast-woocommerce-container div.product div.summary,
  .woocommerce #content .ast-woocommerce-container div.product div.summary,
  .woocommerce-page #content .ast-woocommerce-container div.product div.summary {

    width: 100%;

  }

  body.single-product.woocommerce div.product div.summary > *,
  body.single-product.woocommerce-page div.product div.summary > *,
  body.single-product.woocommerce div.product .summary.entry-summary > *,
  body.single-product.woocommerce-page div.product .summary.entry-summary > * {

    max-width: none;

    box-sizing: border-box;

  }

  body.single-product.woocommerce div.product form.cart,
  body.single-product.woocommerce-page div.product form.cart,
  body.single-product.woocommerce div.product form.variations_form,
  body.single-product.woocommerce-page div.product form.variations_form,
  body.single-product.woocommerce div.product .variations_form,
  body.single-product.woocommerce-page div.product .variations_form {

    width: 100%;

    max-width: none;

    box-sizing: border-box;

  }

  body.single-product.woocommerce div.product table.variations,
  body.single-product.woocommerce-page div.product table.variations,
  body.single-product.woocommerce div.product .variations,
  body.single-product.woocommerce-page div.product .variations {

    width: 100%;

    max-width: none;

    box-sizing: border-box;

  }

  body.single-product.woocommerce div.product table.variations select,
  body.single-product.woocommerce-page div.product table.variations select,
  body.single-product.woocommerce div.product .variations select,
  body.single-product.woocommerce-page div.product .variations select {

    width: 100%;

    max-width: none;

    box-sizing: border-box;

  }

  body.single-product.woocommerce div.product .single_variation_wrap,
  body.single-product.woocommerce-page div.product .single_variation_wrap,
  body.single-product.woocommerce div.product .woocommerce-variation-add-to-cart,
  body.single-product.woocommerce-page div.product .woocommerce-variation-add-to-cart {

    width: 100%;

    max-width: none;

    box-sizing: border-box;

  }

  body.single-product.woocommerce div.product tr.indydtf-native-color-row,
  body.single-product.woocommerce-page div.product tr.indydtf-native-color-row,
  body.single-product.woocommerce div.product .indydtf-native-color-row,
  body.single-product.woocommerce-page div.product .indydtf-native-color-row {

    display: none;

  }

  body.single-product.woocommerce div.product tr.indydtf-color-selector-row td,
  body.single-product.woocommerce-page div.product tr.indydtf-color-selector-row td {

    display: block;

    width: 100%;

    padding: 0 0 14px;

    border: 0;

  }

  body.single-product.woocommerce div.product .indydtf-color-selector,
  body.single-product.woocommerce-page div.product .indydtf-color-selector {

    display: grid;

    width: 100%;

    gap: 10px;

  }

  body.single-product.woocommerce div.product .indydtf-color-selector__header,
  body.single-product.woocommerce-page div.product .indydtf-color-selector__header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 14px;

  }

  body.single-product.woocommerce div.product .indydtf-color-selector__label,
  body.single-product.woocommerce-page div.product .indydtf-color-selector__label {

    margin: 0;

    color: var(--indy-color-ink);

    font-size: 0.95rem;

    line-height: 1.2;

  }

  body.single-product.woocommerce div.product .indydtf-color-selector__label strong,
  body.single-product.woocommerce-page div.product .indydtf-color-selector__label strong {

    font-size: 1.05rem;

    font-weight: 950;

  }

  body.single-product.woocommerce div.product .indydtf-color-selector__view-all,
  body.single-product.woocommerce-page div.product .indydtf-color-selector__view-all {

    padding: 0;

    border: 0;

    background: transparent;

    color: var(--color-primary);

    font-size: 0.9rem;

    font-weight: 850;

    text-decoration: none;

  }

  body.single-product.woocommerce div.product .indydtf-color-selector__rail,
  body.single-product.woocommerce-page div.product .indydtf-color-selector__rail {

    display: grid;

    grid-auto-columns: minmax(86px, 1fr);

    grid-auto-flow: column;

    gap: 14px;

    overflow-x: auto;

    overscroll-behavior-x: contain;

    padding: 0 0 8px;

    scrollbar-color: var(--indy-color-muted) var(--indy-color-subtle);

    scrollbar-width: thin;

  }

  body.single-product.woocommerce div.product .indydtf-color-card,
  body.single-product.woocommerce-page div.product .indydtf-color-card {

    display: grid;

    min-width: 86px;

    gap: 5px;

    align-content: start;

    padding: 0 0 7px;

    border: 1px solid transparent;

    border-radius: 4px;

    background: var(--indy-color-surface);

    color: var(--indy-color-ink);

    text-align: center;

    cursor: pointer;

  }

  body.single-product.woocommerce div.product .indydtf-color-card.is-active,
  body.single-product.woocommerce-page div.product .indydtf-color-card.is-active {

    border-color: var(--color-primary);

    box-shadow: 0 0 0 1px var(--color-primary);

  }

  body.single-product.woocommerce div.product .indydtf-color-card__media,
  body.single-product.woocommerce-page div.product .indydtf-color-card__media {

    display: grid;

    height: 126px;

    place-items: end center;

    overflow: hidden;

    border-radius: 3px 3px 0 0;

    background: var(--indy-color-surface-soft);

  }

  body.single-product.woocommerce div.product .indydtf-color-card__media img,
  body.single-product.woocommerce-page div.product .indydtf-color-card__media img {

    width: 100%;

    height: 126px;

    object-fit: contain;

  }

  body.single-product.woocommerce div.product .indydtf-color-card__swatch,
  body.single-product.woocommerce-page div.product .indydtf-color-card__swatch {

    display: block;

    width: 42px;

    height: 42px;

    margin-bottom: 36px;

    border: 1px solid var(--indy-color-border);

    border-radius: 50%;

  }

  body.single-product.woocommerce div.product .indydtf-color-card__name,
  body.single-product.woocommerce-page div.product .indydtf-color-card__name {

    overflow: hidden;

    padding: 0 4px;

    color: var(--indy-color-ink);

    font-size: 0.84rem;

    font-weight: 850;

    line-height: 1.15;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  body.single-product.woocommerce div.product .indydtf-color-card__price,
  body.single-product.woocommerce-page div.product .indydtf-color-card__price {

    color: var(--indy-color-danger);

    font-size: 0.82rem;

    font-weight: 900;

    line-height: 1.1;

  }

  body.single-product.woocommerce div.product .indydtf-color-card__material,
  body.single-product.woocommerce-page div.product .indydtf-color-card__material {

    min-height: 2.3em;

    padding: 0 4px;

    color: var(--indy-color-ink);

    font-size: 0.78rem;

    line-height: 1.15;

  }

  body.single-product.woocommerce div.product .woocommerce-tabs,
  body.single-product.woocommerce-page div.product .woocommerce-tabs,
  body.single-product.woocommerce div.product .indydtf-product-information,
  body.single-product.woocommerce-page div.product .indydtf-product-information,
  body.single-product.woocommerce div.product .related,
  body.single-product.woocommerce-page div.product .related,
  body.single-product.woocommerce div.product .upsells,
  body.single-product.woocommerce-page div.product .upsells {

    clear: both;

    width: 100%;

  }

  body.single-product.woocommerce div.product div.images img,
  body.single-product.woocommerce-page div.product div.images img {

    width: 100%;

    max-height: 620px;

    object-fit: contain;

  }

  body.single-product.woocommerce div.product .indydtf-bulk-pricing,
  body.single-product.woocommerce-page div.product .indydtf-bulk-pricing {

    float: none;

    clear: none;

    width: 100%;

    max-width: 100%;

  }

}

/* CP3A - responsive color-card selector polish. */
body.single-product.woocommerce div.product tr.indydtf-native-color-row,
body.single-product.woocommerce-page div.product tr.indydtf-native-color-row,
body.single-product.woocommerce div.product .indydtf-native-color-row,
body.single-product.woocommerce-page div.product .indydtf-native-color-row,
body.single-product.woocommerce div.product tr.indydtf-native-size-row,
body.single-product.woocommerce-page div.product tr.indydtf-native-size-row,
body.single-product.woocommerce div.product .indydtf-native-size-row,
body.single-product.woocommerce-page div.product .indydtf-native-size-row {
  display: none;
}

body.single-product.woocommerce div.product form.indydtf-multi-size-product .single_variation_wrap,
body.single-product.woocommerce-page div.product form.indydtf-multi-size-product .single_variation_wrap {
  display: none;
}

body.single-product.woocommerce div.product form.indydtf-dtf-purchase-form table.variations,
body.single-product.woocommerce-page div.product form.indydtf-dtf-purchase-form table.variations,
body.single-product.woocommerce div.product form.indydtf-dtf-purchase-form .single_variation,
body.single-product.woocommerce-page div.product form.indydtf-dtf-purchase-form .single_variation,
body.single-product.woocommerce div.product form.indydtf-dtf-purchase-form .woocommerce-variation-add-to-cart,
body.single-product.woocommerce-page div.product form.indydtf-dtf-purchase-form .woocommerce-variation-add-to-cart,
body.single-product.woocommerce div.product form.indydtf-dtf-purchase-form .reset_variations,
body.single-product.woocommerce-page div.product form.indydtf-dtf-purchase-form .reset_variations {
  display: none !important;
}

body.single-product.postid-51736 div.product .summary a[href*="size-guide"],
body.single-product.postid-51736 div.product .summary a[href*="size_guide"] {
  display: none !important;
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing {
  clear: left;
  width: 100%;
  margin: var(--indy-space-5) 0 var(--indy-space-6);
  box-sizing: border-box;
}

body.single-product.woocommerce div.product .indydtf-print-pricing,
body.single-product.woocommerce-page div.product .indydtf-print-pricing {
  clear: left;
  width: 100%;
  margin: 0 0 var(--indy-space-6);
  box-sizing: border-box;
  border-color: #c7d7f2;
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 58%, rgba(255, 248, 225, 0.75) 100%);
  box-shadow: 0 14px 34px rgba(15, 45, 104, 0.09);
  overflow: hidden;
  position: relative;
}

body.single-product.woocommerce div.product .indydtf-print-pricing::before,
body.single-product.woocommerce-page div.product .indydtf-print-pricing::before {
  background: linear-gradient(90deg, #f5b400 0%, #1f6ed4 100%);
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

body.single-product.woocommerce div.product .indydtf-print-pricing[hidden],
body.single-product.woocommerce-page div.product .indydtf-print-pricing[hidden] {
  display: none;
}

body.single-product.indydtf-rolling-gang-sheet-product div.product .summary a[href*="size-guide"],
body.single-product.indydtf-rolling-gang-sheet-product div.product .summary a[href*="size_guide"] {
  display: none !important;
}

body.single-product.woocommerce div.product .indydtf-rolling-product-panel,
body.single-product.woocommerce-page div.product .indydtf-rolling-product-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: var(--indy-space-5) 0 var(--indy-space-6);
  overflow: hidden;
  border-color: rgba(199, 215, 242, 0.95);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.98) 62%, rgba(255, 251, 235, 0.72) 100%);
  box-shadow: 0 16px 34px rgba(15, 45, 104, 0.09);
}

body.single-product.woocommerce div.product .indydtf-rolling-product-panel__item,
body.single-product.woocommerce-page div.product .indydtf-rolling-product-panel__item {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 8px;
  padding: 22px 18px;
  text-align: center;
}

body.single-product.woocommerce div.product .indydtf-rolling-product-panel__item + .indydtf-rolling-product-panel__item,
body.single-product.woocommerce-page div.product .indydtf-rolling-product-panel__item + .indydtf-rolling-product-panel__item {
  border-left: 1px solid rgba(199, 215, 242, 0.72);
}

body.single-product.woocommerce div.product .indydtf-rolling-product-panel__icon,
body.single-product.woocommerce-page div.product .indydtf-rolling-product-panel__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(31, 110, 212, 0.18);
  border-radius: 14px;
  background: #fff;
  color: #1f6ed4;
  box-shadow: 0 12px 24px rgba(15, 45, 104, 0.08);
}

body.single-product.woocommerce div.product .indydtf-rolling-product-panel__icon svg,
body.single-product.woocommerce-page div.product .indydtf-rolling-product-panel__icon svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.single-product.woocommerce div.product .indydtf-rolling-product-panel__item:nth-child(4) .indydtf-rolling-product-panel__icon,
body.single-product.woocommerce-page div.product .indydtf-rolling-product-panel__item:nth-child(4) .indydtf-rolling-product-panel__icon {
  color: #e14c3f;
}

body.single-product.woocommerce div.product .indydtf-rolling-product-panel__item strong,
body.single-product.woocommerce-page div.product .indydtf-rolling-product-panel__item strong {
  color: var(--color-primary-dark);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.2;
}

body.single-product.woocommerce div.product .indydtf-rolling-product-panel__item small,
body.single-product.woocommerce-page div.product .indydtf-rolling-product-panel__item small {
  max-width: 18ch;
  color: var(--indy-color-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

body.single-product.indydtf-rolling-gang-sheet-product div.product .indydtf-dtf-purchase {
  border-color: rgba(245, 180, 0, 0.6);
  background:
    linear-gradient(135deg, #ffffff 0%, #f8fbff 52%, #fff7da 100%);
}

body.single-product.indydtf-rolling-gang-sheet-product div.product .indydtf-dtf-purchase__eyebrow {
  background: rgba(245, 180, 0, 0.16);
  color: #a16207;
}

body.single-product.indydtf-rolling-gang-sheet-product div.product .indydtf-dtf-purchase,
body.single-product.indydtf-rolling-gang-sheet-product div.product .indydtf-dtf-purchase__header,
body.single-product.indydtf-rolling-gang-sheet-product div.product .indydtf-dtf-purchase__header > div {
  min-width: 0;
  max-width: 100%;
}

body.single-product.indydtf-rolling-gang-sheet-product div.product .indydtf-dtf-purchase h2,
body.single-product.indydtf-rolling-gang-sheet-product div.product .indydtf-dtf-purchase p {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
}

body.single-product.indydtf-rolling-gang-sheet-product div.product .indydtf-dtf-purchase__checkout {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  width: 100%;
}

body.single-product.indydtf-rolling-gang-sheet-product div.product .indydtf-dtf-purchase__button {
  width: auto;
  min-width: max-content;
  max-width: 100%;
  border-color: var(--color-secondary);
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  white-space: nowrap;
  overflow: visible;
}

body.single-product.indydtf-rolling-gang-sheet-product div.product .indydtf-dtf-purchase__button:hover,
body.single-product.indydtf-rolling-gang-sheet-product div.product .indydtf-dtf-purchase__button:focus {
  border-color: var(--color-secondary-dark);
  background: var(--color-secondary-dark);
  color: var(--color-primary-dark);
}

body.single-product.indydtf-rolling-gang-sheet-product div.product .indydtf-dtf-purchase__button span {
  min-width: 0;
  overflow: visible;
  text-overflow: clip;
}


@media (max-width: 767px) {
  body.single-product.woocommerce div.product .indydtf-rolling-product-panel,
  body.single-product.woocommerce-page div.product .indydtf-rolling-product-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.single-product.woocommerce div.product .indydtf-rolling-product-panel__item,
  body.single-product.woocommerce-page div.product .indydtf-rolling-product-panel__item {
    padding: 18px 14px;
  }

  body.single-product.woocommerce div.product .indydtf-rolling-product-panel__item:nth-child(odd),
  body.single-product.woocommerce-page div.product .indydtf-rolling-product-panel__item:nth-child(odd) {
    border-left: 0;
  }

  body.single-product.woocommerce div.product .indydtf-rolling-product-panel__item:nth-child(n+3),
  body.single-product.woocommerce-page div.product .indydtf-rolling-product-panel__item:nth-child(n+3) {
    border-top: 1px solid rgba(199, 215, 242, 0.72);
  }
}

@media (max-width: 480px) {
  body.single-product.woocommerce div.product .indydtf-rolling-product-panel,
  body.single-product.woocommerce-page div.product .indydtf-rolling-product-panel {
    grid-template-columns: 1fr;
  }

  body.single-product.woocommerce div.product .indydtf-rolling-product-panel__item + .indydtf-rolling-product-panel__item,
  body.single-product.woocommerce-page div.product .indydtf-rolling-product-panel__item + .indydtf-rolling-product-panel__item {
    border-top: 1px solid rgba(199, 215, 242, 0.72);
    border-left: 0;
  }
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__body,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__body,
body.single-product.woocommerce div.product .indydtf-print-pricing__body,
body.single-product.woocommerce-page div.product .indydtf-print-pricing__body {
  display: grid;
  gap: var(--indy-space-4);
  padding: var(--indy-space-5);
}

body.single-product.woocommerce div.product .indydtf-print-pricing__body,
body.single-product.woocommerce-page div.product .indydtf-print-pricing__body {
  padding-top: calc(var(--indy-space-5) + 2px);
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__header,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__header,
body.single-product.woocommerce div.product .indydtf-print-pricing__header,
body.single-product.woocommerce-page div.product .indydtf-print-pricing__header {
  display: grid;
  gap: var(--indy-space-1);
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__header h2,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__header h2,
body.single-product.woocommerce div.product .indydtf-print-pricing__header h2,
body.single-product.woocommerce-page div.product .indydtf-print-pricing__header h2 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.18;
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__header p,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__header p,
body.single-product.woocommerce div.product .indydtf-print-pricing__header p,
body.single-product.woocommerce-page div.product .indydtf-print-pricing__header p {
  margin: 0;
  color: var(--indy-color-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__tiers,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__tiers {
  display: grid;
  gap: var(--indy-space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__tier,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__tier {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--indy-space-3);
  align-items: center;
  min-width: 0;
  padding: var(--indy-space-3);
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-sm);
  background: var(--indy-color-surface-soft);
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing.is-qualified .indydtf-bulk-pricing__tier,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing.is-qualified .indydtf-bulk-pricing__tier,
body.single-product.woocommerce div.product .indydtf-bulk-pricing.is-best-tier .indydtf-bulk-pricing__tier,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing.is-best-tier .indydtf-bulk-pricing__tier {
  border-color: var(--indy-color-success);
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__tier.is-active,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__tier.is-active {
  border-color: var(--indy-color-success);
  background: #ecfdf3;
  box-shadow: inset 3px 0 0 var(--indy-color-success);
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__tier.is-active .indydtf-bulk-pricing__tier-threshold,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__tier.is-active .indydtf-bulk-pricing__tier-threshold,
body.single-product.woocommerce div.product .indydtf-bulk-pricing__tier.is-active .indydtf-bulk-pricing__tier-discount,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__tier.is-active .indydtf-bulk-pricing__tier-discount {
  color: #047857;
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__tier-threshold,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__tier-threshold {
  min-width: 0;
  color: var(--indy-color-ink);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.25;
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__tier-discount,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__tier-discount {
  color: var(--indy-color-success);
  font-size: 0.84rem;
  line-height: 1.25;
  white-space: nowrap;
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__status,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__status {
  display: grid;
  gap: var(--indy-space-2);
  padding: var(--indy-space-3);
  border: 1px solid rgba(217, 226, 239, 0.94);
  border-radius: var(--indy-radius-sm);
  background: var(--indy-color-surface);
}

body.single-product.woocommerce div.product .indydtf-print-pricing__status,
body.single-product.woocommerce-page div.product .indydtf-print-pricing__status {
  display: grid;
  gap: var(--indy-space-2);
  padding: 12px;
  border: 1px solid rgba(31, 110, 212, 0.18);
  border-radius: var(--indy-radius-sm);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing.is-loading .indydtf-bulk-pricing__status,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing.is-loading .indydtf-bulk-pricing__status {
  border-color: var(--indy-color-border);
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing.is-unavailable .indydtf-bulk-pricing__status,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing.is-unavailable .indydtf-bulk-pricing__status {
  background: var(--indy-color-surface-soft);
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing.has-error .indydtf-bulk-pricing__status,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing.has-error .indydtf-bulk-pricing__status {
  border-color: var(--indy-color-danger);
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__status-row,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__status-row,
body.single-product.woocommerce div.product .indydtf-bulk-pricing__savings-row,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__savings-row,
body.single-product.woocommerce div.product .indydtf-print-pricing__status-row,
body.single-product.woocommerce-page div.product .indydtf-print-pricing__status-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--indy-space-3);
  min-width: 0;
}

body.single-product.woocommerce div.product .indydtf-print-pricing__status-row,
body.single-product.woocommerce-page div.product .indydtf-print-pricing__status-row {
  padding: 8px 10px;
  border-radius: 6px;
}

body.single-product.woocommerce div.product .indydtf-print-pricing__status-row:nth-child(3),
body.single-product.woocommerce-page div.product .indydtf-print-pricing__status-row:nth-child(3) {
  border: 1px solid rgba(22, 101, 52, 0.2);
  background: #ecfdf3;
  box-shadow: inset 3px 0 0 #16a34a;
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__status-row span,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__status-row span,
body.single-product.woocommerce div.product .indydtf-bulk-pricing__savings-row span,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__savings-row span,
body.single-product.woocommerce div.product .indydtf-print-pricing__status-row span,
body.single-product.woocommerce-page div.product .indydtf-print-pricing__status-row span {
  color: var(--indy-color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__status-row strong,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__status-row strong,
body.single-product.woocommerce div.product .indydtf-print-pricing__status-row strong,
body.single-product.woocommerce-page div.product .indydtf-print-pricing__status-row strong {
  color: var(--indy-color-ink);
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
}

body.single-product.woocommerce div.product .indydtf-print-pricing__status-row:nth-child(3) span,
body.single-product.woocommerce-page div.product .indydtf-print-pricing__status-row:nth-child(3) span,
body.single-product.woocommerce div.product .indydtf-print-pricing__status-row:nth-child(3) strong,
body.single-product.woocommerce-page div.product .indydtf-print-pricing__status-row:nth-child(3) strong {
  color: #047857;
}

body.single-product.woocommerce div.product .indydtf-print-pricing__status-row:nth-child(3) strong,
body.single-product.woocommerce-page div.product .indydtf-print-pricing__status-row:nth-child(3) strong {
  font-size: 1.08rem;
  font-weight: 900;
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__status p,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__status p,
body.single-product.woocommerce div.product .indydtf-print-pricing__status p,
body.single-product.woocommerce-page div.product .indydtf-print-pricing__status p {
  margin: 0;
  color: var(--indy-color-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

body.single-product.woocommerce div.product .indydtf-print-pricing__status p,
body.single-product.woocommerce-page div.product .indydtf-print-pricing__status p {
  margin-top: 2px;
  padding: 8px 10px;
  border: 1px solid rgba(245, 180, 0, 0.3);
  border-radius: 6px;
  background: rgba(255, 248, 225, 0.72);
  color: #4b5563;
  font-weight: 750;
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__message,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__message {
  padding: 8px 10px;
  border: 1px solid #bfdbfe;
  border-radius: var(--indy-radius-sm);
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 850;
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing.is-qualified .indydtf-bulk-pricing__message,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing.is-qualified .indydtf-bulk-pricing__message,
body.single-product.woocommerce div.product .indydtf-bulk-pricing.is-best-tier .indydtf-bulk-pricing__message,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing.is-best-tier .indydtf-bulk-pricing__message {
  border-color: #bbf7d0;
  background: #ecfdf3;
  color: #047857;
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__savings,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__savings {
  display: grid;
  gap: var(--indy-space-2);
  padding-top: var(--indy-space-3);
  border-top: 1px solid var(--indy-color-border);
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__savings-row strong,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__savings-row strong {
  color: var(--color-primary-dark);
  font-size: 0.94rem;
  line-height: 1.2;
  white-space: nowrap;
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__savings-row--total,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__savings-row--total {
  padding-top: var(--indy-space-2);
  border-top: 1px solid rgba(217, 226, 239, 0.94);
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing__savings-row--total span,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__savings-row--total span,
body.single-product.woocommerce div.product .indydtf-bulk-pricing__savings-row--total strong,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing__savings-row--total strong {
  font-size: 0.98rem;
  font-weight: 900;
}

body.single-product.woocommerce div.product .indydtf-bulk-pricing.is-qualified .indydtf-bulk-pricing__savings-row strong,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing.is-qualified .indydtf-bulk-pricing__savings-row strong,
body.single-product.woocommerce div.product .indydtf-bulk-pricing.is-best-tier .indydtf-bulk-pricing__savings-row strong,
body.single-product.woocommerce-page div.product .indydtf-bulk-pricing.is-best-tier .indydtf-bulk-pricing__savings-row strong {
  color: var(--indy-color-success);
}

body.single-product.woocommerce div.product .indydtf-product-information,
body.single-product.woocommerce-page div.product .indydtf-product-information {
  clear: both;
  width: 100%;
  margin: var(--indy-space-8) 0 0;
}

body.single-product.woocommerce div.product .indydtf-product-information-tabs,
body.single-product.woocommerce-page div.product .indydtf-product-information-tabs {
  width: 100%;
}

body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel,
body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel {
  min-width: 0;
}

body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel .indydtf-size-guide__how,
body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel .indydtf-size-guide__how {
  grid-template-columns: minmax(220px, 3fr) minmax(0, 7fr);
  gap: var(--indy-space-5);
}

body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel .indydtf-size-guide__how-media,
body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel .indydtf-size-guide__how-media {
  min-width: 0;
}

body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel .indydtf-size-guide__how-copy,
body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel .indydtf-size-guide__how-copy {
  min-width: 0;
}

body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel > h2:first-child,
body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel > h2:first-child {
  margin: 0 0 var(--indy-space-4);
  color: var(--color-primary-dark);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
}

body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel p,
body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel p,
body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel li,
body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel li {
  color: var(--indy-color-ink);
  line-height: 1.55;
}

body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel table,
body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel .woocommerce-product-attributes th,
body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel .woocommerce-product-attributes th,
body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel .woocommerce-product-attributes td,
body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel .woocommerce-product-attributes td {
  padding: var(--indy-space-4);
  border-color: var(--indy-color-border);
  vertical-align: top;
}

body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel .woocommerce-product-attributes th,
body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel .woocommerce-product-attributes th {
  width: min(34%, 220px);
  color: var(--color-primary-dark);
  font-weight: 850;
}

body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel .woocommerce-product-attributes td p,
body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel .woocommerce-product-attributes td p {
  margin: 0;
}

body.single-product.woocommerce div.product .indydtf-print-size-guide,
body.single-product.woocommerce-page div.product .indydtf-print-size-guide {
  display: grid;
  gap: var(--indy-space-4);
  max-width: 980px;
}

body.single-product.woocommerce div.product .indydtf-print-size-guide__intro p,
body.single-product.woocommerce-page div.product .indydtf-print-size-guide__intro p {
  margin: 0;
}

body.single-product.woocommerce div.product .indydtf-print-size-guide__media,
body.single-product.woocommerce-page div.product .indydtf-print-size-guide__media {
  min-width: 0;
}

body.single-product.woocommerce div.product .indydtf-print-size-guide__media img,
body.single-product.woocommerce-page div.product .indydtf-print-size-guide__media img {
  --indydtf-print-guide-image-bg: #f6f7f9;

  display: block;
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: contain;
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-md);
  background: var(--indydtf-print-guide-image-bg);
}

body.single-product.woocommerce div.product .indydtf-print-size-guide__placeholder,
body.single-product.woocommerce-page div.product .indydtf-print-size-guide__placeholder {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: #f7f9fc;
  border: 1px dashed #b8c5d8;
  border-radius: var(--indy-radius-md);
  color: var(--color-primary-dark);
  display: grid;
  justify-items: center;
  min-height: 150px;
  padding: var(--indy-space-5);
  text-align: center;
}

body.single-product.woocommerce div.product .indydtf-print-size-guide__placeholder span,
body.single-product.woocommerce-page div.product .indydtf-print-size-guide__placeholder span {
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.2;
}

body.single-product.woocommerce div.product .indydtf-print-size-guide__placeholder small,
body.single-product.woocommerce-page div.product .indydtf-print-size-guide__placeholder small {
  color: var(--indy-color-muted);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

body.single-product.woocommerce div.product .indydtf-print-size-guide__table-wrap,
body.single-product.woocommerce-page div.product .indydtf-print-size-guide__table-wrap {
  max-height: 360px;
  overflow: auto;
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-md);
  scrollbar-color: var(--indy-color-muted) var(--indy-color-subtle);
  scrollbar-width: thin;
}

body.single-product.woocommerce div.product .indydtf-print-size-guide__table-wrap:focus-visible,
body.single-product.woocommerce-page div.product .indydtf-print-size-guide__table-wrap:focus-visible {
  outline: none;
  box-shadow: var(--indy-button-focus-ring);
}

body.single-product.woocommerce div.product .indydtf-print-size-guide__table-wrap::-webkit-scrollbar,
body.single-product.woocommerce-page div.product .indydtf-print-size-guide__table-wrap::-webkit-scrollbar {
  height: 7px;
  width: 7px;
}

body.single-product.woocommerce div.product .indydtf-print-size-guide__table-wrap::-webkit-scrollbar-track,
body.single-product.woocommerce-page div.product .indydtf-print-size-guide__table-wrap::-webkit-scrollbar-track {
  background: var(--indy-color-subtle);
  border-radius: var(--indy-radius-pill);
}

body.single-product.woocommerce div.product .indydtf-print-size-guide__table-wrap::-webkit-scrollbar-thumb,
body.single-product.woocommerce-page div.product .indydtf-print-size-guide__table-wrap::-webkit-scrollbar-thumb {
  background: var(--indy-color-muted);
  border-radius: var(--indy-radius-pill);
}

body.single-product.woocommerce div.product .indydtf-print-size-guide__groups,
body.single-product.woocommerce-page div.product .indydtf-print-size-guide__groups {
  gap: var(--indy-space-3);
}

body.single-product.woocommerce div.product .indydtf-print-size-guide__placements,
body.single-product.woocommerce-page div.product .indydtf-print-size-guide__placements {
  gap: var(--indy-space-4);
}

body.single-product.woocommerce div.product .indydtf-print-size-guide__placement-panel,
body.single-product.woocommerce-page div.product .indydtf-print-size-guide__placement-panel {
  padding: 0;
}

body.single-product.woocommerce div.product .indydtf-print-size-guide__group-panel,
body.single-product.woocommerce-page div.product .indydtf-print-size-guide__group-panel {
  padding: 0;
}

body.single-product.woocommerce div.product .indydtf-print-size-guide__layout,
body.single-product.woocommerce-page div.product .indydtf-print-size-guide__layout {
  align-items: start;
  display: grid;
  gap: var(--indy-space-4);
  grid-template-columns: minmax(220px, 2fr) minmax(300px, 3fr);
}

body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel .indydtf-print-size-guide__table th,
body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel .indydtf-print-size-guide__table th,
body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel .indydtf-print-size-guide__table td,
body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel .indydtf-print-size-guide__table td {
  border-bottom: 1px solid var(--indy-color-border);
  padding: 9px 14px;
  text-align: left;
  white-space: nowrap;
}

body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel .indydtf-print-size-guide__table thead th,
body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel .indydtf-print-size-guide__table thead th {
  background: #f3f6fb;
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 850;
  position: sticky;
  top: 0;
  z-index: 1;
  text-transform: uppercase;
}

body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel .indydtf-print-size-guide__table tbody th,
body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel .indydtf-print-size-guide__table tbody th {
  color: var(--color-primary-dark);
  font-weight: 800;
}

@media (max-width: 767px) {
  body.single-product.woocommerce div.product .indydtf-print-size-guide__layout,
  body.single-product.woocommerce-page div.product .indydtf-print-size-guide__layout {
    grid-template-columns: 1fr;
  }

  body.single-product.woocommerce div.product .indydtf-print-size-guide__table-wrap,
  body.single-product.woocommerce-page div.product .indydtf-print-size-guide__table-wrap {
    max-height: 300px;
  }
}

body.single-product.woocommerce div.product .indydtf-product-attribute-colors,
body.single-product.woocommerce-page div.product .indydtf-product-attribute-colors {
  display: flex;
  flex-wrap: wrap;
  gap: var(--indy-space-2) var(--indy-space-4);
  align-items: center;
}

body.single-product.woocommerce div.product .indydtf-product-attribute-color,
body.single-product.woocommerce-page div.product .indydtf-product-attribute-color {
  display: inline-flex;
  align-items: center;
  gap: var(--indy-space-2);
  min-width: 0;
  color: var(--indy-color-ink);
  line-height: 1.35;
}

body.single-product.woocommerce div.product .indydtf-product-attribute-color__swatch,
body.single-product.woocommerce-page div.product .indydtf-product-attribute-color__swatch {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border: 1px solid transparent;
  border-radius: var(--indy-radius-pill);
}

body.single-product.woocommerce div.product .indydtf-product-attribute-color__swatch--light,
body.single-product.woocommerce-page div.product .indydtf-product-attribute-color__swatch--light {
  border-color: var(--indy-color-border);
}

body.single-product.woocommerce div.product .indydtf-product-attribute-color__label,
body.single-product.woocommerce-page div.product .indydtf-product-attribute-color__label {
  overflow-wrap: anywhere;
}

body.single-product.woocommerce div.product .indydtf-product-placement,
body.single-product.woocommerce-page div.product .indydtf-product-placement {
  display: grid;
  gap: 10px;
  margin: 12px 0;
}

body.single-product.woocommerce div.product .indydtf-product-placement__header,
body.single-product.woocommerce-page div.product .indydtf-product-placement__header {
  align-items: baseline;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

body.single-product.woocommerce div.product .indydtf-product-placement__actions,
body.single-product.woocommerce-page div.product .indydtf-product-placement__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--indy-space-2);
  justify-content: flex-end;
  min-width: 0;
}

body.single-product.woocommerce div.product .indydtf-product-placement__heading,
body.single-product.woocommerce-page div.product .indydtf-product-placement__heading {
  display: grid;
  gap: 2px;
  min-width: 0;
}

body.single-product.woocommerce div.product .indydtf-product-placement__heading strong,
body.single-product.woocommerce-page div.product .indydtf-product-placement__heading strong {
  color: var(--color-primary-dark);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.2;
}

body.single-product.woocommerce div.product .indydtf-product-placement__summary,
body.single-product.woocommerce-page div.product .indydtf-product-placement__summary {
  color: var(--indy-color-muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

body.single-product.woocommerce div.product .indydtf-product-placement__guide,
body.single-product.woocommerce-page div.product .indydtf-product-placement__guide {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: #0b4aa2;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 7px;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

body.single-product.woocommerce div.product .indydtf-product-placement__guide-icon,
body.single-product.woocommerce-page div.product .indydtf-product-placement__guide-icon {
  border: 1.5px solid currentColor;
  border-radius: 2px;
  display: inline-block;
  flex: 0 0 12px;
  height: 8px;
  position: relative;
  width: 10px;
}

body.single-product.woocommerce div.product .indydtf-product-placement__guide-icon::before,
body.single-product.woocommerce-page div.product .indydtf-product-placement__guide-icon::before {
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 2px 2px 0 0;
  content: "";
  height: 4px;
  left: 1px;
  position: absolute;
  top: -5px;
  width: 6px;
}

body.single-product.woocommerce div.product .indydtf-product-placement__guide-icon::after,
body.single-product.woocommerce-page div.product .indydtf-product-placement__guide-icon::after {
  background: currentColor;
  content: "";
  height: 1.5px;
  left: 2px;
  position: absolute;
  top: 2px;
  width: 5px;
}

body.single-product.woocommerce div.product .indydtf-product-placement__clear,
body.single-product.woocommerce-page div.product .indydtf-product-placement__clear {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--indy-color-muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.25;
  padding: 0;
}

body.single-product.woocommerce div.product .indydtf-product-placement__rail,
body.single-product.woocommerce-page div.product .indydtf-product-placement__rail {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(7, minmax(66px, 1fr));
  overflow-x: auto;
  padding: 1px 0 4px;
}

body.single-product.woocommerce div.product .indydtf-product-placement__tile,
body.single-product.woocommerce-page div.product .indydtf-product-placement__tile {
  align-items: center;
  appearance: none;
  background: #fff;
  border: 1px solid #d3ddeb;
  border-radius: 6px;
  color: #12243d;
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 0;
  justify-items: center;
  min-height: 148px;
  min-width: 66px;
  overflow: hidden;
  padding: 0;
  text-align: center;
}

body.single-product.woocommerce div.product .indydtf-product-placement__tile[hidden],
body.single-product.woocommerce-page div.product .indydtf-product-placement__tile[hidden] {
  display: none !important;
}

body.single-product.woocommerce div.product .indydtf-product-placement__tile:hover,
body.single-product.woocommerce-page div.product .indydtf-product-placement__tile:hover,
body.single-product.woocommerce div.product .indydtf-product-placement__tile:focus-visible,
body.single-product.woocommerce-page div.product .indydtf-product-placement__tile:focus-visible {
  border-color: #1e5bd8;
  box-shadow: 0 0 0 2px rgba(30, 91, 216, 0.12);
  outline: 0;
}

body.single-product.woocommerce div.product .indydtf-product-placement__tile.is-selected,
body.single-product.woocommerce-page div.product .indydtf-product-placement__tile.is-selected {
  border-color: #204ecf;
  box-shadow: inset 0 0 0 1px #204ecf, 0 2px 8px rgba(10, 30, 70, 0.08);
}

body.single-product.woocommerce div.product .indydtf-product-placement__tile span:last-child,
body.single-product.woocommerce-page div.product .indydtf-product-placement__tile span:last-child {
  align-items: center;
  align-self: stretch;
  background: #f1f4f8;
  color: #27374c;
  display: flex;
  font-size: 0.68rem;
  font-weight: 800;
  justify-content: center;
  line-height: 1.15;
  min-height: 27px;
  overflow-wrap: anywhere;
  padding: 3px 5px;
  text-align: center;
  width: 100%;
}

body.single-product.woocommerce div.product .indydtf-product-placement__tile.is-selected span:last-child,
body.single-product.woocommerce-page div.product .indydtf-product-placement__tile.is-selected span:last-child {
  background: #1f6ed4;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

body.single-product.woocommerce div.product .indydtf-product-placement__art,
body.single-product.woocommerce-page div.product .indydtf-product-placement__art {
  align-items: center;
  background: transparent;
  border-radius: 0;
  display: flex;
  height: 121px;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

body.single-product.woocommerce div.product .indydtf-product-placement__art img,
body.single-product.woocommerce-page div.product .indydtf-product-placement__art img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  width: 100%;
  z-index: 0;
}

body.single-product.woocommerce div.product .indydtf-product-placement__tile[data-custom-size],
body.single-product.woocommerce-page div.product .indydtf-product-placement__tile[data-custom-size] {
  gap: 0;
  padding: 0;
}

body.single-product.woocommerce div.product .indydtf-product-placement__tile[data-custom-size] .indydtf-product-placement__art,
body.single-product.woocommerce-page div.product .indydtf-product-placement__tile[data-custom-size] .indydtf-product-placement__art {
  background: #f7f9fc;
  border-radius: 0;
  height: 121px;
  width: 100%;
}

body.single-product.woocommerce div.product .indydtf-product-placement__art--custom::before,
body.single-product.woocommerce-page div.product .indydtf-product-placement__art--custom::before {
  border: 2px dashed #8290a5;
  border-radius: 4px;
  color: #1e5bd8;
  content: "+";
  display: grid;
  font-size: 1.35rem;
  font-weight: 850;
  height: 40px;
  line-height: 1;
  place-items: center;
  width: 40px;
}

body.single-product.woocommerce div.product .indydtf-product-placement__custom,
body.single-product.woocommerce-page div.product .indydtf-product-placement__custom {
  align-items: end;
  background: #f7f9fc;
  border: 1px solid #dce5f2;
  border-radius: 6px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 110px)) minmax(130px, 1fr) auto;
  padding: 10px;
}

body.single-product.woocommerce div.product .indydtf-product-placement__custom-intro,
body.single-product.woocommerce-page div.product .indydtf-product-placement__custom-intro {
  display: grid;
  gap: 3px;
  grid-column: 1 / -1;
}

body.single-product.woocommerce div.product .indydtf-product-placement__custom-intro strong,
body.single-product.woocommerce-page div.product .indydtf-product-placement__custom-intro strong,
body.single-product.woocommerce div.product .indydtf-product-placement__applied-title,
body.single-product.woocommerce-page div.product .indydtf-product-placement__applied-title {
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.25;
}

body.single-product.woocommerce div.product .indydtf-product-placement__custom-intro p,
body.single-product.woocommerce-page div.product .indydtf-product-placement__custom-intro p,
body.single-product.woocommerce div.product .indydtf-product-placement__applied-helper,
body.single-product.woocommerce-page div.product .indydtf-product-placement__applied-helper {
  color: var(--indy-color-muted);
  font-size: 0.76rem;
  line-height: 1.35;
  margin: 0;
}

body.single-product.woocommerce div.product .indydtf-product-placement__custom[hidden],
body.single-product.woocommerce-page div.product .indydtf-product-placement__custom[hidden] {
  display: none;
}

body.single-product.woocommerce div.product .indydtf-product-placement__custom-fields,
body.single-product.woocommerce-page div.product .indydtf-product-placement__custom-fields {
  align-items: end;
  display: grid;
  gap: 8px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 110px)) minmax(150px, 1fr) minmax(170px, auto);
}

body.single-product.woocommerce div.product .indydtf-product-placement__custom label,
body.single-product.woocommerce-page div.product .indydtf-product-placement__custom label {
  display: grid;
  gap: 4px;
  margin: 0;
}

body.single-product.woocommerce div.product .indydtf-product-placement__custom span,
body.single-product.woocommerce-page div.product .indydtf-product-placement__custom span {
  color: var(--indy-color-muted);
  font-size: 0.76rem;
  line-height: 1.25;
}

body.single-product.woocommerce div.product .indydtf-product-placement__custom input,
body.single-product.woocommerce-page div.product .indydtf-product-placement__custom input,
body.single-product.woocommerce div.product .indydtf-product-placement__custom select,
body.single-product.woocommerce-page div.product .indydtf-product-placement__custom select {
  background: #fff;
  border: 1px solid #cbd6e5;
  border-radius: 5px;
  font-size: 0.82rem;
  min-height: 34px;
  padding: 6px 8px;
  width: 100%;
}

body.single-product.woocommerce div.product .indydtf-product-placement__applied,
body.single-product.woocommerce-page div.product .indydtf-product-placement__applied {
  display: grid;
  gap: 5px;
  grid-column: 1 / -1;
}

body.single-product.woocommerce div.product .indydtf-product-placement__applied[hidden],
body.single-product.woocommerce-page div.product .indydtf-product-placement__applied[hidden] {
  display: none;
}

body.single-product.woocommerce div.product .indydtf-product-placement__applied-row,
body.single-product.woocommerce-page div.product .indydtf-product-placement__applied-row {
  align-items: center;
  background: #fff;
  border: 1px solid #dce5f2;
  border-radius: 5px;
  color: var(--color-primary-dark);
  display: flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: space-between;
  min-width: 0;
  padding: 7px 8px;
}

body.single-product.woocommerce div.product .indydtf-product-placement__applied-actions,
body.single-product.woocommerce-page div.product .indydtf-product-placement__applied-actions {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  justify-content: flex-end;
  margin-left: 12px;
  white-space: nowrap;
}

body.single-product.woocommerce div.product .indydtf-product-placement__applied-row button,
body.single-product.woocommerce-page div.product .indydtf-product-placement__applied-row button {
  appearance: none;
  background: transparent;
  border: 0;
  color: #0b4aa2;
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.single-product.woocommerce div.product .indydtf-product-placement__add-more,
body.single-product.woocommerce-page div.product .indydtf-product-placement__add-more {
  align-items: center;
  appearance: none;
  background: #eaf2ff;
  border: 1px dashed #9bb8e8;
  border-radius: 5px;
  color: var(--color-primary);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 850;
  justify-content: center;
  min-height: 34px;
  padding: 7px 10px;
  width: 100%;
}

body.single-product.woocommerce div.product .indydtf-product-placement__add-more:hover,
body.single-product.woocommerce-page div.product .indydtf-product-placement__add-more:hover,
body.single-product.woocommerce div.product .indydtf-product-placement__add-more:focus-visible,
body.single-product.woocommerce-page div.product .indydtf-product-placement__add-more:focus-visible {
  background: #dceafe;
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}

body.single-product.woocommerce div.product .indydtf-product-placement__apply,
body.single-product.woocommerce-page div.product .indydtf-product-placement__apply {
  align-self: end;
  height: 34px;
  line-height: 1.15;
  padding: 6px 14px;
  position: relative;
  top: 10px;
  white-space: nowrap;
  width: 100%;
}

@media (max-width: 479px) {
  body.single-product.woocommerce div.product .indydtf-product-placement__header,
  body.single-product.woocommerce-page div.product .indydtf-product-placement__header {
    align-items: baseline;
    display: flex;
  }

  body.single-product.woocommerce div.product .indydtf-product-placement__rail,
  body.single-product.woocommerce-page div.product .indydtf-product-placement__rail {
    grid-auto-columns: 76px;
    grid-auto-flow: column;
    grid-template-columns: 1fr;
  }

  body.single-product.woocommerce div.product .indydtf-product-placement__custom,
  body.single-product.woocommerce-page div.product .indydtf-product-placement__custom,
  body.single-product.woocommerce div.product .indydtf-product-placement__custom-fields,
  body.single-product.woocommerce-page div.product .indydtf-product-placement__custom-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.single-product.woocommerce div.product .indydtf-product-placement__custom label:nth-of-type(3),
  body.single-product.woocommerce-page div.product .indydtf-product-placement__custom label:nth-of-type(3),
  body.single-product.woocommerce div.product .indydtf-product-placement__apply,
  body.single-product.woocommerce-page div.product .indydtf-product-placement__apply {
    grid-column: 1 / -1;
  }

  body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel .indydtf-size-guide__how,
  body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel .indydtf-size-guide__how {
    grid-template-columns: 1fr;
  }

  body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel .woocommerce-product-attributes th,
  body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel .woocommerce-product-attributes th,
  body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel .woocommerce-product-attributes td,
  body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel .woocommerce-product-attributes td {
    display: block;
    width: 100%;
    padding: var(--indy-space-3) var(--indy-space-4);
  }

  body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel .woocommerce-product-attributes th,
  body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel .woocommerce-product-attributes th {
    padding-bottom: var(--indy-space-2);
  }

  body.single-product.woocommerce div.product .indydtf-product-information-tabs__panel .woocommerce-product-attributes td,
  body.single-product.woocommerce-page div.product .indydtf-product-information-tabs__panel .woocommerce-product-attributes td {
    padding-top: 0;
  }
}

body.single-product.woocommerce div.product tr.indydtf-color-selector-row td,
body.single-product.woocommerce-page div.product tr.indydtf-color-selector-row td {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0 0 14px;
  border: 0;
  box-sizing: border-box;
}

body.single-product.woocommerce div.product .indydtf-color-selector,
body.single-product.woocommerce-page div.product .indydtf-color-selector {
  --indydtf-color-card-width: 96px;
  --indydtf-color-card-media-height: 92px;
  --indydtf-color-card-gap: 10px;
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: 8px;
  margin: 0 0 16px;
  box-sizing: border-box;
}

body.single-product.woocommerce div.product .indydtf-color-selector__header,
body.single-product.woocommerce-page div.product .indydtf-color-selector__header {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

body.single-product.woocommerce div.product .indydtf-color-selector__label,
body.single-product.woocommerce-page div.product .indydtf-color-selector__label {
  min-width: 0;
  margin: 0;
  color: var(--indy-color-ink);
  font-size: 0.9rem;
  line-height: 1.25;
}

body.single-product.woocommerce div.product .indydtf-color-selector__label strong,
body.single-product.woocommerce-page div.product .indydtf-color-selector__label strong {
  font-size: 0.94rem;
  font-weight: 850;
}

body.single-product.woocommerce div.product .indydtf-color-selector__view-all,
body.single-product.woocommerce-page div.product .indydtf-color-selector__view-all {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

body.single-product.woocommerce div.product .indydtf-color-selector__rail,
body.single-product.woocommerce-page div.product .indydtf-color-selector__rail {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  align-items: stretch;
  gap: var(--indydtf-color-card-gap);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  padding: 2px 2px 9px;
  box-sizing: border-box;
  scroll-padding-inline: 2px;
  scrollbar-color: var(--indy-color-muted) var(--indy-color-subtle);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

body.single-product.woocommerce div.product .indydtf-color-selector__rail::-webkit-scrollbar,
body.single-product.woocommerce-page div.product .indydtf-color-selector__rail::-webkit-scrollbar {
  height: 7px;
}

body.single-product.woocommerce div.product .indydtf-color-selector__rail::-webkit-scrollbar-track,
body.single-product.woocommerce-page div.product .indydtf-color-selector__rail::-webkit-scrollbar-track {
  border-radius: 999px;
  background: var(--indy-color-subtle);
}

body.single-product.woocommerce div.product .indydtf-color-selector__rail::-webkit-scrollbar-thumb,
body.single-product.woocommerce-page div.product .indydtf-color-selector__rail::-webkit-scrollbar-thumb {
  border-radius: var(--indy-radius-pill);
  background: var(--indy-color-muted);
}

body.single-product.woocommerce div.product .indydtf-color-card,
body.single-product.woocommerce-page div.product .indydtf-color-card {
  display: grid;
  flex: 0 0 var(--indydtf-color-card-width);
  width: var(--indydtf-color-card-width);
  min-width: var(--indydtf-color-card-width);
  min-height: 172px;
  align-content: start;
  gap: 5px;
  padding: 4px 5px 8px;
  border: 1px solid var(--indy-color-border);
  border-radius: 6px;
  background: var(--indy-color-surface);
  color: var(--indy-color-ink);
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease, background-color 150ms ease;
}

body.single-product.woocommerce div.product .indydtf-color-card.is-active,
body.single-product.woocommerce-page div.product .indydtf-color-card.is-active {
  border-color: var(--color-primary);
  background: var(--indy-color-surface);
  box-shadow: 0 0 0 1px var(--color-primary), inset 0 -3px 0 var(--color-secondary);
}

body.single-product.woocommerce div.product .indydtf-color-card:focus-visible,
body.single-product.woocommerce-page div.product .indydtf-color-card:focus-visible {
  outline: none;
  box-shadow: var(--indy-button-focus-ring);
}

@media (hover: hover) {
  body.single-product.woocommerce div.product .indydtf-color-card:hover,
  body.single-product.woocommerce-page div.product .indydtf-color-card:hover {
    border-color: #AFC0D5;
    background: var(--indy-color-surface-soft);
    box-shadow: 0 6px 14px rgba(15, 45, 104, 0.08);
    transform: translateY(-1px);
  }
}

body.single-product.woocommerce div.product .indydtf-color-card__media,
body.single-product.woocommerce-page div.product .indydtf-color-card__media {
  display: grid;
  width: 100%;
  height: var(--indydtf-color-card-media-height);
  place-items: center;
  overflow: hidden;
  border-radius: var(--indy-radius-sm);
  background: var(--indy-color-surface-soft);
  box-sizing: border-box;
}

body.single-product.woocommerce div.product .indydtf-color-card__media img,
body.single-product.woocommerce-page div.product .indydtf-color-card__media img {
  display: block;
  width: 100%;
  height: var(--indydtf-color-card-media-height);
  object-fit: contain;
}

body.single-product.woocommerce div.product .indydtf-color-card__swatch,
body.single-product.woocommerce-page div.product .indydtf-color-card__swatch {
  display: block;
  width: 38px;
  height: 38px;
  border: 1px solid var(--indy-color-border);
  border-radius: 50%;
}

body.single-product.woocommerce div.product .indydtf-color-card__name,
body.single-product.woocommerce-page div.product .indydtf-color-card__name {
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.15em;
  padding: 0 1px;
  color: var(--indy-color-ink);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.08;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.single-product.woocommerce div.product .indydtf-color-card__price,
body.single-product.woocommerce-page div.product .indydtf-color-card__price {
  display: block;
  color: var(--indy-color-danger);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.1;
}

body.single-product.woocommerce div.product .indydtf-color-card__price *,
body.single-product.woocommerce-page div.product .indydtf-color-card__price * {
  color: inherit;
  font: inherit;
  line-height: inherit;
}

body.single-product.woocommerce div.product .indydtf-color-card__material,
body.single-product.woocommerce-page div.product .indydtf-color-card__material {
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.1em;
  padding: 0 1px;
  color: var(--indy-color-muted);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.08;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.single-product.woocommerce div.product .indydtf-single-product-media div.woocommerce-product-gallery.images,
body.single-product.woocommerce-page div.product .indydtf-single-product-media div.woocommerce-product-gallery.images {
  position: relative;
  float: none;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
  padding: var(--indy-space-4);
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-md);
  background: var(--indy-color-surface-soft);
  box-shadow: var(--indy-shadow-sm);
  box-sizing: border-box;
}

body.single-product.woocommerce div.product .indydtf-single-product-media div.woocommerce-product-gallery.images .woocommerce-product-gallery__image,
body.single-product.woocommerce-page div.product .indydtf-single-product-media div.woocommerce-product-gallery.images .woocommerce-product-gallery__image {
  border-radius: var(--indy-radius-sm);
  background: var(--indy-color-surface);
}

body.single-product.woocommerce div.product .indydtf-single-product-media .woocommerce-product-gallery__trigger,
body.single-product.woocommerce-page div.product .indydtf-single-product-media .woocommerce-product-gallery__trigger {
  top: var(--indy-space-3);
  right: var(--indy-space-3);
}

body.single-product.woocommerce div.product .indydtf-single-product-media .onsale,
body.single-product.woocommerce-page div.product .indydtf-single-product-media .onsale {
  position: absolute;
  top: var(--indy-space-3);
  left: var(--indy-space-3);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  min-height: var(--indy-button-height-xs);
  padding: 0 var(--indy-space-3);
  border: 1px solid rgba(229, 57, 53, 0.24);
  border-radius: var(--indy-radius-pill);
  background: var(--indy-color-danger);
  color: var(--indy-color-surface);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

body.single-product.woocommerce div.product .indydtf-single-product-media .flex-control-thumbs,
body.single-product.woocommerce-page div.product .indydtf-single-product-media .flex-control-thumbs {
  display: flex;
  gap: var(--indy-space-2);
  margin: var(--indy-space-3) 0 0;
  padding: var(--indy-space-1) 0 0;
}

body.single-product.woocommerce div.product .indydtf-single-product-media .flex-control-thumbs li,
body.single-product.woocommerce-page div.product .indydtf-single-product-media .flex-control-thumbs li {
  width: auto;
  flex: 0 0 66px;
}

body.single-product.woocommerce div.product .indydtf-single-product-media .flex-control-thumbs img,
body.single-product.woocommerce-page div.product .indydtf-single-product-media .flex-control-thumbs img {
  display: block;
  width: 100%;
  height: 66px;
  object-fit: cover;
  padding: 3px;
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-sm);
  background: var(--indy-color-surface);
  opacity: 1;
  box-sizing: border-box;
}

body.single-product.woocommerce div.product .indydtf-single-product-media .flex-control-thumbs img.flex-active,
body.single-product.woocommerce-page div.product .indydtf-single-product-media .flex-control-thumbs img.flex-active {
  border-color: var(--color-primary);
  box-shadow: inset 0 -3px 0 var(--color-secondary), 0 0 0 1px var(--color-primary);
}

body.single-product.woocommerce div.product .indydtf-single-product-media .flex-control-thumbs img:focus-visible,
body.single-product.woocommerce-page div.product .indydtf-single-product-media .flex-control-thumbs img:focus-visible {
  outline: 0;
  box-shadow: var(--indy-button-focus-ring);
}

/* CP3C - inline size quantity matrix over the native Woo size select. */
body.single-product.woocommerce div.product .indydtf-size-matrix,
body.single-product.woocommerce-page div.product .indydtf-size-matrix {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: 8px;
  margin: 0 0 16px;
  box-sizing: border-box;
}

body.single-product.woocommerce div.product .indydtf-size-matrix__header,
body.single-product.woocommerce-page div.product .indydtf-size-matrix__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

body.single-product.woocommerce div.product .indydtf-size-matrix__actions,
body.single-product.woocommerce-page div.product .indydtf-size-matrix__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: var(--indy-space-2);
  min-width: 0;
}

body.single-product.woocommerce div.product .indydtf-size-matrix__title,
body.single-product.woocommerce-page div.product .indydtf-size-matrix__title {
  margin: 0;
  color: var(--indy-color-ink);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.25;
}

body.single-product.woocommerce div.product .indydtf-size-matrix__reset,
body.single-product.woocommerce-page div.product .indydtf-size-matrix__reset {
  color: var(--indy-color-muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.25;
}

body.single-product.woocommerce div.product .indydtf-size-matrix__scroller,
body.single-product.woocommerce-page div.product .indydtf-size-matrix__scroller {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  padding: 2px 2px 9px;
  box-sizing: border-box;
  scrollbar-color: var(--indy-color-muted) var(--indy-color-subtle);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

body.single-product.woocommerce div.product .indydtf-size-matrix__scroller:focus-visible,
body.single-product.woocommerce-page div.product .indydtf-size-matrix__scroller:focus-visible {
  outline: none;
  box-shadow: var(--indy-button-focus-ring);
}

body.single-product.woocommerce div.product .indydtf-size-matrix__scroller::-webkit-scrollbar,
body.single-product.woocommerce-page div.product .indydtf-size-matrix__scroller::-webkit-scrollbar {
  height: 7px;
}

body.single-product.woocommerce div.product .indydtf-size-matrix__scroller::-webkit-scrollbar-track,
body.single-product.woocommerce-page div.product .indydtf-size-matrix__scroller::-webkit-scrollbar-track {
  border-radius: 999px;
  background: var(--indy-color-subtle);
}

body.single-product.woocommerce div.product .indydtf-size-matrix__scroller::-webkit-scrollbar-thumb,
body.single-product.woocommerce-page div.product .indydtf-size-matrix__scroller::-webkit-scrollbar-thumb {
  border-radius: var(--indy-radius-pill);
  background: var(--indy-color-muted);
}

body.single-product.woocommerce div.product .indydtf-size-matrix__grid,
body.single-product.woocommerce-page div.product .indydtf-size-matrix__grid {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: flex-start;
  gap: 8px;
}

body.single-product.woocommerce div.product .indydtf-size-option,
body.single-product.woocommerce-page div.product .indydtf-size-option {
  display: grid;
  flex: 0 0 84px;
  width: 84px;
  min-width: 84px;
  align-content: start;
  gap: 6px;
  padding: 8px 6px;
  border: 1px solid var(--indy-color-border);
  border-radius: 6px;
  background: var(--indy-color-surface);
  color: var(--indy-color-ink);
  text-align: center;
  box-sizing: border-box;
}

body.single-product.woocommerce div.product .indydtf-size-option__label,
body.single-product.woocommerce-page div.product .indydtf-size-option__label {
  min-width: 0;
  max-width: 100%;
  color: var(--indy-color-ink);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

body.single-product.woocommerce div.product .indydtf-size-option__quantity,
body.single-product.woocommerce-page div.product .indydtf-size-option__quantity {
  display: block;
}

body.single-product.woocommerce div.product .indydtf-size-option__quantity input,
body.single-product.woocommerce-page div.product .indydtf-size-option__quantity input {
  min-height: 30px;
  padding: 4px 5px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-sizing: border-box;
}

body.single-product.woocommerce div.product .indydtf-size-option.is-unavailable .indydtf-size-option__quantity input,
body.single-product.woocommerce-page div.product .indydtf-size-option.is-unavailable .indydtf-size-option__quantity input {
  border-color: var(--indy-color-border);
  background: var(--indy-color-surface-soft);
  color: var(--indy-color-muted);
  cursor: not-allowed;
}

body.single-product.woocommerce div.product .indydtf-size-option__pricing,
body.single-product.woocommerce-page div.product .indydtf-size-option__pricing {
  display: grid;
  gap: 2px;
  justify-items: center;
  line-height: 1.05;
}

body.single-product.woocommerce div.product .indydtf-size-option__pricing del,
body.single-product.woocommerce-page div.product .indydtf-size-option__pricing del {
  color: var(--indy-color-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

body.single-product.woocommerce div.product .indydtf-size-option__pricing ins,
body.single-product.woocommerce-page div.product .indydtf-size-option__pricing ins {
  color: var(--indy-color-danger);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

body.single-product.woocommerce div.product .indydtf-size-option__price,
body.single-product.woocommerce-page div.product .indydtf-size-option__price {
  color: var(--indy-color-ink);
  font-size: 0.78rem;
  font-weight: 850;
}

body.single-product.woocommerce div.product .indydtf-size-option__discount,
body.single-product.woocommerce-page div.product .indydtf-size-option__discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 3px 6px;
  border-radius: 5px;
  background: #E8F5E9;
  color: var(--indy-color-success);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

body.single-product.woocommerce div.product .indydtf-size-option__unavailable,
body.single-product.woocommerce-page div.product .indydtf-size-option__unavailable {
  color: var(--indy-color-danger);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.1;
}

body.single-product.woocommerce div.product .indydtf-size-option__pricing .woocommerce-Price-amount,
body.single-product.woocommerce-page div.product .indydtf-size-option__pricing .woocommerce-Price-amount {
  color: inherit;
  font: inherit;
  line-height: inherit;
}

body.single-product.woocommerce div.product .indydtf-dtf-purchase,
body.single-product.woocommerce-page div.product .indydtf-dtf-purchase {
  display: grid;
  gap: 18px;
  margin: 18px 0 24px;
  padding: 20px;
  border: 1px solid rgba(15, 45, 104, 0.16);
  border-radius: var(--indy-radius-md);
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 58%, #fff8ed 100%);
  box-shadow: 0 16px 34px rgba(15, 45, 104, 0.09);
  box-sizing: border-box;
}

.indydtf-gang-builder-home-link {
  position: fixed;
  z-index: 2147483647;
  top: 0;
  left: 0;
  width: 170px;
  height: 88px;
  display: block;
  background: rgba(255, 255, 255, 0.001);
  cursor: pointer;
}

.indydtf-gang-builder-home-link:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: -6px;
}

.indydtf-saved-gang-builder-modal[hidden] {
  display: none;
}

.indydtf-saved-gang-builder-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483600;
  background: rgba(12, 14, 22, 0.68);
}

.indydtf-saved-gang-builder-modal__backdrop {
  position: absolute;
  inset: 0;
}

.indydtf-saved-gang-builder-modal__panel {
  position: absolute;
  inset: 28px;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(5, 15, 35, 0.28);
}

.indydtf-saved-gang-builder-modal__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
}

.indydtf-saved-gang-builder-modal__close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(15, 45, 104, 0.25);
  border-radius: 8px;
  background: #ffffff;
  color: var(--color-primary-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  text-align: center;
}

.indydtf-saved-gang-builder-modal__close:hover,
.indydtf-saved-gang-builder-modal__close:focus {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

html.indydtf-saved-gang-builder-open,
html.indydtf-saved-gang-builder-open body {
  overflow: hidden;
}

@media (max-width: 782px) {
  .indydtf-saved-gang-builder-modal__panel {
    inset: 0;
    border-radius: 0;
  }

  .indydtf-saved-gang-builder-modal__close {
    top: 10px;
    right: 10px;
  }
}

body.single-product.woocommerce div.product .indydtf-dtf-purchase__header,
body.single-product.woocommerce-page div.product .indydtf-dtf-purchase__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

body.single-product.woocommerce div.product .indydtf-dtf-purchase__eyebrow,
body.single-product.woocommerce-page div.product .indydtf-dtf-purchase__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 6px;
  padding: 4px 8px;
  border-radius: var(--indy-radius-pill);
  background: rgba(215, 38, 56, 0.1);
  color: var(--color-secondary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.single-product.woocommerce div.product .indydtf-dtf-purchase h2,
body.single-product.woocommerce-page div.product .indydtf-dtf-purchase h2 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 900;
  line-height: 1.16;
}

body.single-product.woocommerce div.product .indydtf-dtf-purchase p,
body.single-product.woocommerce-page div.product .indydtf-dtf-purchase p {
  margin: 7px 0 0;
  color: var(--indy-color-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

body.single-product.woocommerce div.product .indydtf-dtf-purchase__sizes,
body.single-product.woocommerce-page div.product .indydtf-dtf-purchase__sizes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

body.single-product.woocommerce div.product .indydtf-dtf-size-card,
body.single-product.woocommerce-page div.product .indydtf-dtf-size-card {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 82px;
  padding: 12px;
  border: 1px solid var(--indy-color-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary-dark);
  text-align: left;
  box-shadow: 0 8px 18px rgba(15, 45, 104, 0.04);
  cursor: pointer;
}

body.single-product.woocommerce div.product .indydtf-dtf-size-card:hover,
body.single-product.woocommerce-page div.product .indydtf-dtf-size-card:hover {
  border-color: rgba(31, 110, 212, 0.45);
  transform: translateY(-1px);
}

body.single-product.woocommerce div.product .indydtf-dtf-size-card.is-active,
body.single-product.woocommerce-page div.product .indydtf-dtf-size-card.is-active {
  border-color: var(--color-secondary);
  background: #fff7f7;
  box-shadow: inset 0 0 0 2px rgba(215, 38, 56, 0.16), 0 12px 24px rgba(15, 45, 104, 0.08);
}

body.single-product.woocommerce div.product .indydtf-dtf-size-card strong,
body.single-product.woocommerce-page div.product .indydtf-dtf-size-card strong {
  color: var(--color-primary-dark);
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.15;
}

body.single-product.woocommerce div.product .indydtf-dtf-size-card span,
body.single-product.woocommerce-page div.product .indydtf-dtf-size-card span {
  color: var(--indy-color-ink);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.15;
}

body.single-product.woocommerce div.product .indydtf-dtf-size-card em,
body.single-product.woocommerce-page div.product .indydtf-dtf-size-card em {
  color: var(--indy-color-muted);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 750;
  line-height: 1.2;
}

body.single-product.woocommerce div.product .indydtf-dtf-size-card.is-active em,
body.single-product.woocommerce-page div.product .indydtf-dtf-size-card.is-active em {
  color: var(--color-secondary);
}

body.single-product.woocommerce div.product .indydtf-dtf-purchase__checkout,
body.single-product.woocommerce-page div.product .indydtf-dtf-purchase__checkout {
  display: grid;
  grid-template-columns: 110px minmax(130px, 0.55fr) minmax(190px, 1fr);
  gap: 12px;
  align-items: end;
}

body.single-product.woocommerce div.product .indydtf-dtf-purchase__quantity,
body.single-product.woocommerce-page div.product .indydtf-dtf-purchase__quantity,
body.single-product.woocommerce div.product .indydtf-dtf-purchase__unit,
body.single-product.woocommerce-page div.product .indydtf-dtf-purchase__unit {
  display: grid;
  gap: 6px;
  min-width: 0;
}

body.single-product.woocommerce div.product .indydtf-dtf-purchase__quantity span,
body.single-product.woocommerce-page div.product .indydtf-dtf-purchase__quantity span,
body.single-product.woocommerce div.product .indydtf-dtf-purchase__unit span,
body.single-product.woocommerce-page div.product .indydtf-dtf-purchase__unit span {
  color: var(--indy-color-muted);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
}

body.single-product.woocommerce div.product .indydtf-dtf-purchase__quantity input,
body.single-product.woocommerce-page div.product .indydtf-dtf-purchase__quantity input {
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 850;
  text-align: center;
}

body.single-product.woocommerce div.product .indydtf-dtf-purchase__unit strong,
body.single-product.woocommerce-page div.product .indydtf-dtf-purchase__unit strong {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--color-primary-dark);
  font-size: 1.12rem;
  font-weight: 900;
}

body.single-product.woocommerce div.product .indydtf-dtf-purchase__button,
body.single-product.woocommerce-page div.product .indydtf-dtf-purchase__button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

body.single-product.woocommerce div.product .indydtf-dtf-summary,
body.single-product.woocommerce-page div.product .indydtf-dtf-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.85fr));
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--indy-color-border);
  border-radius: 8px;
  background: var(--indy-color-surface);
}

body.single-product.woocommerce div.product .indydtf-dtf-summary__selected,
body.single-product.woocommerce-page div.product .indydtf-dtf-summary__selected,
body.single-product.woocommerce div.product .indydtf-dtf-summary__metric,
body.single-product.woocommerce-page div.product .indydtf-dtf-summary__metric {
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 0;
  padding: 15px 16px;
  border-left: 1px solid var(--indy-color-border);
}

body.single-product.woocommerce div.product .indydtf-dtf-summary__selected,
body.single-product.woocommerce-page div.product .indydtf-dtf-summary__selected {
  border-left: 0;
}

body.single-product.woocommerce div.product .indydtf-dtf-summary__selected strong,
body.single-product.woocommerce-page div.product .indydtf-dtf-summary__selected strong,
body.single-product.woocommerce div.product .indydtf-dtf-summary__metric strong,
body.single-product.woocommerce-page div.product .indydtf-dtf-summary__metric strong {
  color: var(--color-primary-dark);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.18;
}

body.single-product.woocommerce div.product .indydtf-dtf-summary__selected span,
body.single-product.woocommerce-page div.product .indydtf-dtf-summary__selected span,
body.single-product.woocommerce div.product .indydtf-dtf-summary__metric span,
body.single-product.woocommerce-page div.product .indydtf-dtf-summary__metric span {
  color: var(--indy-color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

body.single-product.woocommerce div.product .indydtf-dtf-summary__metric--price strong,
body.single-product.woocommerce-page div.product .indydtf-dtf-summary__metric--price strong {
  color: var(--color-secondary);
}

body.single-product.woocommerce div.product .indydtf-dtf-summary__metric--save strong,
body.single-product.woocommerce-page div.product .indydtf-dtf-summary__metric--save strong {
  color: var(--indy-color-success);
}

body.single-product.woocommerce div.product .indydtf-purchase-flow,
body.single-product.woocommerce-page div.product .indydtf-purchase-flow {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: 22px;
  margin: 10px 0 26px;
  box-sizing: border-box;
}

body.single-product.woocommerce div.product .indydtf-order-summary,
body.single-product.woocommerce-page div.product .indydtf-order-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 2.2fr);
  align-items: center;
  gap: var(--indy-space-5);
  padding: 22px 24px;
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-md);
  background: var(--indy-color-surface);
  box-shadow: 0 10px 24px rgba(15, 45, 104, 0.06);
  box-sizing: border-box;
}

body.single-product.woocommerce div.product .indydtf-order-summary__selected,
body.single-product.woocommerce-page div.product .indydtf-order-summary__selected {
  display: grid;
  align-items: center;
  min-width: 0;
}

body.single-product.woocommerce div.product .indydtf-order-summary__icon,
body.single-product.woocommerce-page div.product .indydtf-order-summary__icon {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--indy-color-surface-soft);
  color: #334155;
}

body.single-product.woocommerce div.product .indydtf-apparel-icon,
body.single-product.woocommerce-page div.product .indydtf-apparel-icon {
  display: block;
  width: 46px;
  height: 46px;
}

body.single-product.woocommerce div.product .indydtf-order-summary__selected-text,
body.single-product.woocommerce-page div.product .indydtf-order-summary__selected-text {
  display: grid;
  min-width: 0;
  gap: var(--indy-space-2);
}

body.single-product.woocommerce div.product .indydtf-order-summary__selected-text strong,
body.single-product.woocommerce-page div.product .indydtf-order-summary__selected-text strong {
  color: var(--indy-color-ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

body.single-product.woocommerce div.product .indydtf-order-summary__selected-text span,
body.single-product.woocommerce-page div.product .indydtf-order-summary__selected-text span {
  color: var(--indy-color-muted);
  font-size: 0.94rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

body.single-product.woocommerce div.product .indydtf-order-summary__metrics,
body.single-product.woocommerce-page div.product .indydtf-order-summary__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  min-width: 0;
}

body.single-product.woocommerce div.product .indydtf-order-summary__metric,
body.single-product.woocommerce-page div.product .indydtf-order-summary__metric {
  display: grid;
  min-width: 0;
  gap: 8px;
  padding: 2px 14px;
  border-left: 1px solid var(--indy-color-border);
  text-align: center;
}

body.single-product.woocommerce div.product .indydtf-order-summary__metric-label,
body.single-product.woocommerce-page div.product .indydtf-order-summary__metric-label {
  color: var(--indy-color-muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.25;
}

body.single-product.woocommerce div.product .indydtf-order-summary__metric-value,
body.single-product.woocommerce-page div.product .indydtf-order-summary__metric-value {
  min-height: 1.2em;
  color: var(--indy-color-ink);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 900;
  line-height: 1.1;
  min-width: 0;
  overflow-wrap: normal;
  white-space: nowrap;
}

body.single-product.woocommerce div.product .indydtf-order-summary__metric--regular .indydtf-order-summary__metric-value,
body.single-product.woocommerce-page div.product .indydtf-order-summary__metric--regular .indydtf-order-summary__metric-value {
  color: var(--indy-color-muted);
  text-decoration: line-through;
}

body.single-product.woocommerce div.product .indydtf-order-summary__metric--effective .indydtf-order-summary__metric-value,
body.single-product.woocommerce-page div.product .indydtf-order-summary__metric--effective .indydtf-order-summary__metric-value {
  color: var(--indy-color-danger);
}

body.single-product.woocommerce div.product .indydtf-order-summary__metric--savings .indydtf-order-summary__metric-value,
body.single-product.woocommerce-page div.product .indydtf-order-summary__metric--savings .indydtf-order-summary__metric-value {
  color: var(--indy-color-success);
}

body.single-product.woocommerce div.product .indydtf-order-summary.is-empty .indydtf-order-summary__metrics,
body.single-product.woocommerce-page div.product .indydtf-order-summary.is-empty .indydtf-order-summary__metrics {
  opacity: 0.38;
}

body.single-product.woocommerce div.product .indydtf-purchase-decision,
body.single-product.woocommerce-page div.product .indydtf-purchase-decision {
  display: grid;
  gap: 24px;
  padding: 28px 30px;
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-md);
  background: var(--indy-color-surface);
  box-shadow: 0 10px 24px rgba(15, 45, 104, 0.06);
}

body.single-product.woocommerce div.product .indydtf-purchase-decision__header,
body.single-product.woocommerce-page div.product .indydtf-purchase-decision__header {
  text-align: center;
}

body.single-product.woocommerce div.product .indydtf-purchase-decision__header h2,
body.single-product.woocommerce-page div.product .indydtf-purchase-decision__header h2 {
  margin: 0 0 6px;
  color: var(--indy-color-ink);
  font-size: 1.48rem;
  font-weight: 900;
  line-height: 1.2;
}

body.single-product.woocommerce div.product .indydtf-purchase-decision__header p,
body.single-product.woocommerce-page div.product .indydtf-purchase-decision__header p {
  margin: 0;
  color: var(--indy-color-muted);
  font-size: 1rem;
  line-height: 1.45;
}

body.single-product.woocommerce div.product .indydtf-purchase-decision__cards,
body.single-product.woocommerce-page div.product .indydtf-purchase-decision__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

body.single-product.woocommerce div.product .indydtf-purchase-card,
body.single-product.woocommerce-page div.product .indydtf-purchase-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  min-width: 0;
  height: 100%;
  padding: 22px;
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-md);
  background: var(--indy-color-surface);
  box-sizing: border-box;
}

body.single-product.woocommerce div.product .indydtf-purchase-card--studio,
body.single-product.woocommerce-page div.product .indydtf-purchase-card--studio {
  border-color: #B8E2C2;
  background: #F7FEF8;
}

body.single-product.woocommerce div.product .indydtf-purchase-card.is-disabled,
body.single-product.woocommerce-page div.product .indydtf-purchase-card.is-disabled {
  background: #F8FAFC;
  opacity: 0.72;
}

body.single-product.woocommerce div.product .indydtf-purchase-card.is-disabled .indydtf-purchase-card__button,
body.single-product.woocommerce-page div.product .indydtf-purchase-card.is-disabled .indydtf-purchase-card__button {
  cursor: not-allowed;
  filter: grayscale(0.25);
  opacity: 0.62;
}

body.single-product.woocommerce div.product .indydtf-purchase-card__icon,
body.single-product.woocommerce-page div.product .indydtf-purchase-card__icon {
  display: inline-grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--indy-color-subtle);
  color: var(--color-primary);
}

body.single-product.woocommerce div.product .indydtf-purchase-card--studio .indydtf-purchase-card__icon,
body.single-product.woocommerce-page div.product .indydtf-purchase-card--studio .indydtf-purchase-card__icon {
  background: #E8F5E9;
  color: var(--indy-color-success);
}

body.single-product.woocommerce div.product .indydtf-purchase-card__body,
body.single-product.woocommerce-page div.product .indydtf-purchase-card__body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  gap: 14px;
}

body.single-product.woocommerce div.product .indydtf-purchase-card h3,
body.single-product.woocommerce-page div.product .indydtf-purchase-card h3 {
  margin: 0;
  color: var(--indy-color-ink);
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1.25;
}

body.single-product.woocommerce div.product .indydtf-purchase-card--studio h3,
body.single-product.woocommerce-page div.product .indydtf-purchase-card--studio h3 {
  color: var(--indy-color-success);
}

body.single-product.woocommerce div.product .indydtf-purchase-card ul,
body.single-product.woocommerce-page div.product .indydtf-purchase-card ul {
  display: grid;
  align-content: start;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--indy-color-ink);
  font-size: 0.92rem;
  line-height: 1.45;
}

body.single-product.woocommerce div.product .indydtf-purchase-card li,
body.single-product.woocommerce-page div.product .indydtf-purchase-card li {
  position: relative;
  padding-left: 18px;
}

body.single-product.woocommerce div.product .indydtf-purchase-card li::before,
body.single-product.woocommerce-page div.product .indydtf-purchase-card li::before {
  position: absolute;
  left: 0;
  color: var(--color-primary);
  content: "✓";
  font-weight: 900;
}

body.single-product.woocommerce div.product .indydtf-purchase-card--studio li::before,
body.single-product.woocommerce-page div.product .indydtf-purchase-card--studio li::before {
  color: var(--indy-color-success);
}

body.single-product.woocommerce div.product .indydtf-purchase-card__button,
body.single-product.woocommerce-page div.product .indydtf-purchase-card__button {
  width: 100%;
  min-height: 46px;
  margin-top: 8px;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
}

body.single-product.woocommerce div.product .indydtf-single-product-wishlist,
body.single-product.woocommerce-page div.product .indydtf-single-product-wishlist {
  display: flex;
  justify-content: center;
  margin-top: var(--indy-space-1);
}

body.single-product.woocommerce div.product .indydtf-single-product-wishlist .tinv-wraper,
body.single-product.woocommerce-page div.product .indydtf-single-product-wishlist .tinv-wraper {
  margin: 0;
}

body.single-product.woocommerce div.product .indydtf-single-product-wishlist__button.indy-button,
body.single-product.woocommerce-page div.product .indydtf-single-product-wishlist__button.indy-button {
  min-height: var(--indy-button-height-sm);
  text-decoration: none;
}

body.single-product.woocommerce div.product .indydtf-single-product-wishlist__button.indy-button::before,
body.single-product.woocommerce-page div.product .indydtf-single-product-wishlist__button.indy-button::before {
  margin: 0;
}

body.single-product.woocommerce div.product .indydtf-purchase-flow__message,
body.single-product.woocommerce-page div.product .indydtf-purchase-flow__message {
  min-height: 1.3em;
  color: var(--indy-color-muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

body.single-product.woocommerce div.product .indydtf-purchase-flow__message.is-error,
body.single-product.woocommerce-page div.product .indydtf-purchase-flow__message.is-error {
  color: var(--indy-color-danger);
  font-weight: 800;
}

body.single-product.woocommerce div.product .indydtf-purchase-flow__message.is-success,
body.single-product.woocommerce-page div.product .indydtf-purchase-flow__message.is-success {
  color: var(--indy-color-success);
  font-weight: 800;
}

.indydtf-mobile-product-gallery-slot,
.indydtf-mobile-product-lower-slot {
  display: contents;
}

@media (max-width: 1023px) {
  body.single-product.woocommerce div.product .indydtf-color-selector,
  body.single-product.woocommerce-page div.product .indydtf-color-selector {
    --indydtf-color-card-width: 90px;
    --indydtf-color-card-media-height: 86px;
    --indydtf-color-card-gap: 9px;
    margin-bottom: 14px;
  }

  body.single-product.woocommerce div.product .indydtf-color-card,
  body.single-product.woocommerce-page div.product .indydtf-color-card {
    min-height: 164px;
  }

  body.single-product.woocommerce div.product .indydtf-order-summary,
  body.single-product.woocommerce-page div.product .indydtf-order-summary {
    grid-template-columns: 1fr;
  }

  body.single-product.woocommerce div.product .indydtf-order-summary__metrics,
  body.single-product.woocommerce-page div.product .indydtf-order-summary__metrics {
    grid-template-columns: 1fr;
  }

  body.single-product.woocommerce div.product .indydtf-order-summary__metric,
  body.single-product.woocommerce-page div.product .indydtf-order-summary__metric {
    padding: var(--indy-space-3) 0 0;
    border-top: 1px solid var(--indy-color-border);
    border-left: 0;
  }

  body.single-product.woocommerce div.product .indydtf-order-summary__metric:first-child,
  body.single-product.woocommerce-page div.product .indydtf-order-summary__metric:first-child {
    padding-top: 0;
    border-top: 0;
    border-left: 0;
  }

  body.single-product.woocommerce div.product .indydtf-dtf-purchase__sizes,
  body.single-product.woocommerce-page div.product .indydtf-dtf-purchase__sizes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.single-product.woocommerce div.product .indydtf-dtf-purchase__checkout,
  body.single-product.woocommerce-page div.product .indydtf-dtf-purchase__checkout,
  body.single-product.woocommerce div.product .indydtf-dtf-summary,
  body.single-product.woocommerce-page div.product .indydtf-dtf-summary {
    grid-template-columns: 1fr;
  }

  body.single-product.woocommerce div.product .indydtf-dtf-summary__selected,
  body.single-product.woocommerce-page div.product .indydtf-dtf-summary__selected,
  body.single-product.woocommerce div.product .indydtf-dtf-summary__metric,
  body.single-product.woocommerce-page div.product .indydtf-dtf-summary__metric {
    border-top: 1px solid var(--indy-color-border);
    border-left: 0;
  }

  body.single-product.woocommerce div.product .indydtf-dtf-summary__selected,
  body.single-product.woocommerce-page div.product .indydtf-dtf-summary__selected {
    border-top: 0;
  }
}

@media (max-width: 767px) {
  body.single-product .site-content > .ast-container,
  body.single-product.woocommerce .site-content > .ast-container,
  body.single-product.woocommerce-page .site-content > .ast-container {
    width: min(calc(100% - (var(--site-gutter-mobile) * 2)), var(--site-content-width));
    padding-top: 18px;
  }

  body.single-product.woocommerce div.product.indydtf-mobile-product-layout,
  body.single-product.woocommerce-page div.product.indydtf-mobile-product-layout {
    display: block;
  }

  body.single-product.woocommerce div.product.indydtf-mobile-product-layout .summary.entry-summary,
  body.single-product.woocommerce-page div.product.indydtf-mobile-product-layout .summary.entry-summary,
  body.single-product.woocommerce div.product.indydtf-mobile-product-layout div.summary,
  body.single-product.woocommerce-page div.product.indydtf-mobile-product-layout div.summary {
    display: grid;
    gap: var(--indy-space-4);
  }

  body.single-product.woocommerce div.product.indydtf-mobile-product-layout .summary.entry-summary > .woocommerce-breadcrumb,
  body.single-product.woocommerce-page div.product.indydtf-mobile-product-layout .summary.entry-summary > .woocommerce-breadcrumb,
  body.single-product.woocommerce div.product.indydtf-mobile-product-layout div.summary > .woocommerce-breadcrumb,
  body.single-product.woocommerce-page div.product.indydtf-mobile-product-layout div.summary > .woocommerce-breadcrumb {
    margin: 0;
    color: #667085;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  body.single-product.woocommerce div.product.indydtf-mobile-product-layout .summary.entry-summary .posted_in,
  body.single-product.woocommerce-page div.product.indydtf-mobile-product-layout .summary.entry-summary .posted_in,
  body.single-product.woocommerce div.product.indydtf-mobile-product-layout div.summary .posted_in,
  body.single-product.woocommerce-page div.product.indydtf-mobile-product-layout div.summary .posted_in {
    margin: 0;
    color: var(--color-primary);
    font-size: 0.98rem;
    font-weight: 750;
    line-height: 1.35;
  }

  body.single-product.woocommerce div.product.indydtf-mobile-product-layout .summary.entry-summary .product_title,
  body.single-product.woocommerce-page div.product.indydtf-mobile-product-layout .summary.entry-summary .product_title,
  body.single-product.woocommerce div.product.indydtf-mobile-product-layout div.summary .product_title,
  body.single-product.woocommerce-page div.product.indydtf-mobile-product-layout div.summary .product_title {
    margin: 0;
    color: var(--color-primary-dark);
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    line-height: 1.12;
    letter-spacing: 0;
  }

  body.single-product.woocommerce div.product.indydtf-mobile-product-layout .summary.entry-summary .price,
  body.single-product.woocommerce-page div.product.indydtf-mobile-product-layout .summary.entry-summary .price,
  body.single-product.woocommerce div.product.indydtf-mobile-product-layout div.summary .price,
  body.single-product.woocommerce-page div.product.indydtf-mobile-product-layout div.summary .price {
    margin: 0;
    color: #2F3B52;
    font-size: clamp(1.55rem, 7vw, 2rem);
    font-weight: 900;
    line-height: 1.05;
  }

  body.single-product.woocommerce div.product.indydtf-mobile-product-layout .summary.entry-summary .ast-shipping-text,
  body.single-product.woocommerce-page div.product.indydtf-mobile-product-layout .summary.entry-summary .ast-shipping-text,
  body.single-product.woocommerce div.product.indydtf-mobile-product-layout div.summary .ast-shipping-text,
  body.single-product.woocommerce-page div.product.indydtf-mobile-product-layout div.summary .ast-shipping-text {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    min-height: 30px;
    margin-top: -6px;
    border: 1px solid rgba(36, 68, 132, 0.12);
    border-radius: 999px;
    background: #F5F8FF;
    color: var(--color-primary-dark);
    font-size: 0.86rem;
    font-weight: 800;
    padding: 0.28rem 0.74rem;
  }

  body.single-product.woocommerce div.product .indydtf-mobile-product-gallery-slot,
  body.single-product.woocommerce-page div.product .indydtf-mobile-product-gallery-slot,
  body.single-product.woocommerce div.product .indydtf-mobile-product-lower-slot,
  body.single-product.woocommerce-page div.product .indydtf-mobile-product-lower-slot {
    display: grid;
    position: relative;
    gap: var(--indy-space-4);
    min-width: 0;
  }

  body.single-product.woocommerce div.product .summary.entry-summary > .indydtf-mobile-product-gallery-slot,
  body.single-product.woocommerce-page div.product .summary.entry-summary > .indydtf-mobile-product-gallery-slot,
  body.single-product.woocommerce div.product div.summary > .indydtf-mobile-product-gallery-slot,
  body.single-product.woocommerce-page div.product div.summary > .indydtf-mobile-product-gallery-slot {
    margin-top: 2px;
  }

  body.single-product.woocommerce div.product .indydtf-single-product-media,
  body.single-product.woocommerce-page div.product .indydtf-single-product-media {
    display: grid;
    position: relative;
    gap: var(--indy-space-4);
    min-width: 0;
    margin-top: var(--indy-space-5);
  }

  body.single-product.woocommerce div.product.indydtf-mobile-product-layout > .indydtf-single-product-media,
  body.single-product.woocommerce-page div.product.indydtf-mobile-product-layout > .indydtf-single-product-media {
    display: none;
  }

  body.single-product.woocommerce div.product .indydtf-single-product-media div.woocommerce-product-gallery.images,
  body.single-product.woocommerce-page div.product .indydtf-single-product-media div.woocommerce-product-gallery.images,
  body.single-product.woocommerce div.product .indydtf-mobile-product-gallery-slot div.woocommerce-product-gallery.images,
  body.single-product.woocommerce-page div.product .indydtf-mobile-product-gallery-slot div.woocommerce-product-gallery.images {
    overflow: hidden;
    padding: var(--indy-space-3);
    border: 1px solid rgba(36, 68, 132, 0.12);
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0 14px 34px rgba(15, 45, 104, 0.08);
  }

  body.single-product.woocommerce div.product .indydtf-single-product-media .onsale,
  body.single-product.woocommerce-page div.product .indydtf-single-product-media .onsale,
  body.single-product.woocommerce div.product .indydtf-mobile-product-gallery-slot .onsale,
  body.single-product.woocommerce-page div.product .indydtf-mobile-product-gallery-slot .onsale {
    top: var(--indy-space-2);
    left: var(--indy-space-2);
    min-height: 24px;
    padding: 0 var(--indy-space-2);
    font-size: 0.68rem;
  }

  body.single-product.woocommerce div.product .indydtf-single-product-media .woocommerce-product-gallery__trigger,
  body.single-product.woocommerce-page div.product .indydtf-single-product-media .woocommerce-product-gallery__trigger,
  body.single-product.woocommerce div.product .indydtf-mobile-product-gallery-slot .woocommerce-product-gallery__trigger,
  body.single-product.woocommerce-page div.product .indydtf-mobile-product-gallery-slot .woocommerce-product-gallery__trigger {
    top: var(--indy-space-2);
    right: var(--indy-space-2);
  }

  body.single-product.woocommerce div.product .indydtf-single-product-media .flex-control-thumbs li,
  body.single-product.woocommerce-page div.product .indydtf-single-product-media .flex-control-thumbs li,
  body.single-product.woocommerce div.product .indydtf-mobile-product-gallery-slot .flex-control-thumbs li,
  body.single-product.woocommerce-page div.product .indydtf-mobile-product-gallery-slot .flex-control-thumbs li {
    flex-basis: 58px;
  }

  body.single-product.woocommerce div.product .indydtf-single-product-media .flex-control-thumbs img,
  body.single-product.woocommerce-page div.product .indydtf-single-product-media .flex-control-thumbs img,
  body.single-product.woocommerce div.product .indydtf-mobile-product-gallery-slot .flex-control-thumbs img,
  body.single-product.woocommerce-page div.product .indydtf-mobile-product-gallery-slot .flex-control-thumbs img {
    height: 58px;
  }

  body.single-product.woocommerce div.product .indydtf-color-selector,
  body.single-product.woocommerce-page div.product .indydtf-color-selector {
    --indydtf-color-card-width: 86px;
    --indydtf-color-card-media-height: 80px;
    --indydtf-color-card-gap: 8px;
    gap: 7px;
    margin-bottom: 13px;
  }

  body.single-product.woocommerce div.product .indydtf-color-selector__header,
  body.single-product.woocommerce-page div.product .indydtf-color-selector__header {
    align-items: flex-start;
    gap: var(--indy-space-2);
  }

  body.single-product.woocommerce div.product .indydtf-color-selector__label,
  body.single-product.woocommerce-page div.product .indydtf-color-selector__label {
    font-size: 0.86rem;
  }

  body.single-product.woocommerce div.product .indydtf-color-selector__label strong,
  body.single-product.woocommerce-page div.product .indydtf-color-selector__label strong {
    font-size: 0.88rem;
  }

  body.single-product.woocommerce div.product .indydtf-color-selector__view-all,
  body.single-product.woocommerce-page div.product .indydtf-color-selector__view-all {
    font-size: 0.78rem;
  }

  body.single-product.woocommerce div.product .indydtf-size-matrix__header,
  body.single-product.woocommerce-page div.product .indydtf-size-matrix__header {
    flex-wrap: wrap;
  }

  body.single-product.woocommerce div.product .indydtf-size-matrix__actions,
  body.single-product.woocommerce-page div.product .indydtf-size-matrix__actions {
    justify-content: flex-start;
  }

  body.single-product.woocommerce div.product .indydtf-color-card,
  body.single-product.woocommerce-page div.product .indydtf-color-card {
    min-height: 158px;
    padding: 4px 4px 7px;
  }

  body.single-product.woocommerce div.product .indydtf-order-summary,
  body.single-product.woocommerce-page div.product .indydtf-order-summary,
  body.single-product.woocommerce div.product .indydtf-purchase-decision,
  body.single-product.woocommerce-page div.product .indydtf-purchase-decision {
    padding: var(--indy-space-4);
  }

  body.single-product.woocommerce div.product .indydtf-dtf-purchase,
  body.single-product.woocommerce-page div.product .indydtf-dtf-purchase {
    padding: var(--indy-space-4);
  }

  body.single-product.woocommerce div.product .indydtf-purchase-decision__cards,
  body.single-product.woocommerce-page div.product .indydtf-purchase-decision__cards {
    grid-template-columns: 1fr;
  }

  body.single-product.woocommerce div.product .indydtf-purchase-decision.is-blank-path .indydtf-purchase-card--studio,
  body.single-product.woocommerce-page div.product .indydtf-purchase-decision.is-blank-path .indydtf-purchase-card--studio,
  body.single-product.woocommerce div.product .indydtf-purchase-decision.is-design-path .indydtf-purchase-card--blank,
  body.single-product.woocommerce-page div.product .indydtf-purchase-decision.is-design-path .indydtf-purchase-card--blank {
    display: none;
  }

  body.single-product.woocommerce div.product .indydtf-purchase-card,
  body.single-product.woocommerce-page div.product .indydtf-purchase-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  body.single-product.woocommerce div.product .indydtf-color-selector,
  body.single-product.woocommerce-page div.product .indydtf-color-selector {
    --indydtf-color-card-width: 82px;
    --indydtf-color-card-media-height: 76px;
    --indydtf-color-card-gap: 7px;
  }

  body.single-product.woocommerce div.product .indydtf-color-card,
  body.single-product.woocommerce-page div.product .indydtf-color-card {
    min-height: 154px;
  }

  body.single-product.woocommerce div.product .indydtf-color-card__name,
  body.single-product.woocommerce-page div.product .indydtf-color-card__name {
    font-size: 0.72rem;
  }

  body.single-product.woocommerce div.product .indydtf-color-card__price,
  body.single-product.woocommerce-page div.product .indydtf-color-card__price,
  body.single-product.woocommerce div.product .indydtf-color-card__material,
  body.single-product.woocommerce-page div.product .indydtf-color-card__material {
    font-size: 0.68rem;
  }
}



.indy-badge {

  display: inline-flex;

  width: fit-content;

  align-items: center;

  gap: 6px;

  padding: 4px 9px;

  border-radius: var(--indy-radius-pill);

  background: rgba(245, 180, 0, 0.18);

  color: var(--color-primary-dark);

  font-size: 0.78rem;

  font-weight: 850;

}



.indy-badge--blue {

  background: rgba(23, 63, 138, 0.12);

  color: var(--color-primary);

}



.indy-badge--red {

  background: rgba(229, 57, 53, 0.1);

  color: var(--color-accent);

}



.indy-swatches {

  display: flex;

  gap: 6px;

}



.indy-color-dot {

  width: 15px;

  height: 15px;

  border: 2px solid var(--indy-color-surface);

  border-radius: 50%;

  box-shadow: 0 0 0 1px var(--indy-color-border);

}



.indy-color-dot--navy {

  background: var(--color-primary-dark);

}



.indy-color-dot--blue {

  background: var(--color-primary);

}



.indy-color-dot--gold {

  background: var(--color-secondary);

}



.indy-color-dot--red {

  background: var(--color-accent);

}



.indy-color-dot--gray {

  background: var(--indy-color-border);

}



.indy-campaign-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  min-width: 0;
  align-items: center;
  gap: var(--indy-space-12);
  padding: var(--indy-space-16) 0;
}

.indy-campaign-strip__copy {
  display: grid;
  min-width: 0;
  gap: var(--indy-space-5);
  max-width: 720px;
}

.indy-campaign-strip__copy .indy-eyebrow,
.indy-campaign-strip__copy .indy-h2,
.indy-campaign-strip__copy .indy-body {
  color: inherit;
}

.indy-campaign-strip__copy .indy-body {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

.indy-campaign-strip__media {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 340px;
  place-items: center;
}

.indy-campaign-strip__media::before {
  position: absolute;
  inset: 12% 4% 8% 10%;
  border-radius: var(--indy-radius-xl);
  background: rgba(255, 255, 255, 0.16);
  content: "";
  transform: rotate(-4deg);
}

.indy-campaign-strip__image {
  position: relative;
  z-index: 1;
  display: block;
  width: min(78%, 360px);
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 30px 34px rgba(15, 45, 104, 0.32));
}

.indy-campaign-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 260px;
  align-content: end;
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-lg);
  background: var(--indy-color-surface);
  box-shadow: var(--indy-shadow-sm);
}

.indy-campaign-card--feature {
  grid-row: span 2;
  min-height: 540px;
  background:
    linear-gradient(180deg, rgba(15, 45, 104, 0.04), rgba(245, 180, 0, 0.14)),
    var(--indy-color-surface);
}

.indy-campaign-card__media {
  display: grid;
  min-height: 170px;
  place-items: center;
  padding: var(--indy-space-6);
  background: linear-gradient(180deg, var(--indy-color-surface), var(--indy-color-subtle));
}

.indy-campaign-card--feature .indy-campaign-card__media {
  min-height: 320px;
}

.indy-campaign-card__media img {
  display: block;
  width: min(76%, 250px);
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(15, 45, 104, 0.16));
}

.indy-campaign-card--feature .indy-campaign-card__media img {
  width: min(78%, 360px);
  max-height: 330px;
}

.indy-campaign-card__body {
  display: grid;
  gap: var(--indy-space-3);
  padding: var(--indy-space-5);
}

.indy-campaign-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--indy-space-3);
}

.indy-layout-note {
  display: grid;
  gap: var(--indy-space-2);
  padding: var(--indy-space-4);
  border: 1px solid rgba(245, 180, 0, 0.42);
  border-radius: var(--indy-radius-md);
  background: rgba(245, 180, 0, 0.12);
  color: var(--color-primary-dark);
}

@media (max-width: 1023px) {
  .indy-campaign-strip__inner {
    grid-template-columns: 1fr;
    gap: var(--indy-space-6);
  }

  .indy-campaign-strip__media {
    min-height: 300px;
  }

  .indy-campaign-card--feature {
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .indy-product-card {
    grid-template-columns: minmax(118px, 0.42fr) minmax(0, 0.58fr);
  }

  .indy-product-card__media {
    min-height: 100%;
    padding: var(--indy-space-4);
  }

  .indy-product-card__image {
    width: 100%;
    max-height: 132px;
  }

  .indy-product-card__badge {
    position: static;
    justify-self: start;
    margin-bottom: var(--indy-space-2);
  }

  .indy-product-card__body {
    padding: var(--indy-space-4);
  }

  .indy-product-card__actions .indy-button {
    width: auto;
  }

  .indy-campaign-strip__inner {
    padding: var(--indy-space-10) 0;
  }

  .indy-campaign-strip__media {
    min-height: 240px;
  }

  .indy-campaign-card__media,
  .indy-campaign-card--feature .indy-campaign-card__media {
    min-height: 190px;
  }
}

@media (max-width: 479px) {
  .indy-product-card {
    grid-template-columns: 1fr;
  }

  .indy-product-card__media {
    min-height: 190px;
  }
}

@media (max-width: 767px) {
  .indydtf-product-carousel .indy-product-card {
    grid-template-columns: 1fr;
  }

  .indydtf-product-carousel .indy-product-card__media {
    height: 170px;
    min-height: 0;
    padding: 0;
  }

  .indydtf-product-carousel .indy-product-card__image {
    height: 100%;
  }

  .indydtf-product-carousel .indy-product-card__badge {
    position: absolute;
    margin-bottom: 0;
  }

  .indydtf-product-carousel .indy-product-card__actions .indy-button {
    width: 100%;
  }
}

/* CP3H-HF1 - dedicated Customer Reviews section below Related Products. */
body.single-product.woocommerce div.product .indydtf-product-reviews,
body.single-product.woocommerce-page div.product .indydtf-product-reviews {
  clear: both;
  width: 100%;
  margin: var(--indy-space-8) 0 0;
}

body.single-product.woocommerce div.product .indydtf-product-reviews__header,
body.single-product.woocommerce-page div.product .indydtf-product-reviews__header {
  margin-bottom: var(--indy-space-5);
}

body.single-product.woocommerce div.product .indydtf-product-reviews__header h2,
body.single-product.woocommerce-page div.product .indydtf-product-reviews__header h2 {
  margin: 0;
  color: var(--indy-color-ink);
  font-size: clamp(1.3rem, 1.7vw, 1.72rem);
  font-weight: 700;
  line-height: 1.22;
}

body.single-product.woocommerce div.product .indydtf-product-reviews__layout,
body.single-product.woocommerce-page div.product .indydtf-product-reviews__layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: var(--indy-space-6);
  align-items: start;
}

body.single-product.woocommerce div.product .indydtf-product-reviews__summary,
body.single-product.woocommerce-page div.product .indydtf-product-reviews__summary,
body.single-product.woocommerce div.product .indydtf-product-reviews__content,
body.single-product.woocommerce-page div.product .indydtf-product-reviews__content {
  min-width: 0;
  padding: var(--indy-space-6);
}

body.single-product.woocommerce div.product .indydtf-product-reviews__average,
body.single-product.woocommerce-page div.product .indydtf-product-reviews__average {
  display: grid;
  gap: var(--indy-space-2);
  margin-bottom: var(--indy-space-5);
}

body.single-product.woocommerce div.product .indydtf-product-reviews__average strong,
body.single-product.woocommerce-page div.product .indydtf-product-reviews__average strong {
  color: var(--indy-color-ink);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

body.single-product.woocommerce div.product .indydtf-product-reviews__average span,
body.single-product.woocommerce-page div.product .indydtf-product-reviews__average span {
  color: var(--indy-color-muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

body.single-product.woocommerce div.product .indydtf-product-reviews__stars > span,
body.single-product.woocommerce-page div.product .indydtf-product-reviews__stars > span {
  display: inline-flex;
  gap: 2px;
  color: var(--indy-color-border);
  font-size: 1rem;
  letter-spacing: 0;
}

body.single-product.woocommerce div.product .indydtf-product-reviews__stars .is-filled,
body.single-product.woocommerce-page div.product .indydtf-product-reviews__stars .is-filled {
  color: var(--color-secondary);
}

body.single-product.woocommerce div.product .indydtf-product-reviews__distribution,
body.single-product.woocommerce-page div.product .indydtf-product-reviews__distribution {
  display: grid;
  gap: var(--indy-space-2);
}

body.single-product.woocommerce div.product .indydtf-product-reviews__distribution-row,
body.single-product.woocommerce-page div.product .indydtf-product-reviews__distribution-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 34px;
  gap: var(--indy-space-2);
  align-items: center;
  color: var(--indy-color-muted);
  font-size: 0.84rem;
  line-height: 1.25;
}

body.single-product.woocommerce div.product .indydtf-product-reviews__bar,
body.single-product.woocommerce-page div.product .indydtf-product-reviews__bar {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: var(--indy-radius-pill);
  background: var(--indy-color-subtle);
}

body.single-product.woocommerce div.product .indydtf-product-reviews__bar span,
body.single-product.woocommerce-page div.product .indydtf-product-reviews__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--color-secondary);
}

body.single-product.woocommerce div.product .indydtf-product-reviews__distribution-count,
body.single-product.woocommerce-page div.product .indydtf-product-reviews__distribution-count {
  text-align: right;
}

body.single-product.woocommerce div.product .indydtf-product-reviews .woocommerce-Reviews,
body.single-product.woocommerce-page div.product .indydtf-product-reviews .woocommerce-Reviews {
  display: grid;
  gap: var(--indy-space-6);
}

body.single-product.woocommerce div.product .indydtf-product-reviews .woocommerce-Reviews-title,
body.single-product.woocommerce-page div.product .indydtf-product-reviews .woocommerce-Reviews-title {
  margin: 0;
  color: var(--indy-color-ink);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.25;
}

body.single-product.woocommerce div.product .indydtf-product-reviews .commentlist,
body.single-product.woocommerce-page div.product .indydtf-product-reviews .commentlist {
  display: grid;
  gap: var(--indy-space-4);
  margin: var(--indy-space-4) 0 0;
  padding: 0;
}

body.single-product.woocommerce div.product .indydtf-product-reviews .commentlist li,
body.single-product.woocommerce-page div.product .indydtf-product-reviews .commentlist li {
  min-width: 0;
  padding-bottom: var(--indy-space-4);
  border-bottom: 1px solid var(--indy-color-border);
}

body.single-product.woocommerce div.product .indydtf-product-reviews #review_form_wrapper,
body.single-product.woocommerce-page div.product .indydtf-product-reviews #review_form_wrapper {
  padding-top: var(--indy-space-5);
  border-top: 1px solid var(--indy-color-border);
}

body.single-product.woocommerce div.product .indydtf-product-reviews .comment-reply-title,
body.single-product.woocommerce-page div.product .indydtf-product-reviews .comment-reply-title {
  display: block;
  margin: 0 0 var(--indy-space-4);
  color: var(--indy-color-ink);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.25;
}

body.single-product.woocommerce div.product .indydtf-product-reviews .comment-form,
body.single-product.woocommerce-page div.product .indydtf-product-reviews .comment-form {
  display: grid;
  gap: var(--indy-space-3);
}

body.single-product.woocommerce div.product .indydtf-product-reviews .comment-form p,
body.single-product.woocommerce-page div.product .indydtf-product-reviews .comment-form p {
  margin: 0;
}

body.single-product.woocommerce div.product .indydtf-product-reviews label,
body.single-product.woocommerce-page div.product .indydtf-product-reviews label {
  display: inline-block;
  margin-bottom: var(--indy-space-1);
  color: var(--indy-color-ink);
  font-size: 0.88rem;
  font-weight: 800;
}

body.single-product.woocommerce div.product .indydtf-product-reviews input[type="text"],
body.single-product.woocommerce-page div.product .indydtf-product-reviews input[type="text"],
body.single-product.woocommerce div.product .indydtf-product-reviews input[type="email"],
body.single-product.woocommerce-page div.product .indydtf-product-reviews input[type="email"],
body.single-product.woocommerce div.product .indydtf-product-reviews select,
body.single-product.woocommerce-page div.product .indydtf-product-reviews select,
body.single-product.woocommerce div.product .indydtf-product-reviews textarea,
body.single-product.woocommerce-page div.product .indydtf-product-reviews textarea {
  width: 100%;
  min-height: var(--indy-button-height-md);
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-sm);
  background: var(--indy-color-surface);
  color: var(--indy-color-ink);
  box-sizing: border-box;
}

body.single-product.woocommerce div.product .indydtf-product-reviews input:focus-visible,
body.single-product.woocommerce-page div.product .indydtf-product-reviews input:focus-visible,
body.single-product.woocommerce div.product .indydtf-product-reviews select:focus-visible,
body.single-product.woocommerce-page div.product .indydtf-product-reviews select:focus-visible,
body.single-product.woocommerce div.product .indydtf-product-reviews textarea:focus-visible,
body.single-product.woocommerce-page div.product .indydtf-product-reviews textarea:focus-visible {
  outline: none;
  box-shadow: var(--indy-button-focus-ring);
}

body.single-product.woocommerce div.product .indydtf-product-reviews .form-submit .submit,
body.single-product.woocommerce-page div.product .indydtf-product-reviews .form-submit .submit {
  min-height: var(--indy-button-height-md);
  padding: 0 var(--indy-space-5);
  border: 1px solid var(--color-primary);
  border-radius: var(--indy-radius-sm);
  background: var(--color-primary);
  color: var(--indy-color-surface);
  font-weight: 850;
}

@media (max-width: 1023px) {
  body.single-product.woocommerce div.product .indydtf-product-reviews__layout,
  body.single-product.woocommerce-page div.product .indydtf-product-reviews__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body.single-product.woocommerce div.product .indydtf-product-reviews,
  body.single-product.woocommerce-page div.product .indydtf-product-reviews {
    margin-top: var(--indy-space-6);
  }

  body.single-product.woocommerce div.product .indydtf-product-reviews__summary,
  body.single-product.woocommerce-page div.product .indydtf-product-reviews__summary,
  body.single-product.woocommerce div.product .indydtf-product-reviews__content,
  body.single-product.woocommerce-page div.product .indydtf-product-reviews__content {
    padding: var(--indy-space-4);
  }
}

/* Keep title-hidden commerce pages from touching the site header. */
body.woocommerce-cart .site-content > .ast-container,
body.woocommerce-checkout .site-content > .ast-container,
body.woocommerce-account .site-content > .ast-container,
body.woocommerce-shop .site-content > .ast-container,
body.post-type-archive-product .site-content > .ast-container,
body.tax-product_cat .site-content > .ast-container,
body.tax-product_tag .site-content > .ast-container,
body.page:not(.page-template-template-homepage):not(.page-template-template-studio-workspace):has(.tinv-wishlist) .site-content > .ast-container {
  width: min(calc(100% - (var(--site-gutter-desktop) * 2)), var(--site-content-width));
  max-width: var(--site-content-width);
  margin-inline: auto;
  padding-inline: 0;
  padding-top: clamp(28px, 3vw, 44px);
}

/* Locked full-bleed templates: do not let commerce/content width rules crop them. */
body.page-template-template-homepage .site-content > .ast-container,
body.page-template-template-studio-workspace .site-content > .ast-container {
  width: 100%;
  max-width: none;
  padding-inline: 0;
  padding-top: 0;
}

body.page-template-template-homepage #primary,
body.page-template-template-studio-workspace #primary {
  width: 100%;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  body.woocommerce-cart .site-content > .ast-container,
  body.woocommerce-checkout .site-content > .ast-container,
  body.woocommerce-account .site-content > .ast-container,
  body.woocommerce-shop .site-content > .ast-container,
  body.post-type-archive-product .site-content > .ast-container,
  body.tax-product_cat .site-content > .ast-container,
  body.tax-product_tag .site-content > .ast-container,
  body.page:not(.page-template-template-homepage):not(.page-template-template-studio-workspace):has(.tinv-wishlist) .site-content > .ast-container {
    width: min(calc(100% - (var(--site-gutter-mobile) * 2)), var(--site-content-width));
    padding-top: 24px;
  }

  body.page-template-template-homepage .site-content > .ast-container,
  body.page-template-template-studio-workspace .site-content > .ast-container {
    width: 100%;
    max-width: none;
    padding-inline: 0;
    padding-top: 0;
  }
}

body.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: minmax(232px, 292px) minmax(0, 1fr);
  gap: clamp(var(--indy-space-5), 2.4vw, var(--indy-space-8));
  align-items: start;
  margin-bottom: clamp(var(--indy-space-10), 6vw, var(--indy-space-16));
  padding: clamp(var(--indy-space-4), 2vw, var(--indy-space-6));
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--indy-radius-xl);
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 180, 0, 0.16), transparent 24rem),
    radial-gradient(circle at 92% 10%, rgba(58, 98, 186, 0.22), transparent 28rem),
    linear-gradient(135deg, #071226 0%, #0F2D68 52%, #071226 100%);
  box-shadow: 0 26px 70px rgba(7, 18, 38, 0.32);
}

body.woocommerce-account #content,
body.woocommerce-account .site-content {
  background:
    radial-gradient(circle at 18% 8%, rgba(245, 180, 0, 0.12), transparent 24rem),
    linear-gradient(180deg, #F7FAFD 0%, #EEF3FA 42%, #E8EEF7 100%);
}

body.woocommerce-account .woocommerce::before,
body.woocommerce-account .woocommerce::after {
  display: none;
  content: none;
}

body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: auto;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  position: sticky;
  top: 24px;
  overflow: hidden;
  margin: 0;
  padding: var(--indy-space-2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--indy-radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(7, 18, 38, 0.66);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  list-style: none;
  backdrop-filter: blur(18px);
}

body.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: var(--indy-space-3);
  padding: var(--indy-space-3) var(--indy-space-4);
  border-radius: var(--indy-radius-md);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a::before {
  content: none;
}

body.woocommerce-account .indydtf-account-nav-icon,
body.woocommerce-account .indydtf-account-action__icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  color: var(--color-secondary);
}

body.woocommerce-account .indydtf-account-nav-icon svg,
body.woocommerce-account .indydtf-account-action__icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
body.woocommerce-account .woocommerce-MyAccount-navigation a:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  color: #FFFFFF;
  box-shadow: inset 0 0 0 1px rgba(245, 180, 0, 0.22);
  transform: translateX(2px);
}

body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active .indydtf-account-nav-icon,
body.woocommerce-account .woocommerce-MyAccount-navigation a:hover .indydtf-account-nav-icon,
body.woocommerce-account .woocommerce-MyAccount-navigation a:focus-visible .indydtf-account-nav-icon {
  background: var(--color-secondary);
  color: #071226;
}

body.woocommerce-account .woocommerce-MyAccount-content {
  min-width: 0;
  padding: clamp(var(--indy-space-5), 2.4vw, var(--indy-space-8));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--indy-radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06)),
    rgba(7, 18, 38, 0.56);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

body.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
  margin-top: 0;
}

body.woocommerce-account .woocommerce-MyAccount-content a:not(.button):not(.indydtf-account-button):not(.indydtf-account-action) {
  color: #8FB2FF;
  font-weight: 700;
}

body.woocommerce-account .woocommerce-MyAccount-content .button,
body.woocommerce-account .woocommerce-MyAccount-content button.button,
body.woocommerce-account .woocommerce-MyAccount-content input.button {
  min-height: var(--indy-button-height-md);
  border-radius: var(--indy-radius-md);
  background: var(--color-primary);
  color: #FFFFFF;
  font-weight: 800;
}

body.woocommerce-account .woocommerce-MyAccount-content .button:hover,
body.woocommerce-account .woocommerce-MyAccount-content button.button:hover,
body.woocommerce-account .woocommerce-MyAccount-content input.button:hover {
  background: var(--color-primary-dark);
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--indy-radius-lg);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table th,
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table td {
  border-color: rgba(255, 255, 255, 0.12);
  padding: var(--indy-space-4);
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table thead th,
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table thead td {
  background: #FFFFFF;
  color: #14213D;
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table thead th strong,
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table thead td strong {
  color: #14213D;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address header,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-column__title {
  background: #FFFFFF;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address header h2,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-title h2,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-column__title {
  color: #14213D;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address .edit {
  color: #6D8DFF;
  font-weight: 700;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address {
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
}

.indydtf-address-book {
  display: grid;
  gap: var(--indy-space-5);
}

.indydtf-address-book__hero,
.indydtf-address-book__billing,
.indydtf-address-form,
.indydtf-address-book__empty,
.indydtf-address-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--indy-radius-lg);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.indydtf-address-book__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--indy-space-4);
  padding: var(--indy-space-5);
}

.indydtf-address-book__eyebrow {
  margin: 0 0 var(--indy-space-2);
  color: var(--color-secondary);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.indydtf-address-book__hero h2,
.indydtf-address-form h3,
.indydtf-address-card h3 {
  margin: 0;
  color: #FFFFFF;
  line-height: 1.2;
}

.indydtf-address-book__hero p:last-child {
  max-width: 720px;
  margin: var(--indy-space-2) 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.indydtf-address-book__primary,
.indydtf-address-book__billing a,
.indydtf-address-form__actions a,
.indydtf-address-card__actions a,
.indydtf-address-card__actions button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: var(--indy-space-2);
  border: 1px solid rgba(143, 178, 255, 0.34);
  border-radius: var(--indy-radius-md);
  padding: 0 var(--indy-space-4);
  background: rgba(143, 178, 255, 0.12);
  color: #AFC4FF;
  font-weight: 850;
  text-decoration: none;
}

.indydtf-address-book__primary {
  flex: 0 0 auto;
  border-color: rgba(245, 180, 0, 0.42);
  background: var(--color-secondary);
  color: #071226;
}

.indydtf-address-book__billing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--indy-space-4);
  padding: var(--indy-space-4);
}

.indydtf-address-book__billing span,
.indydtf-address-form label span {
  display: block;
  margin-bottom: var(--indy-space-2);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.indydtf-address-book__billing strong {
  color: #FFFFFF;
  line-height: 1.4;
}

.indydtf-address-book__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--indy-space-4);
}

.indydtf-address-card,
.indydtf-address-book__empty,
.indydtf-address-form {
  padding: var(--indy-space-5);
}

.indydtf-address-card {
  display: grid;
  gap: var(--indy-space-4);
  min-width: 0;
}

.indydtf-address-card.is-default {
  border-color: rgba(245, 180, 0, 0.42);
  box-shadow: 0 0 0 1px rgba(245, 180, 0, 0.08), 0 18px 42px rgba(0, 0, 0, 0.2);
}

.indydtf-address-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--indy-space-3);
}

.indydtf-address-card header span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-top: var(--indy-space-2);
  border-radius: 999px;
  padding: 0 var(--indy-space-3);
  background: rgba(245, 180, 0, 0.16);
  color: var(--color-secondary);
  font-size: 0.78rem;
  font-weight: 900;
}

.indydtf-address-card address {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.65;
}

.indydtf-address-card__notes {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.5;
}

.indydtf-address-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--indy-space-2);
}

.indydtf-address-card__action-form {
  margin: 0;
}

.indydtf-address-card__actions button {
  appearance: none;
  cursor: pointer;
}

.indydtf-address-card__actions .indydtf-address-card__delete {
  border-color: rgba(248, 113, 113, 0.34);
  background: rgba(248, 113, 113, 0.11);
  color: #FCA5A5;
}

.indydtf-address-book__empty {
  grid-column: 1 / -1;
}

.indydtf-address-book__empty h3,
.indydtf-address-book__empty p {
  margin: 0;
}

.indydtf-address-book__empty p {
  margin-top: var(--indy-space-2);
  color: rgba(255, 255, 255, 0.68);
}

.indydtf-address-form {
  scroll-margin-top: var(--indy-space-6);
}

.indydtf-address-form form {
  display: grid;
  gap: var(--indy-space-4);
  margin-top: var(--indy-space-4);
}

.indydtf-address-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--indy-space-4);
}

.indydtf-address-form__full {
  grid-column: 1 / -1;
}

.indydtf-address-form input[type="text"],
.indydtf-address-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--indy-radius-md);
  background: rgba(255, 255, 255, 0.95);
  color: #14213D;
}

.indydtf-address-form__default {
  display: flex;
  align-items: center;
  gap: var(--indy-space-2);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 750;
}

.indydtf-address-form__default span {
  margin: 0;
  color: inherit;
  font-size: 0.95rem;
  text-transform: none;
}

.indydtf-address-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--indy-space-3);
}

body.woocommerce-account .woocommerce-MyAccount-content p mark,
body.woocommerce-account .woocommerce-MyAccount-content p .order-number,
body.woocommerce-account .woocommerce-MyAccount-content p .order-date,
body.woocommerce-account .woocommerce-MyAccount-content p .order-status {
  padding: 0;
  background: transparent;
  color: #FFFFFF;
  font-weight: 750;
}

body.woocommerce-account .woocommerce-MyAccount-content p .order-status {
  color: var(--color-secondary);
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker {
  --indydtf-order-progress: 0%;
  --indydtf-order-tracker-accent: #FBBF24;
  --indydtf-order-tracker-accent-dark: #D97706;
  --indydtf-order-tracker-muted: rgba(255, 255, 255, 0.68);
  position: relative;
  margin: 0 0 clamp(26px, 4vw, 42px);
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 121, 255, 0.34), transparent 36%),
    linear-gradient(135deg, rgba(20, 33, 61, 0.98), rgba(42, 56, 91, 0.96));
  box-shadow: 0 24px 70px rgba(3, 10, 28, 0.28);
  color: #FFFFFF;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.13), transparent 28%, transparent 68%, rgba(255, 255, 255, 0.06));
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__summary,
body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__rail {
  position: relative;
  z-index: 1;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__summary {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: clamp(24px, 4vw, 34px);
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__eyebrow {
  margin: 0 0 8px;
  color: #AFC3FF;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker h2 {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__summary p:not(.indydtf-order-tracker__eyebrow) {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--indydtf-order-tracker-muted);
  font-size: 16px;
  line-height: 1.55;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(251, 191, 36, 0.36);
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.12);
  color: #FDE68A;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__rail {
  padding: 22px 0 0;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__rail::before,
body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__fill {
  content: "";
  position: absolute;
  top: 50px;
  left: 9%;
  right: 9%;
  height: 8px;
  border-radius: 999px;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__rail::before {
  background: rgba(255, 255, 255, 0.10);
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__fill {
  width: calc((100% - 18%) * var(--indydtf-order-progress) / 100);
  right: auto;
  background: linear-gradient(90deg, #60A5FA, var(--indydtf-order-tracker-accent));
  box-shadow: 0 0 28px rgba(251, 191, 36, 0.28);
  transition: width 320ms ease;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__step::before {
  content: "";
  position: absolute;
  top: 2px;
  width: 84px;
  height: 84px;
  border-radius: 24px;
  background: #283550;
  opacity: 0.88;
  filter: blur(2px);
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__label {
  position: relative;
  z-index: 1;
  max-width: 112px;
  color: currentColor;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__step.is-complete {
  color: #BFDBFE;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__step.is-complete .indydtf-order-tracker__marker {
  border-color: rgba(96, 165, 250, 0.44);
  background: linear-gradient(135deg, #2563EB, #0F766E);
  color: #FFFFFF;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__step.is-current {
  color: #FFFFFF;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__step.is-current .indydtf-order-tracker__marker {
  transform: translateY(-9px) scale(1.08);
  border-color: rgba(255, 255, 255, 0.54);
  background: linear-gradient(180deg, #FDE68A 0%, #FBBF24 52%, #D97706 100%);
  color: #14213D;
  box-shadow: 0 18px 32px rgba(251, 191, 36, 0.3);
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker--complete {
  --indydtf-order-tracker-accent: #34D399;
  --indydtf-order-tracker-accent-dark: #059669;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker--complete .indydtf-order-tracker__status {
  border-color: rgba(52, 211, 153, 0.36);
  background: rgba(52, 211, 153, 0.13);
  color: #BBF7D0;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker--attention {
  --indydtf-order-tracker-accent: #FB923C;
  --indydtf-order-tracker-accent-dark: #EA580C;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker--stopped {
  --indydtf-order-tracker-accent: #F87171;
  --indydtf-order-tracker-accent-dark: #DC2626;
}

body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker--stopped .indydtf-order-tracker__status,
body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker--attention .indydtf-order-tracker__status {
  border-color: rgba(251, 146, 60, 0.38);
  background: rgba(251, 146, 60, 0.12);
  color: #FED7AA;
}

@media (max-width: 820px) {
  body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker {
    border-radius: 20px;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__summary {
    display: grid;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__status {
    justify-self: start;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__rail {
    padding-top: 4px;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__rail::before,
  body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__fill {
    top: 0;
    bottom: 0;
    left: 22px;
    right: auto;
    width: 8px;
    height: auto;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__fill {
    width: 8px;
    height: calc((100% - 64px) * var(--indydtf-order-progress) / 100);
  }

  body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__step {
    grid-template-columns: 60px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__marker {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 19px;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__step::before {
    top: -8px;
    left: -7px;
    width: 66px;
    height: 66px;
    border-radius: 20px;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__step.is-current .indydtf-order-tracker__marker {
    transform: scale(1.04);
  }

  body.woocommerce-account .woocommerce-MyAccount-content .indydtf-order-tracker__label {
    max-width: none;
    font-size: 13px;
  }
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-order-details__title {
  color: #FFFFFF;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-column__title {
  color: #14213D;
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details thead th {
  color: #14213D;
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details .indydtf-thankyou-product-title a,
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details .indydtf-thankyou-product-title {
  color: #AFC3FF;
  font-weight: 600;
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details .indydtf-thankyou-product {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: var(--indy-space-4);
  align-items: start;
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details .indydtf-thankyou-product__preview {
  display: grid;
  width: 104px;
  min-height: 132px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(143, 178, 255, 0.28);
  border-radius: var(--indy-radius-md);
  background: #FFFFFF;
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details .indydtf-thankyou-product__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details .indydtf-thankyou-product__body {
  min-width: 0;
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details .indydtf-thankyou-item-meta {
  display: grid;
  gap: 5px;
  margin: var(--indy-space-3) 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.45;
  list-style: none;
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details .indydtf-thankyou-item-meta li {
  margin: 0;
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details .indydtf-thankyou-item-meta .wc-item-meta-label {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details .indydtf-thankyou-line-total {
  display: block;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details .indydtf-thankyou-line-breakdown {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: normal;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details address {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

body.woocommerce-account .woocommerce-MyAccount-content fieldset {
  margin-top: var(--indy-space-6);
  padding: var(--indy-space-5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--indy-radius-lg);
}

body.woocommerce-account .woocommerce-MyAccount-content input.input-text,
body.woocommerce-account .woocommerce-MyAccount-content textarea,
body.woocommerce-account .woocommerce-MyAccount-content select {
  min-height: 44px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: var(--indy-radius-md);
  background: rgba(255, 255, 255, 0.92);
  color: #071226;
}

body.woocommerce-account .woocommerce-MyAccount-content input.input-text:focus,
body.woocommerce-account .woocommerce-MyAccount-content textarea:focus,
body.woocommerce-account .woocommerce-MyAccount-content select:focus {
  border-color: var(--color-primary);
  box-shadow: var(--indy-button-focus-ring);
  outline: 0;
}

body.woocommerce-account .woocommerce-breadcrumb {
  margin-bottom: var(--indy-space-6);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

body.woocommerce-account .woocommerce-breadcrumb a {
  color: #8FB2FF;
  font-weight: 750;
  text-decoration: none;
}

body.woocommerce-account .woocommerce-MyAccount-content h1,
body.woocommerce-account .woocommerce-MyAccount-content h2,
body.woocommerce-account .woocommerce-MyAccount-content h3,
body.woocommerce-account .woocommerce-MyAccount-content h4,
body.woocommerce-account .woocommerce-MyAccount-content legend,
body.woocommerce-account .woocommerce-MyAccount-content label,
body.woocommerce-account .woocommerce-MyAccount-content strong {
  color: #FFFFFF;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error {
  border-color: rgba(245, 180, 0, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.indydtf-account-dashboard {
  display: grid;
  gap: var(--indy-space-6);
}

.indydtf-account-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: var(--indy-space-6);
  align-items: stretch;
  padding: clamp(var(--indy-space-6), 4vw, var(--indy-space-10));
  border-radius: var(--indy-radius-xl);
  background:
    radial-gradient(circle at 86% 14%, rgba(245, 180, 0, 0.28), transparent 15rem),
    linear-gradient(135deg, rgba(15, 45, 104, 0.86), rgba(23, 63, 138, 0.72));
  color: #FFFFFF;
}

.indydtf-account-hero__content,
.indydtf-account-hero__panel {
  position: relative;
  z-index: 1;
}

.indydtf-account-hero__eyebrow,
.indydtf-account-card__eyebrow {
  margin: 0 0 var(--indy-space-2);
  color: var(--color-secondary);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.indydtf-account-hero h2 {
  max-width: 760px;
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.indydtf-account-hero__content > p:not(.indydtf-account-hero__eyebrow) {
  max-width: 680px;
  margin: var(--indy-space-4) 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.65;
}

.indydtf-account-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--indy-space-3);
  margin-top: var(--indy-space-6);
}

.indydtf-account-button {
  display: inline-flex;
  min-height: var(--indy-button-height-lg);
  align-items: center;
  justify-content: center;
  padding: 0 var(--indy-space-5);
  border: 1px solid transparent;
  border-radius: var(--indy-radius-md);
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.indydtf-account-button--primary {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
}

.indydtf-account-button--secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.indydtf-account-hero__panel {
  display: grid;
  min-height: 220px;
  align-content: end;
  padding: var(--indy-space-5);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--indy-radius-lg);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.indydtf-account-hero__orb {
  width: 72px;
  height: 72px;
  margin-bottom: auto;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.22)),
    var(--color-secondary);
  box-shadow: 0 18px 38px rgba(15, 45, 104, 0.24);
}

.indydtf-account-hero__panel p {
  margin: var(--indy-space-6) 0 var(--indy-space-3);
  color: #FFFFFF;
  font-weight: 850;
}

.indydtf-account-hero__panel ol {
  display: grid;
  gap: var(--indy-space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.indydtf-account-hero__panel li {
  display: flex;
  align-items: center;
  gap: var(--indy-space-2);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.indydtf-account-hero__panel li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
  content: "";
}

.indydtf-account-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--indy-space-3);
}

.indydtf-account-stat {
  display: grid;
  gap: var(--indy-space-1);
  min-width: 0;
  padding: var(--indy-space-5);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--indy-radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.indydtf-account-stat span,
.indydtf-account-stat em {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.35;
}

.indydtf-account-stat strong {
  color: #FFFFFF;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.08;
}

.indydtf-account-dashboard__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: var(--indy-space-5);
}

.indydtf-account-card {
  min-width: 0;
  padding: var(--indy-space-5);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--indy-radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.indydtf-account-card--wide {
  grid-row: span 2;
}

.indydtf-account-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--indy-space-4);
  margin-bottom: var(--indy-space-5);
}

.indydtf-account-card h3 {
  margin: 0;
  color: #FFFFFF;
  font-size: 1.2rem;
  line-height: 1.25;
}

.indydtf-account-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--indy-space-3);
}

.indydtf-account-action {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: var(--indy-space-3);
  min-width: 0;
  min-height: 124px;
  align-items: start;
  padding: var(--indy-space-4);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--indy-radius-md);
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.indydtf-account-action:hover,
.indydtf-account-action:focus-visible {
  border-color: rgba(245, 180, 0, 0.34);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.indydtf-account-action__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--indy-radius-md);
  background: rgba(245, 180, 0, 0.14);
  color: var(--color-secondary);
}

.indydtf-account-action strong {
  display: block;
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.25;
}

.indydtf-account-action em {
  display: block;
  margin-top: var(--indy-space-2);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.45;
}

.indydtf-account-order,
.indydtf-account-empty,
.indydtf-account-checklist {
  display: grid;
  gap: var(--indy-space-3);
}

.indydtf-account-order {
  padding: var(--indy-space-4);
  border-radius: var(--indy-radius-md);
  background: rgba(255, 255, 255, 0.075);
}

.indydtf-account-order span,
.indydtf-account-order em,
.indydtf-account-empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-style: normal;
  line-height: 1.5;
}

.indydtf-account-order strong,
.indydtf-account-empty strong {
  color: #FFFFFF;
  font-size: 1.35rem;
  line-height: 1.2;
}

.indydtf-account-order a,
.indydtf-account-empty a,
.indydtf-account-checklist a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: var(--indy-space-3);
  color: #8FB2FF;
  font-weight: 800;
  text-decoration: none;
}

.indydtf-account-order a::after,
.indydtf-account-empty a::after,
.indydtf-account-checklist a::after {
  content: ">";
}

.indydtf-account-checklist a {
  padding: var(--indy-space-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.indydtf-account-checklist a:last-child {
  border-bottom: 0;
}

@media (max-width: 1023px) {
  body.woocommerce-account .woocommerce {
    grid-template-columns: minmax(0, 1fr);
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation a {
    height: 100%;
  }

  .indydtf-account-hero,
  .indydtf-account-dashboard__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .indydtf-address-book__hero,
  .indydtf-address-book__billing {
    align-items: stretch;
    flex-direction: column;
  }

  .indydtf-address-book__primary,
  .indydtf-address-book__billing a {
    width: 100%;
  }

  .indydtf-address-book__grid,
  .indydtf-address-form__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .indydtf-address-card__actions,
  .indydtf-address-card__action-form,
  .indydtf-address-card__actions a,
  .indydtf-address-card__actions button {
    width: 100%;
  }

  .indydtf-account-card--wide {
    grid-row: auto;
  }
}

@media (max-width: 767px) {
  body.woocommerce-account .site-content > .ast-container {
    width: min(calc(100% - 16px), var(--site-content-width));
    padding-top: var(--indy-space-4);
  }

  body.woocommerce-account .woocommerce {
    gap: var(--indy-space-4);
    margin-bottom: var(--indy-space-8);
    padding: var(--indy-space-3);
    border-radius: 18px;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow: visible;
    gap: 0;
    padding: 10px;
    border-radius: 16px;
    scroll-snap-type: none;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation li {
    min-width: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    scroll-snap-align: none;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
    border-bottom: 0;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation a {
    min-height: 56px;
    width: 100%;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.98rem;
    white-space: nowrap;
  }

  body.woocommerce-account .indydtf-account-nav-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  body.woocommerce-account .woocommerce-MyAccount-content {
    padding: var(--indy-space-4);
    border-radius: 16px;
  }

  .indydtf-account-hero {
    padding: var(--indy-space-5);
    border-radius: 16px;
  }

  .indydtf-account-hero h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .indydtf-account-hero__content > p:not(.indydtf-account-hero__eyebrow) {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .indydtf-account-hero__panel {
    min-height: 0;
    padding: var(--indy-space-4);
  }

  .indydtf-account-stats,
  .indydtf-account-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .indydtf-account-card {
    padding: var(--indy-space-4);
    border-radius: 14px;
  }

  .indydtf-account-card__header {
    display: grid;
    gap: var(--indy-space-2);
  }

  body.woocommerce-account .woocommerce-MyAccount-content h1,
  body.woocommerce-account .woocommerce-MyAccount-content h2 {
    font-size: clamp(1.45rem, 1.2rem + 2.4vw, 2rem);
    line-height: 1.14;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-radius: 14px;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table th,
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table td {
    padding: 12px;
    font-size: 0.92rem;
    line-height: 1.4;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive:not(.tinvwl-table-manage-list),
  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table,
  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods {
    display: block;
    width: 100%;
    min-width: 100%;
    overflow: visible;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive:not(.tinvwl-table-manage-list) thead,
  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table thead,
  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods thead {
    display: none;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive:not(.tinvwl-table-manage-list) tbody,
  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table tbody,
  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods tbody {
    display: grid;
    width: 100%;
    gap: var(--indy-space-3);
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive:not(.tinvwl-table-manage-list) tr,
  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table tr,
  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods tr {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive:not(.tinvwl-table-manage-list) td,
  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table td,
  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td {
    display: flex;
    width: 100% !important;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: var(--indy-space-3);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 14px;
    text-align: right !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive:not(.tinvwl-table-manage-list) td:last-child,
  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table td:last-child,
  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td:last-child {
    border-bottom: 0;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table_responsive:not(.tinvwl-table-manage-list) td::before,
  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table td::before,
  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td::before {
    float: none;
    min-width: max-content;
    padding-right: var(--indy-space-2);
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
    text-align: left;
    content: attr(data-title) ":";
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table td.woocommerce-orders-table__cell-order-actions,
  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td.woocommerce-PaymentMethod--actions {
    justify-content: flex-end;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table td.woocommerce-orders-table__cell-order-actions::before,
  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td.woocommerce-PaymentMethod--actions::before {
    margin-right: auto;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table .button,
  body.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .button {
    min-width: 112px;
    justify-content: center;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses,
  body.woocommerce-account .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--indy-space-4);
  }

  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address,
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields,
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details {
    width: 100%;
    border-radius: 14px;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address header,
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-column__title {
    padding: 14px 16px;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address,
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details address {
    padding: 16px;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .form-row,
  body.woocommerce-account .woocommerce-MyAccount-content .form-row-first,
  body.woocommerce-account .woocommerce-MyAccount-content .form-row-last {
    float: none;
    width: 100%;
  }

  body.woocommerce-account .woocommerce-MyAccount-content fieldset {
    padding: var(--indy-space-4);
    border-radius: 14px;
  }

  body.woocommerce-account .woocommerce-MyAccount-content input.input-text,
  body.woocommerce-account .woocommerce-MyAccount-content textarea,
  body.woocommerce-account .woocommerce-MyAccount-content select {
    font-size: 16px;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.94rem;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details .indydtf-thankyou-product {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: var(--indy-space-3);
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details .indydtf-thankyou-product__preview {
    width: 76px;
    min-height: 96px;
  }
}

@media (max-width: 520px) {
  body.woocommerce-account .site-content > .ast-container {
    width: min(calc(100% - 10px), var(--site-content-width));
  }

  body.woocommerce-account .woocommerce {
    padding: 10px;
    border-radius: 16px;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    padding: 8px;
    border-radius: 14px;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation a {
    min-height: 54px;
    padding: 9px 10px;
    font-size: 0.95rem;
  }

  body.woocommerce-account .woocommerce-MyAccount-content {
    padding: 14px;
    border-radius: 14px;
  }

  .indydtf-account-hero__actions,
  .indydtf-account-button {
    width: 100%;
  }

  .indydtf-account-stats,
  .indydtf-account-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .indydtf-account-action {
    min-height: 0;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table th,
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table td {
    padding: 10px;
    font-size: 0.88rem;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details .indydtf-thankyou-product {
    grid-template-columns: minmax(0, 1fr);
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details .indydtf-thankyou-product__preview {
    width: 92px;
    min-height: 112px;
  }
}

body.woocommerce-shop #primary,
body.post-type-archive-product #primary,
body.tax-product_cat #primary,
body.tax-product_tag #primary {
  width: 100%;
  max-width: none;
  margin-top: 0;
}

/* Modern Shop archive. Scope tightly so Home, Studio, Cart, Account, and product pages keep their own widths. */
body.woocommerce-shop .site-content > .ast-container,
body.post-type-archive-product .site-content > .ast-container,
body.tax-product_cat .site-content > .ast-container,
body.tax-product_tag .site-content > .ast-container {
  width: min(calc(100% - (var(--site-gutter-desktop) * 2)), var(--site-wide-width));
  max-width: var(--site-wide-width);
  padding-top: 0;
}

body.woocommerce-shop .site-content,
body.post-type-archive-product .site-content,
body.tax-product_cat .site-content,
body.tax-product_tag .site-content,
body.woocommerce-shop #content,
body.post-type-archive-product #content,
body.tax-product_cat #content,
body.tax-product_tag #content {
  padding-top: 0;
  margin-top: 0;
}

body.woocommerce-shop .woocommerce-products-header,
body.post-type-archive-product .woocommerce-products-header,
body.tax-product_cat .woocommerce-products-header,
body.tax-product_tag .woocommerce-products-header {
  display: none;
}

body.woocommerce-shop .entry-title,
body.woocommerce-shop main .page-title,
body.post-type-archive-product .entry-title,
body.post-type-archive-product main .page-title,
body.tax-product_cat .entry-title,
body.tax-product_cat main .page-title,
body.tax-product_tag .entry-title,
body.tax-product_tag main .page-title,
body.tax-product_brand .entry-title,
body.tax-product_brand main .page-title,
body.tax-pwb-brand .entry-title,
body.tax-pwb-brand main .page-title,
body.tax-pa_brand .entry-title,
body.tax-pa_brand main .page-title,
body.tax-yith_product_brand .entry-title,
body.tax-yith_product_brand main .page-title,
body.woocommerce-shop .ast-archive-description,
body.post-type-archive-product .ast-archive-description,
body.tax-product_cat .ast-archive-description,
body.tax-product_tag .ast-archive-description,
body.tax-product_brand .ast-archive-description,
body.tax-pwb-brand .ast-archive-description,
body.tax-pa_brand .ast-archive-description,
body.tax-yith_product_brand .ast-archive-description,
body.woocommerce-shop .ast-breadcrumbs-wrapper,
body.post-type-archive-product .ast-breadcrumbs-wrapper,
body.tax-product_cat .ast-breadcrumbs-wrapper,
body.tax-product_tag .ast-breadcrumbs-wrapper,
body.tax-product_brand .ast-breadcrumbs-wrapper,
body.tax-pwb-brand .ast-breadcrumbs-wrapper,
body.tax-pa_brand .ast-breadcrumbs-wrapper,
body.tax-yith_product_brand .ast-breadcrumbs-wrapper,
body.woocommerce-shop .woocommerce-breadcrumb,
body.post-type-archive-product .woocommerce-breadcrumb,
body.tax-product_cat .woocommerce-breadcrumb,
body.tax-product_tag .woocommerce-breadcrumb,
body.tax-product_brand .woocommerce-breadcrumb,
body.tax-pwb-brand .woocommerce-breadcrumb,
body.tax-pa_brand .woocommerce-breadcrumb,
body.tax-yith_product_brand .woocommerce-breadcrumb,
body.woocommerce-shop .site-main > .woocommerce-breadcrumb,
body.post-type-archive-product .site-main > .woocommerce-breadcrumb,
body.tax-product_cat .site-main > .woocommerce-breadcrumb,
body.tax-product_tag .site-main > .woocommerce-breadcrumb,
body.tax-product_brand .site-main > .woocommerce-breadcrumb,
body.tax-pwb-brand .site-main > .woocommerce-breadcrumb,
body.tax-pa_brand .site-main > .woocommerce-breadcrumb,
body.tax-yith_product_brand .site-main > .woocommerce-breadcrumb {
  display: none;
}

body.woocommerce-shop .woocommerce-products-header__title,
body.post-type-archive-product .woocommerce-products-header__title,
body.tax-product_cat .woocommerce-products-header__title,
body.tax-product_tag .woocommerce-products-header__title {
  color: var(--color-primary-dark);
  font-weight: 950;
  letter-spacing: 0;
}

.indydtf-shop-shell {
  position: relative;
}

.indydtf-shop-hero {
  position: relative;
  display: grid;
  width: 100vw;
  min-height: clamp(250px, 28vw, 420px);
  overflow: hidden;
  align-items: end;
  margin-right: calc(50% - 50vw);
  margin-bottom: var(--indy-space-5);
  margin-left: calc(50% - 50vw);
  padding: clamp(var(--indy-space-5), 4vw, var(--indy-space-9));
  padding-right: max(var(--site-gutter-desktop), calc((100vw - var(--site-wide-width)) / 2 + var(--site-gutter-desktop)));
  padding-left: max(var(--site-gutter-desktop), calc((100vw - var(--site-wide-width)) / 2 + var(--site-gutter-desktop)));
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(5, 22, 61, 0.92) 0%, rgba(5, 22, 61, 0.76) 34%, rgba(5, 22, 61, 0.18) 74%),
    radial-gradient(circle at 86% 20%, rgba(238, 52, 52, 0.2), transparent 24rem),
    linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: var(--indy-color-surface);
  box-shadow: var(--indy-shadow-md);
}

.indydtf-shop-hero--has-image {
  min-height: clamp(310px, 28vw, 440px);
  overflow: visible;
  margin-bottom: calc(var(--indy-space-7) + clamp(28px, 4vw, 62px));
  background:
    linear-gradient(90deg, rgba(5, 22, 61, 0.94) 0%, rgba(5, 22, 61, 0.82) 46%, rgba(5, 22, 61, 0.36) 100%),
    radial-gradient(circle at 78% 22%, rgba(238, 52, 52, 0.18), transparent 23rem),
    linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

.indydtf-shop-hero--placeholder::after {
  position: absolute;
  right: clamp(24px, 7vw, 110px);
  bottom: clamp(20px, 4vw, 70px);
  width: clamp(160px, 24vw, 340px);
  aspect-ratio: 1.55;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--indy-radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.13) 0 10px, transparent 10px 20px);
  content: "";
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), var(--indy-shadow-md);
}

.indydtf-shop-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.indydtf-shop-hero__art {
  position: absolute;
  z-index: 1;
  right: max(var(--site-gutter-desktop), calc((100vw - var(--site-wide-width)) / 2 + var(--site-gutter-desktop)));
  bottom: clamp(-66px, -4.4vw, -34px);
  width: min(54vw, 760px);
  max-width: 52rem;
  margin: 0;
  pointer-events: none;
}

.indydtf-shop-hero__art::before {
  content: none;
}

.indydtf-shop-hero__art img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 34px rgba(5, 22, 61, 0.34));
}

.indydtf-shop-hero__eyebrow {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin: 0 0 var(--indy-space-3);
  padding: 0 var(--indy-space-3);
  border-radius: var(--indy-radius-pill);
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-secondary);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.indydtf-shop-hero h1 {
  max-width: 620px;
  margin: 0;
  color: inherit;
  font-size: clamp(2rem, 4.1vw, 4.25rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
}

.indydtf-shop-hero__content > p:not(.indydtf-shop-hero__eyebrow) {
  max-width: 560px;
  margin: var(--indy-space-4) 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.5;
}

.indydtf-shop-hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: var(--indy-space-3);
  margin-top: var(--indy-space-8);
  margin-bottom: var(--indy-space-6);
}

.indydtf-shop-hero__stats span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: var(--indy-space-2);
  padding: 0 var(--indy-space-3) 0 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--indy-radius-pill);
  background: rgba(255, 255, 255, 0.1);
  color: var(--indy-color-surface);
  font-size: 0.88rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.indydtf-shop-hero__stats i {
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: var(--indy-radius-pill);
  background: var(--indy-color-surface);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.indydtf-shop-hero__stats i::before {
  display: block;
  width: 18px;
  height: 18px;
  margin: auto;
  background: var(--color-primary);
  content: "";
  -webkit-mask: var(--indydtf-shop-stat-icon) center / contain no-repeat;
  mask: var(--indydtf-shop-stat-icon) center / contain no-repeat;
}

.indydtf-shop-hero__stats span:nth-child(2) i::before {
  background: #e83f8d;
}

.indydtf-shop-hero__stats span:nth-child(3) i::before {
  background: var(--color-primary-dark);
}

.indydtf-shop-breadcrumb {
  margin: 0 0 var(--indy-space-5);
  color: var(--indy-color-muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.indydtf-shop-breadcrumb .woocommerce-breadcrumb {
  display: block;
  margin: 0;
  color: inherit;
}

.indydtf-shop-breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
}

.indydtf-shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: var(--indy-space-4);
  align-items: end;
  margin-bottom: var(--indy-space-3);
}

.indydtf-shop-toolbar .woocommerce-ordering {
  float: none;
  margin: 0 0 0 auto;
}

.indydtf-shop-toolbar__eyebrow,
.indydtf-shop-toolbar__text {
  margin: 0;
}

.indydtf-shop-toolbar__eyebrow {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.indydtf-shop-toolbar__text {
  max-width: 660px;
  color: var(--indy-color-muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.indydtf-shop-filter-toggle {
  display: none;
  min-height: var(--indy-button-height-md);
  align-items: center;
  gap: var(--indy-space-2);
  padding: 0 var(--indy-space-4);
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-md);
  background: var(--indy-color-surface);
  color: var(--color-primary-dark);
  font-weight: 850;
  box-shadow: var(--indy-shadow-sm);
}

.indydtf-shop-filter-toggle span {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 12px;
  color: var(--color-accent);
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.indydtf-shop-filter-toggle span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 2px solid currentColor;
  content: "";
  transform: translateY(-50%);
}

.indydtf-shop-layout {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: var(--indy-space-6);
  align-items: start;
}

.indydtf-shop-filters {
  position: sticky;
  top: var(--indy-space-5);
  z-index: 3;
}

.indydtf-shop-filters__form {
  overflow: hidden;
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-lg);
  background: var(--indy-color-surface);
  box-shadow: var(--indy-shadow-md);
}

.indydtf-shop-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--indy-space-3);
  padding: var(--indy-space-4);
  border-bottom: 1px solid var(--indy-color-border);
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: var(--indy-color-surface);
}

.indydtf-shop-filters__head strong {
  font-size: 1.02rem;
  font-weight: 760;
}

.indydtf-shop-filters__head a,
.indydtf-shop-filters__close {
  color: var(--indy-color-surface);
  font-weight: 720;
  text-decoration: none;
}

.indydtf-shop-filters__close {
  display: none;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--indy-radius-pill);
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.3rem;
  line-height: 1;
}

.indydtf-shop-filter-block {
  padding: var(--indy-space-4);
  border-bottom: 1px solid var(--indy-color-border);
}

.indydtf-shop-filter-block h2 {
  margin: 0 0 var(--indy-space-3);
  color: var(--color-primary-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.indydtf-shop-filter-list {
  display: grid;
  gap: var(--indy-space-2);
}

.indydtf-shop-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: var(--indy-space-2);
  align-items: center;
  color: var(--indy-color-muted);
  font-size: 0.86rem;
  font-weight: 560;
}

.indydtf-shop-check input,
.indydtf-shop-filter-block--chips input {
  accent-color: var(--color-primary);
}

.indydtf-shop-check small {
  color: color-mix(in srgb, var(--indy-color-muted) 76%, var(--indy-color-surface));
  font-weight: 650;
}

.indydtf-shop-size-groups {
  display: grid;
  gap: var(--indy-space-3);
}

.indydtf-shop-size-group {
  display: grid;
  gap: 7px;
}

.indydtf-shop-size-group > strong {
  color: color-mix(in srgb, var(--color-primary-dark) 86%, var(--indy-color-muted));
  font-size: 0.76rem;
  font-weight: 680;
}

.indydtf-shop-size-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.indydtf-shop-size-filter {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-md);
  background: var(--indy-color-surface);
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.indydtf-shop-size-filter input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.indydtf-shop-size-filter:has(input:checked) {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 9%, var(--indy-color-surface));
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 13%, transparent);
  color: var(--color-primary);
}

.indydtf-shop-color-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.indydtf-shop-color-filter {
  display: grid;
  min-height: 74px;
  place-items: center;
  gap: 4px;
  padding: 7px 4px;
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-md);
  background: var(--indy-color-surface);
  color: var(--indy-color-muted);
  font-size: 0.66rem;
  font-weight: 650;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
}

.indydtf-shop-color-filter input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.indydtf-shop-color-filter__chip {
  width: 30px;
  height: 30px;
  display: block;
  border: 1px solid color-mix(in srgb, var(--indydtf-shop-filter-chip, #d0d5dd) 58%, var(--indy-color-border));
  border-radius: 999px;
  background: var(--indydtf-shop-filter-chip, #d0d5dd);
  box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--indy-color-surface) 72%, transparent);
}

.indydtf-shop-color-filter:has(input:checked) {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 14%, transparent);
}

.indydtf-shop-filter-block--chips {
  display: grid;
  gap: var(--indy-space-2);
}

.indydtf-shop-filter-block--chips label {
  display: flex;
  gap: var(--indy-space-2);
  align-items: center;
  color: var(--indy-color-muted);
  font-size: 0.86rem;
  font-weight: 560;
}

.indydtf-shop-filters__actions {
  display: grid;
  gap: var(--indy-space-2);
  padding: var(--indy-space-4);
}

.indydtf-shop-filters__apply,
.indydtf-shop-filters__clear {
  display: inline-flex;
  min-height: var(--indy-button-height-md);
  align-items: center;
  justify-content: center;
  border-radius: var(--indy-radius-md);
  font-weight: 760;
  text-decoration: none;
}

.indydtf-shop-filters__apply {
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: var(--indy-color-surface);
}

.indydtf-shop-filters__clear {
  border: 1px solid color-mix(in srgb, var(--color-accent) 55%, var(--indy-color-border));
  background: var(--indy-color-surface);
  color: var(--color-accent);
}

.indydtf-shop-results {
  min-width: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

html.indydtf-shop-filtering .indydtf-shop-results {
  opacity: 0.62;
  transform: translateY(5px);
  pointer-events: none;
}

.indydtf-shop-filters__form.is-applying {
  cursor: progress;
}

.indydtf-shop-filters__form.is-applying .indydtf-shop-check,
.indydtf-shop-filters__form.is-applying .indydtf-shop-color-filter,
.indydtf-shop-filters__form.is-applying .indydtf-shop-filter-block--chips label {
  opacity: 0.72;
}

.indydtf-shop-active-picks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--indy-space-2);
  margin-bottom: var(--indy-space-4);
}

.indydtf-shop-active-picks a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 var(--indy-space-3);
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-pill);
  background: var(--indy-color-surface);
  color: var(--color-primary-dark);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: var(--indy-shadow-sm);
}

.indydtf-shop-active-picks a:hover,
.indydtf-shop-active-picks a:focus-visible,
.indydtf-shop-active-picks a.is-active {
  border-color: color-mix(in srgb, var(--color-primary) 58%, var(--indy-color-border));
  background: color-mix(in srgb, var(--color-primary) 10%, var(--indy-color-surface));
  color: var(--color-primary-dark);
}

.indydtf-shop-active-picks a.is-active {
  box-shadow: inset 0 -2px 0 var(--color-secondary), var(--indy-shadow-sm);
}

body.woocommerce-shop .woocommerce-result-count,
body.post-type-archive-product .woocommerce-result-count,
body.tax-product_cat .woocommerce-result-count,
body.tax-product_tag .woocommerce-result-count {
  color: var(--indy-color-muted);
  font-weight: 750;
}

body.woocommerce-shop .woocommerce-ordering select,
body.post-type-archive-product .woocommerce-ordering select,
body.tax-product_cat .woocommerce-ordering select,
body.tax-product_tag .woocommerce-ordering select {
  min-height: var(--indy-button-height-md);
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-md);
  color: var(--color-primary-dark);
  font-weight: 800;
}

body.woocommerce-shop ul.products,
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--indy-space-5);
}

body.woocommerce-shop ul.products::before,
body.woocommerce-shop ul.products::after,
body.post-type-archive-product ul.products::before,
body.post-type-archive-product ul.products::after,
body.tax-product_cat ul.products::before,
body.tax-product_cat ul.products::after,
body.tax-product_tag ul.products::before,
body.tax-product_tag ul.products::after {
  content: none;
}

body.woocommerce-shop ul.products li.product,
body.post-type-archive-product ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product {
  --indydtf-shop-card-action-gap: 8px;
  --indydtf-shop-card-action-size: 40px;
  --indydtf-shop-card-action-top: var(--indy-space-4);
  position: relative;
  display: flex;
  float: none;
  width: auto !important;
  min-width: 0;
  flex-direction: column;
  margin: 0 !important;
  padding: var(--indy-space-3);
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-lg);
  background: var(--indy-color-surface);
  box-shadow: var(--indy-shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body.woocommerce-shop ul.products li.product:hover,
body.post-type-archive-product ul.products li.product:hover,
body.tax-product_cat ul.products li.product:hover,
body.tax-product_tag ul.products li.product:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--color-primary) 24%, var(--indy-color-border));
  box-shadow: var(--indy-shadow-md);
}

body.woocommerce-shop ul.products li.product a.woocommerce-LoopProduct-link,
body.post-type-archive-product ul.products li.product a.woocommerce-LoopProduct-link,
body.tax-product_cat ul.products li.product a.woocommerce-LoopProduct-link,
body.tax-product_tag ul.products li.product a.woocommerce-LoopProduct-link {
  color: inherit;
  text-decoration: none;
}

body.woocommerce-shop ul.products li.product img,
body.post-type-archive-product ul.products li.product img,
body.tax-product_cat ul.products li.product img,
body.tax-product_tag ul.products li.product img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: contain;
  border-radius: var(--indy-radius-md);
  background: linear-gradient(180deg, var(--indy-color-surface-soft), var(--indy-color-surface));
  transition: opacity 180ms ease, transform 180ms ease;
}

body.woocommerce-shop ul.products li.product img.indydtf-shop-card-image-is-swapping,
body.post-type-archive-product ul.products li.product img.indydtf-shop-card-image-is-swapping,
body.tax-product_cat ul.products li.product img.indydtf-shop-card-image-is-swapping,
body.tax-product_tag ul.products li.product img.indydtf-shop-card-image-is-swapping {
  opacity: 0.42;
  transform: scale(0.985);
}

body.woocommerce-shop ul.products li.product .woocommerce-loop-category__title,
body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product ul.products li.product .woocommerce-loop-category__title,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-category__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
body.tax-product_tag ul.products li.product .woocommerce-loop-category__title,
body.tax-product_tag ul.products li.product .woocommerce-loop-product__title {
  min-height: 2.7em;
  margin: var(--indy-space-1) 0 var(--indy-space-2);
  color: var(--color-primary-dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.27;
}

.indydtf-shop-card-meta {
  display: flex;
  min-height: 22px;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
  margin: var(--indy-space-3) 0 0;
  color: var(--indy-color-muted);
  font-size: 0.78rem;
  font-weight: 640;
  line-height: 1.2;
  text-transform: uppercase;
}

.indydtf-shop-card-meta small {
  color: color-mix(in srgb, var(--indy-color-muted) 86%, var(--indy-color-surface));
  font-size: inherit;
  font-weight: 580;
  text-transform: none;
}

body.woocommerce-shop ul.products li.product .price,
body.post-type-archive-product ul.products li.product .price,
body.tax-product_cat ul.products li.product .price,
body.tax-product_tag ul.products li.product .price {
  display: block;
  margin-bottom: var(--indy-space-2);
  color: var(--color-primary-dark);
  font-size: 0.96rem;
  font-weight: 760;
}

.indydtf-shop-card-badges {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  width: 138px;
  height: 138px;
  overflow: hidden;
  pointer-events: none;
}

.indydtf-shop-card-badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: var(--indy-radius-pill);
  color: var(--indy-color-surface);
  font-size: 0.72rem;
  font-weight: 780;
  line-height: 1;
  box-shadow: var(--indy-shadow-sm);
}

.indydtf-shop-card-badge--ribbon {
  position: absolute;
  top: 29px;
  left: -40px;
  width: 158px;
  min-height: 34px;
  justify-content: center;
  border-radius: 0;
  color: var(--indy-color-surface);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: rotate(-45deg);
  transform-origin: center;
  box-shadow: 0 10px 20px rgba(7, 31, 85, 0.14);
}

.indydtf-shop-card-badge:not(.indydtf-shop-card-badge--ribbon) {
  display: none;
}

.indydtf-shop-card-badge--gold {
  background: linear-gradient(135deg, #d64a3f, var(--color-accent));
  color: var(--indy-color-surface);
}

.indydtf-shop-card-badge--navy,
.indydtf-shop-card-badge--blue {
  background: var(--color-primary);
}

.indydtf-shop-card-badge--red {
  background: var(--color-accent);
}

.indydtf-shop-card-swatches {
  display: flex;
  min-height: 30px;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 0 0 var(--indy-space-3);
}

.indydtf-shop-card-swatch {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--swatch-color) 50%, var(--indy-color-border));
  border-radius: var(--indy-radius-pill);
  background: var(--indy-color-surface);
  cursor: pointer;
}

.indydtf-shop-card-swatch span {
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid var(--indy-color-surface);
  border-radius: inherit;
  background: var(--swatch-color);
}

.indydtf-shop-card-swatch--split span {
  background: linear-gradient(
    135deg,
    var(--swatch-color) 0 49%,
    var(--indy-color-surface) 49% 51%,
    var(--swatch-color-secondary, var(--swatch-color)) 51% 100%
  );
}

.indydtf-shop-card-swatch.is-active,
.indydtf-shop-card-swatch:hover,
.indydtf-shop-card-swatch:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.indydtf-shop-card-swatches__more {
  color: var(--indy-color-muted);
  font-size: 0.78rem;
  font-weight: 680;
}

body.woocommerce-shop ul.products li.product .button,
body.post-type-archive-product ul.products li.product .button,
body.tax-product_cat ul.products li.product .button,
body.tax-product_tag ul.products li.product .button {
  display: inline-flex;
  min-height: var(--indy-button-height-md);
  align-items: center;
  justify-content: space-between;
  gap: var(--indy-space-3);
  margin-top: auto;
  padding: 0 0 0 var(--indy-space-4);
  overflow: hidden;
  border: 0;
  border-radius: var(--indy-radius-md);
  background: var(--color-primary);
  color: var(--indy-color-surface);
  font-weight: 760;
}

body.woocommerce-shop ul.products li.product .button::after,
body.post-type-archive-product ul.products li.product .button::after,
body.tax-product_cat ul.products li.product .button::after,
body.tax-product_tag ul.products li.product .button::after {
  display: inline-flex;
  width: 44px;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  content: "\2192";
}

body.woocommerce-shop ul.products li.product .onsale,
body.post-type-archive-product ul.products li.product .onsale,
body.tax-product_cat ul.products li.product .onsale,
body.tax-product_tag ul.products li.product .onsale {
  position: absolute;
  top: var(--indydtf-shop-card-action-top);
  right: calc(var(--indy-space-4) + var(--indydtf-shop-card-action-size) + var(--indydtf-shop-card-action-gap));
  left: auto;
  z-index: 7;
  display: inline-flex;
  width: var(--indydtf-shop-card-action-size);
  min-width: var(--indydtf-shop-card-action-size);
  height: var(--indydtf-shop-card-action-size);
  min-height: var(--indydtf-shop-card-action-size);
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0;
  border-radius: var(--indy-radius-pill);
  background: var(--color-primary);
  color: var(--indy-color-surface);
  font-size: 0.68rem;
  font-weight: 780;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(7, 31, 85, 0.16);
  transform: none !important;
}

body.woocommerce-shop ul.products li.product .tinv-wraper.tinv-wishlist,
body.post-type-archive-product ul.products li.product .tinv-wraper.tinv-wishlist,
body.tax-product_cat ul.products li.product .tinv-wraper.tinv-wishlist,
body.tax-product_tag ul.products li.product .tinv-wraper.tinv-wishlist {
  position: absolute;
  top: var(--indydtf-shop-card-action-top);
  right: var(--indy-space-4);
  z-index: 8;
  margin: 0 !important;
}

body.woocommerce-shop ul.products li.product .tinvwl_add_to_wishlist_button,
body.post-type-archive-product ul.products li.product .tinvwl_add_to_wishlist_button,
body.tax-product_cat ul.products li.product .tinvwl_add_to_wishlist_button,
body.tax-product_tag ul.products li.product .tinvwl_add_to_wishlist_button {
  display: inline-grid !important;
  width: var(--indydtf-shop-card-action-size);
  min-width: var(--indydtf-shop-card-action-size);
  height: var(--indydtf-shop-card-action-size);
  min-height: var(--indydtf-shop-card-action-size);
  place-items: center;
  padding: 0 !important;
  border: 1px solid color-mix(in srgb, var(--color-accent) 18%, transparent);
  border-radius: var(--indy-radius-pill);
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-accent) !important;
  font-size: 0 !important;
  line-height: 1 !important;
  box-shadow: 0 10px 24px rgba(7, 31, 85, 0.16);
  text-decoration: none !important;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

body.woocommerce-shop ul.products li.product .tinvwl_add_to_wishlist_button::before,
body.post-type-archive-product ul.products li.product .tinvwl_add_to_wishlist_button::before,
body.tax-product_cat ul.products li.product .tinvwl_add_to_wishlist_button::before,
body.tax-product_tag ul.products li.product .tinvwl_add_to_wishlist_button::before {
  content: none !important;
  margin: 0 !important;
  color: var(--color-accent) !important;
  font-size: 1.18rem !important;
  line-height: 1 !important;
}

body.woocommerce-shop ul.products li.product .tinvwl_add_to_wishlist_button::after,
body.post-type-archive-product ul.products li.product .tinvwl_add_to_wishlist_button::after,
body.tax-product_cat ul.products li.product .tinvwl_add_to_wishlist_button::after,
body.tax-product_tag ul.products li.product .tinvwl_add_to_wishlist_button::after {
  color: var(--color-accent);
  content: "\2661";
  font-size: 1.15rem;
  line-height: 1;
}

body.woocommerce-shop ul.products li.product .tinvwl_add_to_wishlist_button.indydtf-wishlist-is-active,
body.post-type-archive-product ul.products li.product .tinvwl_add_to_wishlist_button.indydtf-wishlist-is-active,
body.tax-product_cat ul.products li.product .tinvwl_add_to_wishlist_button.indydtf-wishlist-is-active,
body.tax-product_tag ul.products li.product .tinvwl_add_to_wishlist_button.indydtf-wishlist-is-active {
  border-color: rgba(225, 76, 63, 0.28);
  background: #e14c3f;
  color: #fff !important;
  box-shadow: 0 16px 30px rgba(225, 76, 63, 0.24);
}

body.woocommerce-shop ul.products li.product .tinvwl_add_to_wishlist_button.indydtf-wishlist-is-active::after,
body.post-type-archive-product ul.products li.product .tinvwl_add_to_wishlist_button.indydtf-wishlist-is-active::after,
body.tax-product_cat ul.products li.product .tinvwl_add_to_wishlist_button.indydtf-wishlist-is-active::after,
body.tax-product_tag ul.products li.product .tinvwl_add_to_wishlist_button.indydtf-wishlist-is-active::after {
  color: #fff;
  content: "\2665";
}

body.woocommerce-shop ul.products li.product .tinvwl_add_to_wishlist-text,
body.post-type-archive-product ul.products li.product .tinvwl_add_to_wishlist-text,
body.tax-product_cat ul.products li.product .tinvwl_add_to_wishlist-text,
body.tax-product_tag ul.products li.product .tinvwl_add_to_wishlist-text,
body.woocommerce-shop ul.products li.product .tinvwl_add_to_wishlist_button span,
body.post-type-archive-product ul.products li.product .tinvwl_add_to_wishlist_button span,
body.tax-product_cat ul.products li.product .tinvwl_add_to_wishlist_button span,
body.tax-product_tag ul.products li.product .tinvwl_add_to_wishlist_button span {
  display: none !important;
}

body.woocommerce-shop ul.products li.product .tinvwl_add_to_wishlist_button:hover,
body.post-type-archive-product ul.products li.product .tinvwl_add_to_wishlist_button:hover,
body.tax-product_cat ul.products li.product .tinvwl_add_to_wishlist_button:hover,
body.tax-product_tag ul.products li.product .tinvwl_add_to_wishlist_button:hover,
body.woocommerce-shop ul.products li.product .tinvwl_add_to_wishlist_button:focus-visible,
body.post-type-archive-product ul.products li.product .tinvwl_add_to_wishlist_button:focus-visible,
body.tax-product_cat ul.products li.product .tinvwl_add_to_wishlist_button:focus-visible,
body.tax-product_tag ul.products li.product .tinvwl_add_to_wishlist_button:focus-visible {
  background: var(--indy-color-surface);
  box-shadow: 0 14px 28px rgba(7, 31, 85, 0.22);
  transform: translateY(-1px);
}

.indydtf-shop-filter-scrim {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(7, 31, 85, 0.42);
}

body.woocommerce-shop nav.woocommerce-pagination,
body.post-type-archive-product nav.woocommerce-pagination,
body.tax-product_cat nav.woocommerce-pagination,
body.tax-product_tag nav.woocommerce-pagination {
  margin-top: var(--indy-space-8);
}

body.woocommerce-shop nav.woocommerce-pagination ul,
body.post-type-archive-product nav.woocommerce-pagination ul,
body.tax-product_cat nav.woocommerce-pagination ul,
body.tax-product_tag nav.woocommerce-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--indy-space-2);
  justify-content: center;
  border: 0;
}

body.woocommerce-shop nav.woocommerce-pagination ul li,
body.post-type-archive-product nav.woocommerce-pagination ul li,
body.tax-product_cat nav.woocommerce-pagination ul li,
body.tax-product_tag nav.woocommerce-pagination ul li {
  border: 0;
}

body.woocommerce-shop nav.woocommerce-pagination ul li a,
body.woocommerce-shop nav.woocommerce-pagination ul li span,
body.post-type-archive-product nav.woocommerce-pagination ul li a,
body.post-type-archive-product nav.woocommerce-pagination ul li span,
body.tax-product_cat nav.woocommerce-pagination ul li a,
body.tax-product_cat nav.woocommerce-pagination ul li span,
body.tax-product_tag nav.woocommerce-pagination ul li a,
body.tax-product_tag nav.woocommerce-pagination ul li span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-md);
  background: var(--indy-color-surface);
  color: var(--color-primary-dark);
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--indy-shadow-sm);
}

body.woocommerce-shop nav.woocommerce-pagination ul li span.current,
body.post-type-archive-product nav.woocommerce-pagination ul li span.current,
body.tax-product_cat nav.woocommerce-pagination ul li span.current,
body.tax-product_tag nav.woocommerce-pagination ul li span.current {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--indy-color-surface);
}

@media (max-width: 1180px) {
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.woocommerce-shop .site-content > .ast-container,
  body.post-type-archive-product .site-content > .ast-container,
  body.tax-product_cat .site-content > .ast-container,
  body.tax-product_tag .site-content > .ast-container {
    width: min(calc(100% - (var(--site-gutter-mobile) * 2)), var(--site-wide-width));
  }

  .indydtf-shop-toolbar {
    align-items: start;
  }

  .indydtf-shop-hero {
    min-height: 360px;
    align-items: end;
  }

  .indydtf-shop-hero--has-image {
    min-height: 400px;
  }

  .indydtf-shop-hero__art {
    right: var(--site-gutter-mobile);
    bottom: -44px;
    width: min(64vw, 520px);
  }

  .indydtf-shop-filter-toggle {
    display: inline-flex;
  }

  .indydtf-shop-layout {
    display: block;
  }

  .indydtf-shop-filters {
    position: fixed;
    inset: auto 0 0;
    z-index: 999;
    max-height: min(82vh, 760px);
    padding: var(--indy-space-3);
    transform: translateY(110%);
    transition: transform 220ms ease;
  }

  .indydtf-shop-filters.is-open {
    transform: translateY(0);
  }

  .indydtf-shop-filters__form {
    max-width: 720px;
    margin-inline: auto;
    overflow: auto;
    max-height: calc(min(82vh, 760px) - var(--indy-space-6));
    border-radius: var(--indy-radius-xl) var(--indy-radius-xl) 0 0;
  }

  .indydtf-shop-filters__head {
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .indydtf-shop-filters__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  html.indydtf-shop-filters-open,
  html.indydtf-shop-filters-open body {
    overflow: hidden;
  }

  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--indy-space-3);
  }

  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product {
    --indydtf-shop-card-action-gap: 6px;
  }

  body.woocommerce-shop ul.products li.product .tinv-wraper.tinv-wishlist,
  body.post-type-archive-product ul.products li.product .tinv-wraper.tinv-wishlist,
  body.tax-product_cat ul.products li.product .tinv-wraper.tinv-wishlist,
  body.tax-product_tag ul.products li.product .tinv-wraper.tinv-wishlist {
    right: var(--indy-space-3);
  }

  body.woocommerce-shop ul.products li.product .onsale,
  body.post-type-archive-product ul.products li.product .onsale,
  body.tax-product_cat ul.products li.product .onsale,
  body.tax-product_tag ul.products li.product .onsale {
    top: calc(var(--indydtf-shop-card-action-top) + var(--indydtf-shop-card-action-size) + var(--indydtf-shop-card-action-gap));
    right: var(--indy-space-3);
  }
}

@media (max-width: 560px) {
  .indydtf-shop-toolbar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--indy-space-2);
    align-items: center;
    padding: var(--indy-space-4) 0 var(--indy-space-2);
  }

  .indydtf-shop-toolbar .woocommerce-ordering {
    width: 100%;
    margin: 0;
  }

  .indydtf-shop-toolbar .woocommerce-ordering select {
    width: 100%;
  }

  .indydtf-shop-filter-toggle {
    padding-inline: var(--indy-space-3);
    white-space: nowrap;
  }

  .indydtf-shop-hero {
    min-height: 420px;
    padding: var(--indy-space-5);
    border-radius: 0;
  }

  .indydtf-shop-hero--has-image {
    min-height: 480px;
    margin-bottom: calc(var(--indy-space-6) + 34px);
  }

  .indydtf-shop-hero__content {
    max-width: 92%;
  }

  .indydtf-shop-hero__art {
    right: -26vw;
    bottom: -34px;
    width: 104vw;
    opacity: 0.84;
  }

  .indydtf-shop-hero--placeholder::after {
    opacity: 0.42;
  }

  .indydtf-shop-toolbar__text {
    font-size: 0.9rem;
  }

  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product {
    padding: var(--indy-space-2);
  }

  body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
  body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_tag ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.88rem;
  }

  body.woocommerce-shop ul.products li.product .button,
  body.post-type-archive-product ul.products li.product .button,
  body.tax-product_cat ul.products li.product .button,
  body.tax-product_tag ul.products li.product .button {
    width: 100%;
    min-height: 38px;
    font-size: 0.82rem;
  }

  .indydtf-shop-card-swatch {
    width: 19px;
    height: 19px;
  }
}

@media (max-width: 767px) {
  body.woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
    gap: var(--indy-space-4);
  }
}

/* CP3K-E-HF3 - premium Woo cart presentation using native Woo behavior. */
body.woocommerce-cart {
  color: var(--indy-color-ink);
}

body.woocommerce-cart .entry-title,
body.woocommerce-cart main .page-title {
  margin-bottom: var(--indy-space-6);
  color: var(--color-primary-dark);
  font-weight: 950;
  letter-spacing: 0;
}

body.woocommerce-cart .woocommerce {
  display: grid;
  gap: var(--indy-space-6);
}

body.woocommerce-cart .indydtf-cart-account-prompt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--indy-space-4);
  align-items: center;
  padding: var(--indy-space-5);
  border: 1px solid color-mix(in srgb, var(--color-primary) 18%, var(--indy-color-border));
  border-radius: var(--indy-radius-lg);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 7%, var(--indy-color-surface)) 0%, var(--indy-color-surface) 58%),
    var(--indy-color-surface);
  box-shadow: var(--indy-shadow-sm);
}

body.woocommerce-cart .indydtf-cart-account-prompt__copy {
  display: grid;
  gap: var(--indy-space-1);
}

body.woocommerce-cart .indydtf-cart-account-prompt__eyebrow {
  margin: 0;
  color: var(--color-accent);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.woocommerce-cart .indydtf-cart-account-prompt h2 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: clamp(1.18rem, 2.3vw, 1.72rem);
  font-weight: 950;
  line-height: 1.08;
}

body.woocommerce-cart .indydtf-cart-account-prompt p {
  max-width: 46rem;
  margin: 0;
  color: var(--indy-color-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

body.woocommerce-cart .indydtf-cart-account-prompt__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--indy-space-2);
  justify-content: flex-end;
}

body.woocommerce-cart .indydtf-cart-account-prompt__button {
  display: inline-flex;
  min-height: var(--indy-button-height-md);
  min-width: 132px;
  align-items: center;
  justify-content: center;
  padding: 0 var(--indy-space-4);
  border: 1px solid transparent;
  border-radius: var(--indy-radius-md);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

body.woocommerce-cart .indydtf-cart-account-prompt__button--primary {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--indy-color-surface);
}

body.woocommerce-cart .indydtf-cart-account-prompt__button--ghost {
  border-color: color-mix(in srgb, var(--color-primary) 24%, var(--indy-color-border));
  background: var(--indy-color-surface);
  color: var(--color-primary-dark);
}

body.woocommerce-cart .indydtf-cart-account-prompt__button:hover,
body.woocommerce-cart .indydtf-cart-account-prompt__button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--indy-shadow-sm);
}

body.woocommerce-cart .indydtf-cart-account-prompt__button--primary:hover,
body.woocommerce-cart .indydtf-cart-account-prompt__button--primary:focus-visible {
  background: var(--color-primary-dark);
  color: var(--indy-color-surface);
}

body.woocommerce-cart .indydtf-cart-account-prompt__button--ghost:hover,
body.woocommerce-cart .indydtf-cart-account-prompt__button--ghost:focus-visible {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart_totals {
  min-width: 0;
}

body.woocommerce-cart .woocommerce-cart-form .shop_table,
body.woocommerce-cart .cart_totals .shop_table {
  width: 100%;
  border: 0;
  border-collapse: separate;
  border-spacing: 0 var(--indy-space-3);
  background: transparent;
}

body.woocommerce-cart .woocommerce-cart-form .shop_table thead th {
  padding: 0 var(--indy-space-3) var(--indy-space-2);
  border: 0;
  color: var(--indy-color-muted);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

body.woocommerce-cart .woocommerce-cart-form .shop_table thead th.product-price,
body.woocommerce-cart .woocommerce-cart-form .cart_item > td.product-price {
  display: none !important;
}

body.woocommerce-cart .woocommerce-cart-form .indydtf-cart-print__summary-row > strong {
  display: none;
}

body.woocommerce-cart .woocommerce-cart-form .cart_item {
  background: var(--indy-color-surface);
  box-shadow: var(--indy-shadow-sm);
}

body.woocommerce-cart .woocommerce-cart-form .cart_item > td {
  padding: var(--indy-space-5) var(--indy-space-3);
  border-top: 1px solid var(--indy-color-border);
  border-bottom: 1px solid var(--indy-color-border);
  vertical-align: top;
}

body.woocommerce-cart .woocommerce-cart-form .cart_item > td:first-child {
  border-left: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-md) 0 0 var(--indy-radius-md);
}

body.woocommerce-cart .woocommerce-cart-form .cart_item > td:last-child {
  border-right: 1px solid var(--indy-color-border);
  border-radius: 0 var(--indy-radius-md) var(--indy-radius-md) 0;
}

body.woocommerce-cart .woocommerce-cart-form .product-thumbnail {
  display: flex;
  justify-content: center;
  width: 132px;
}

body.woocommerce-cart .woocommerce-cart-form .product-thumbnail a,
body.woocommerce-cart .woocommerce-cart-form .product-thumbnail img {
  display: block;
}

body.woocommerce-cart .woocommerce-cart-form .product-thumbnail a {
  overflow: hidden;
  display: flex;
  width: 98px;
  align-items: center;
  justify-content: center;
  aspect-ratio: 0.82;
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-md);
  background: var(--indy-color-surface-soft);
}

body.woocommerce-cart .woocommerce-cart-form .product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

body.woocommerce-cart .woocommerce-cart-form .product-name {
  min-width: 260px;
}

body.woocommerce-cart .woocommerce-cart-form .product-name > a {
  display: inline-block;
  color: var(--color-primary-dark);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
}

body.woocommerce-cart .woocommerce-cart-form .product-name > a:hover,
body.woocommerce-cart .woocommerce-cart-form .product-name > a:focus-visible {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.woocommerce-cart .woocommerce-cart-form .variation {
  display: flex;
  flex-wrap: wrap;
  gap: var(--indy-space-2) var(--indy-space-3);
  margin: var(--indy-space-2) 0 0;
  color: var(--indy-color-muted);
  font-size: 0.84rem;
  line-height: 1.3;
}

body.woocommerce-cart .woocommerce-cart-form .variation dt,
body.woocommerce-cart .woocommerce-cart-form .variation dd,
body.woocommerce-cart .woocommerce-cart-form .variation p {
  margin: 0;
}

body.woocommerce-cart .woocommerce-cart-form .variation dt {
  color: var(--color-primary-dark);
  font-weight: 850;
}

body.woocommerce-cart .woocommerce-cart-form .product-price,
body.woocommerce-cart .woocommerce-cart-form .product-subtotal {
  color: var(--color-primary-dark);
  font-weight: 850;
  line-height: 1.25;
  white-space: nowrap;
}

body.woocommerce-cart .woocommerce-cart-form .product-subtotal {
  font-size: 1.05rem;
  font-weight: 950;
}

body.woocommerce-cart .woocommerce-cart-form .product-quantity .quantity {
  display: inline-flex;
  align-items: center;
}

body.woocommerce-cart .woocommerce-cart-form .product-quantity input.qty {
  width: 76px;
  min-height: var(--indy-button-height-md);
  padding: 0 var(--indy-space-2);
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-md);
  background: var(--indy-color-surface);
  color: var(--color-primary-dark);
  font-weight: 900;
  text-align: center;
}

body.woocommerce-cart .woocommerce-cart-form .product-remove {
  width: 48px;
}

body.woocommerce-cart .woocommerce-cart-form a.remove {
  display: inline-flex;
  width: var(--indy-button-height-sm);
  height: var(--indy-button-height-sm);
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--indy-radius-pill);
  background: transparent;
  color: var(--indy-color-muted) !important;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

body.woocommerce-cart .woocommerce-cart-form a.remove:hover,
body.woocommerce-cart .woocommerce-cart-form a.remove:focus-visible {
  border-color: color-mix(in srgb, var(--indy-color-danger) 28%, transparent);
  background: color-mix(in srgb, var(--indy-color-danger) 8%, var(--indy-color-surface));
  color: var(--indy-color-danger) !important;
}

body.woocommerce-cart .woocommerce-cart-form a.remove:focus-visible,
body.woocommerce-cart .woocommerce-cart-form a:focus-visible,
body.woocommerce-cart .woocommerce-cart-form input:focus-visible,
body.woocommerce-cart .woocommerce-cart-form button:focus-visible,
body.woocommerce-cart .cart_totals a:focus-visible,
body.woocommerce-cart .cart_totals button:focus-visible {
  outline: 0;
  box-shadow: var(--indy-button-focus-ring);
}

body.woocommerce-cart .woocommerce-cart-form .actions {
  padding: var(--indy-space-5) 0 0;
  border: 0;
  background: transparent;
}

body.woocommerce-cart .woocommerce-cart-form .actions .coupon {
  display: inline-flex;
  max-width: min(100%, 520px);
  align-items: stretch;
  gap: var(--indy-space-2);
}

body.woocommerce-cart .woocommerce-cart-form .actions .coupon .input-text {
  width: min(100%, 300px);
  min-height: var(--indy-button-height-md);
  padding: 0 var(--indy-space-3);
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-md);
  background: var(--indy-color-surface);
  color: var(--indy-color-ink);
  font: 500 0.95rem/1.4 var(--indy-font-sans);
}

body.woocommerce-cart .woocommerce-cart-form .actions .button,
body.woocommerce-cart .cart_totals .checkout-button {
  display: inline-flex;
  min-height: var(--indy-button-height-md);
  align-items: center;
  justify-content: center;
  gap: var(--indy-space-2);
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--indy-radius-md);
  cursor: pointer;
  font: 850 0.9rem/1 var(--indy-font-sans);
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

body.woocommerce-cart .woocommerce-cart-form .actions .coupon .button {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--indy-color-surface);
}

body.woocommerce-cart .woocommerce-cart-form .actions .coupon .button:hover,
body.woocommerce-cart .woocommerce-cart-form .actions .coupon .button:focus-visible {
  background: var(--color-primary-dark);
  color: var(--indy-color-surface);
}

body.woocommerce-cart .woocommerce-cart-form .actions > .button[name="update_cart"] {
  float: right;
  border-color: var(--indy-color-border);
  background: var(--indy-color-surface);
  color: var(--color-primary-dark);
}

body.woocommerce-cart .woocommerce-cart-form .actions > .button[name="update_cart"]:hover,
body.woocommerce-cart .woocommerce-cart-form .actions > .button[name="update_cart"]:focus-visible {
  border-color: var(--icon-btn-hover-border);
  background: var(--indy-color-subtle);
}

body.woocommerce-cart .woocommerce-cart-form .actions .button:disabled,
body.woocommerce-cart .woocommerce-cart-form .actions .button[disabled] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

body.woocommerce-cart .cart-collaterals {
  display: grid;
  justify-content: end;
  margin-top: var(--indy-space-6);
}

body.woocommerce-cart .cart-collaterals .cart_totals {
  float: none;
  width: min(100%, 560px);
  padding: var(--indy-space-6);
  border: 1px solid var(--indy-color-border);
  border-radius: var(--indy-radius-lg);
  background: var(--indy-color-surface);
  box-shadow: var(--indy-shadow-sm);
}

/* Reversible cart item simplification: keep native Woo controls, reduce table clutter. */
@media (min-width: 1024px) {
  body.woocommerce-cart .woocommerce-cart-form .shop_table thead tr,
  body.woocommerce-cart .woocommerce-cart-form .cart_item {
    display: grid;
    grid-template-columns: 44px 132px minmax(0, 1fr) 96px 176px;
    align-items: start;
  }

  body.woocommerce-cart .woocommerce-cart-form .shop_table thead th.product-price,
  body.woocommerce-cart .woocommerce-cart-form .cart_item > td.product-price {
    display: none !important;
  }

  body.woocommerce-cart .woocommerce-cart-form .shop_table thead th {
    display: block;
    padding-inline: 0;
  }

  body.woocommerce-cart .woocommerce-cart-form .shop_table thead th.product-remove,
  body.woocommerce-cart .woocommerce-cart-form .shop_table thead th.product-thumbnail {
    color: transparent;
  }

  body.woocommerce-cart .woocommerce-cart-form .shop_table thead th.product-name {
    grid-column: 1 / 4;
  }

  body.woocommerce-cart .woocommerce-cart-form .shop_table thead th.product-quantity {
    grid-column: 4;
    text-align: center;
  }

  body.woocommerce-cart .woocommerce-cart-form .shop_table thead th.product-subtotal {
    grid-column: 5;
    text-align: right;
  }

  body.woocommerce-cart .woocommerce-cart-form .shop_table thead th.product-subtotal {
    font-size: 0;
  }

  body.woocommerce-cart .woocommerce-cart-form .shop_table thead th.product-subtotal::after {
    content: "Total";
    font-size: 0.76rem;
  }

  body.woocommerce-cart .woocommerce-cart-form .cart_item {
    gap: var(--indy-space-3);
    padding: var(--indy-space-4);
    border: 1px solid var(--indy-color-border);
    border-radius: var(--indy-radius-lg);
    background: var(--indy-color-surface);
    box-shadow: 0 18px 42px rgba(10, 30, 74, 0.08);
  }

  body.woocommerce-cart .woocommerce-cart-form .cart_item > td {
    display: block;
    padding: 0;
    border: 0;
  }

  body.woocommerce-cart .woocommerce-cart-form .cart_item > td:first-child,
  body.woocommerce-cart .woocommerce-cart-form .cart_item > td:last-child {
    border: 0;
    border-radius: 0;
  }

  body.woocommerce-cart .woocommerce-cart-form .product-remove {
    align-self: start;
    width: auto;
    padding-top: 8px;
  }

  body.woocommerce-cart .woocommerce-cart-form .product-thumbnail {
    width: auto;
  }

  body.woocommerce-cart .woocommerce-cart-form .product-thumbnail a {
    width: 98px;
    background: #FFFFFF;
  }

  body.woocommerce-cart .woocommerce-cart-form .product-name {
    min-width: 0;
  }

  body.woocommerce-cart .woocommerce-cart-form .product-name > a {
    max-width: 40rem;
    font-size: 1.04rem;
    line-height: 1.24;
  }

  body.woocommerce-cart .woocommerce-cart-form .product-quantity {
    text-align: center;
  }

  body.woocommerce-cart .woocommerce-cart-form .product-subtotal {
    color: #101D44;
    font-size: 1.18rem;
    font-weight: 760;
    min-width: 0;
    text-align: right;
  }

  body.woocommerce-cart .woocommerce-cart-form .indydtf-cart-print {
    max-width: none;
    margin-top: 12px;
    padding: 12px 0 0;
    border: 0;
    border-top: 1px solid color-mix(in srgb, var(--color-primary) 12%, var(--indy-color-border));
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.woocommerce-cart .woocommerce-cart-form .indydtf-cart-print__header {
    margin-bottom: 2px;
  }

  body.woocommerce-cart .woocommerce-cart-form .indydtf-cart-print__badge {
    min-height: 20px;
    padding-inline: 9px;
    font-size: 0.68rem;
  }

  body.woocommerce-cart .woocommerce-cart-form .indydtf-cart-print__summary-row {
    justify-content: flex-start;
    gap: var(--indy-space-3);
  }

  body.woocommerce-cart .woocommerce-cart-form .indydtf-cart-print__summary {
    color: #101D44;
    font-size: 0.84rem;
    font-weight: 760;
  }

  body.woocommerce-cart .woocommerce-cart-form .indydtf-cart-print__summary-row > strong {
    display: none;
  }

  body.woocommerce-cart .woocommerce-cart-form .indydtf-cart-print__details {
    margin-top: 10px;
    padding-top: 10px;
    padding-left: 0;
  }

  body.woocommerce-cart .woocommerce-cart-form .indydtf-cart-print__details summary {
    color: #101D44;
    font-size: 0.78rem;
    font-weight: 760;
  }

  body.woocommerce-cart .woocommerce-cart-form .indydtf-cart-print__placement {
    padding: 10px;
    border-radius: var(--indy-radius-md);
    background: rgba(255, 255, 255, 0.74);
  }
}

body.woocommerce-cart .indydtf-cart-threshold,
body.woocommerce-checkout .indydtf-cart-threshold {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: var(--indy-space-3);
  margin: 0 0 var(--indy-space-4);
  padding: var(--indy-space-5);
  border: 1px solid color-mix(in srgb, var(--color-primary) 16%, var(--indy-color-border));
  border-radius: var(--indy-radius-lg);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 7%, var(--indy-color-surface)) 0%, var(--indy-color-surface) 54%),
    var(--indy-color-surface);
  box-shadow: 0 18px 42px rgba(10, 30, 74, 0.12);
  text-align: center;
}

/* ---------- Checkout polish ---------- */

body.woocommerce-checkout #content,
body.woocommerce-checkout .site-content {
  background:
    radial-gradient(circle at 18% 8%, rgba(245, 180, 0, 0.1), transparent 24rem),
    linear-gradient(180deg, #F7FAFD 0%, #EEF3FA 42%, #E8EEF7 100%);
}

body.woocommerce-checkout .woocommerce {
  color: #101D44;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle {
  margin: 0 0 var(--indy-space-5);
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--indy-space-2);
  margin: 0;
  padding: var(--indy-space-4) var(--indy-space-5);
  border: 1px solid color-mix(in srgb, var(--color-secondary) 30%, var(--indy-color-border));
  border-radius: var(--indy-radius-lg);
  background: color-mix(in srgb, var(--color-secondary) 8%, var(--indy-color-surface));
  box-shadow: var(--indy-shadow-sm);
  color: #101D44;
  font-size: 0.92rem;
  font-weight: 600;
  list-style: none;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before {
  display: none;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle .showcoupon {
  color: var(--color-primary);
  font-weight: 800;
  text-decoration: underline;
}

body.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon {
  display: grid;
  gap: 12px;
  margin: 0 0 var(--indy-space-5);
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(15, 45, 104, 0.12);
  border-radius: var(--indy-radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--indy-shadow-sm);
}

body.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon p {
  margin: 0;
}

body.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon .form-row-first,
body.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon .form-row-last {
  width: 100%;
}

body.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon .input-text {
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  border: 1px solid rgba(15, 45, 104, 0.16);
  border-radius: var(--indy-radius-md);
  background: #FFFFFF;
  color: #101D44;
}

body.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon .button {
  display: inline-flex;
  min-height: var(--indy-button-height-md);
  align-items: center;
  justify-content: center;
  padding: 0 var(--indy-space-5);
  border: 1px solid var(--color-primary);
  border-radius: var(--indy-radius-md);
  background: var(--color-primary);
  color: #FFFFFF;
  font-weight: 800;
}

body.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon .button:hover,
body.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon .button:focus-visible {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

body.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(360px, 0.4fr) minmax(520px, 0.6fr);
  grid-template-areas:
    "express express"
    "details review";
  column-gap: clamp(28px, 4vw, 52px);
  row-gap: 20px;
  align-items: start;
}

body.woocommerce-checkout #customer_details,
body.woocommerce-checkout #order_review {
  float: none;
  width: 100% !important;
  max-width: none;
}

body.woocommerce-checkout .wcpay-express-checkout-wrapper {
  grid-area: express;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  align-self: start;
  justify-self: stretch;
  padding: clamp(14px, 1.6vw, 20px);
  border: 1px solid rgba(15, 45, 104, 0.12);
  border-radius: var(--indy-radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(10, 30, 74, 0.08);
}

body.woocommerce-checkout .wcpay-express-checkout-wrapper::before {
  display: block;
  grid-column: 1 / -1;
  margin: 0 0 10px;
  color: var(--color-secondary-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  content: "Express Checkout";
}

body.woocommerce-checkout .wcpay-express-checkout-wrapper #wcpay-woopay-button {
  grid-column: 1 / span 1;
  width: 100% !important;
  margin: 0 !important;
}

body.woocommerce-checkout .wcpay-express-checkout-wrapper #wcpay-woopay-button .woopay-express-button {
  width: 100% !important;
}

body.woocommerce-checkout .wcpay-express-checkout-wrapper #wcpay-express-checkout-element {
  grid-column: 2 / -1;
  width: 100% !important;
  margin: 0 !important;
}

body.woocommerce-checkout .wcpay-express-checkout-wrapper #wcpay-express-checkout-element .__PrivateStripeElement,
body.woocommerce-checkout .wcpay-express-checkout-wrapper #wcpay-express-checkout-element iframe {
  width: 100% !important;
}

body.woocommerce-checkout .wcpay-express-checkout-wrapper #wcpay-express-checkout-button-separator {
  grid-column: 1 / -1;
  margin: 10px 0 0 !important;
  color: #6A778E;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

body.woocommerce-checkout #customer_details {
  grid-area: details;
  display: grid;
  gap: 22px;
}

body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2 {
  float: none;
  width: auto;
  padding: clamp(20px, 2.2vw, 30px);
  border: 1px solid rgba(15, 45, 104, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(10, 30, 74, 0.08);
}

body.woocommerce-checkout #customer_details .col-2:not(:has(.woocommerce-shipping-fields)):not(:has(.woocommerce-additional-fields)) {
  display: none;
}

body.woocommerce-checkout #customer_details h3,
body.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout #payment .wc_payment_method label {
  color: #101D44;
}

body.woocommerce-checkout #customer_details h3,
body.woocommerce-checkout #order_review_heading {
  margin: 0 0 18px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(15, 45, 104, 0.12);
  font-size: clamp(1.2rem, 1rem + 0.45vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.woocommerce-checkout .form-row {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
}

body.woocommerce-checkout .form-row-first,
body.woocommerce-checkout .form-row-last {
  float: none;
  width: 100%;
}

body.woocommerce-checkout .form-row-first {
  grid-column: 1;
}

body.woocommerce-checkout .form-row-last {
  grid-column: 2;
}

body.woocommerce-checkout .form-row label {
  margin: 0 0 7px;
  color: #101D44;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.2;
}

body.woocommerce-checkout .form-row label .required {
  color: var(--color-accent);
}

body.woocommerce-checkout .form-row input.input-text,
body.woocommerce-checkout .form-row textarea,
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout .select2-container--default .select2-selection--single {
  min-height: 46px;
  border: 1px solid rgba(15, 45, 104, 0.16);
  border-radius: 8px;
  background: #FFFFFF;
  color: #101D44;
  font-size: 0.94rem;
  box-shadow: none;
}

body.woocommerce-checkout .form-row input.input-text,
body.woocommerce-checkout .form-row textarea {
  padding: 10px 13px;
}

body.woocommerce-checkout .form-row input.input-text:focus,
body.woocommerce-checkout .form-row textarea:focus,
body.woocommerce-checkout .form-row select:focus,
body.woocommerce-checkout .select2-container--default.select2-container--focus .select2-selection--single,
body.woocommerce-checkout .select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--color-primary);
  outline: var(--indy-button-focus-ring);
}

body.woocommerce-checkout form.checkout #order_review,
body.woocommerce-checkout form.checkout #order_review.woocommerce-checkout-review-order {
  grid-area: review;
  position: sticky;
  top: 24px;
  padding: clamp(150px, 9vw, 166px) clamp(24px, 2.8vw, 34px) clamp(24px, 2.8vw, 34px) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: var(--indy-radius-xl) !important;
  background:
    radial-gradient(circle at 14% 0%, rgba(245, 180, 0, 0.16), transparent 18rem),
    radial-gradient(circle at 100% 8%, rgba(58, 98, 186, 0.24), transparent 20rem),
    linear-gradient(135deg, #071226 0%, #0F2D68 55%, #071226 100%) !important;
  box-shadow: 0 24px 58px rgba(7, 18, 38, 0.24);
  overflow: hidden;
}

body.woocommerce-checkout #order_review::before,
body.woocommerce-checkout #order_review::after {
  display: none;
  content: none;
}

body.woocommerce-checkout #order_review_heading {
  grid-area: review;
  align-self: start;
  justify-self: stretch;
  width: 100% !important;
  margin: 0;
  padding: clamp(32px, 3vw, 42px) clamp(24px, 2.8vw, 34px) 0;
  border: 0;
  background: transparent;
  color: #FFFFFF;
  font-size: clamp(1.55rem, 1.25rem + 0.75vw, 2rem);
  font-weight: 850;
  transform: none;
  z-index: 3;
  pointer-events: none;
}

body.woocommerce-checkout #order_review_heading::before {
  display: block;
  margin: 0 0 6px;
  color: var(--color-secondary-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  content: "Secure Checkout";
}

body.woocommerce-checkout table.indydtf-checkout-review-table {
  overflow: hidden;
  margin: 0;
  padding: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.08);
}

body.woocommerce-checkout table.indydtf-checkout-review-table th,
body.woocommerce-checkout table.indydtf-checkout-review-table td {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  vertical-align: middle;
}

body.woocommerce-checkout table.indydtf-checkout-review-table thead th {
  padding: 9px 13px;
  background: #FFFFFF;
  color: #101D44;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

body.woocommerce-checkout table.indydtf-checkout-review-table tbody td {
  padding: 15px 13px;
}

body.woocommerce-checkout table.indydtf-checkout-review-table th.product-name,
body.woocommerce-checkout table.indydtf-checkout-review-table td.product-name {
  padding: 5px !important;
}

body.woocommerce-checkout .indydtf-checkout-product {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

body.woocommerce-checkout .indydtf-checkout-product__preview {
  display: block;
  overflow: hidden;
  width: 92px;
  height: 92px;
  border-radius: 10px;
  background: #FFFFFF;
}

body.woocommerce-checkout .indydtf-checkout-product__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.woocommerce-checkout .indydtf-checkout-product__title,
body.woocommerce-checkout .indydtf-checkout-product__title a {
  display: inline-block;
  max-width: 32rem;
  color: #BFD0FF;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.3;
  text-decoration: none;
  overflow-wrap: normal;
}

body.woocommerce-checkout .indydtf-checkout-product__title a:hover {
  color: #F5C542;
}

body.woocommerce-checkout .indydtf-checkout-product__title .product-quantity {
  color: #FFFFFF;
  font-weight: 700;
}

body.woocommerce-checkout .indydtf-checkout-item-meta {
  display: grid;
  gap: 4px;
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}

body.woocommerce-checkout .indydtf-checkout-item-meta li {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  line-height: 1.32;
}

body.woocommerce-checkout .indydtf-checkout-item-meta span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

body.woocommerce-checkout table.indydtf-checkout-review-table td.product-total {
  width: 28%;
  min-width: 160px;
  color: #FFFFFF;
  font-size: 1rem;
  text-align: right;
}

body.woocommerce-checkout .indydtf-checkout-line-total {
  display: block;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}

body.woocommerce-checkout .indydtf-checkout-line-breakdown {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.3;
}

body.woocommerce-checkout table.indydtf-checkout-review-table tfoot th,
body.woocommerce-checkout table.indydtf-checkout-review-table tfoot td {
  padding: 12px 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 550;
}

body.woocommerce-checkout table.indydtf-checkout-review-table tfoot td {
  text-align: right;
}

body.woocommerce-checkout table.indydtf-checkout-review-table tfoot tr.order-total th,
body.woocommerce-checkout table.indydtf-checkout-review-table tfoot tr.order-total td {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 800;
}

body.woocommerce-checkout table.indydtf-checkout-review-table tfoot tr:last-child th,
body.woocommerce-checkout table.indydtf-checkout-review-table tfoot tr:last-child td {
  border-bottom: 0;
}

body.woocommerce-checkout #order_review .woocommerce-shipping-methods {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}

body.woocommerce-checkout #order_review .woocommerce-shipping-methods li {
  margin: 0;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  line-height: 1.35;
}

body.woocommerce-checkout #order_review .woocommerce-shipping-methods label,
body.woocommerce-checkout #order_review .woocommerce-shipping-methods .amount {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 650;
}

body.woocommerce-checkout #order_review .indydtf-shipping-arrival,
body.woocommerce-checkout #order_review .indydtf-shipping-cutoff,
body.woocommerce-checkout #order_review [data-indydtf-delivery-countdown] {
  display: block;
  margin-top: 4px;
  color: rgba(225, 232, 255, 0.68) !important;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}

body.woocommerce-checkout #payment {
  margin-top: 22px;
  margin-bottom: 30px;
  overflow: hidden;
  padding: clamp(14px, 1.6vw, 20px);
  border-radius: var(--indy-radius-lg);
  background: rgba(255, 255, 255, 0.96);
  color: #101D44;
}

body.woocommerce-checkout #payment ul.payment_methods {
  padding: 6px 6px 18px;
  border-bottom-color: rgba(15, 45, 104, 0.12);
}

body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method {
  margin: 0 0 4px;
  padding: 12px 14px;
  border-radius: var(--indy-radius-md);
  transition: background-color 150ms ease;
}

body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method:hover {
  background: rgba(15, 45, 104, 0.04);
}

body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method:has(input.input-radio:checked) {
  background: color-mix(in srgb, var(--color-primary) 6%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--color-primary) 22%, transparent);
}

body.woocommerce-checkout #payment div.form-row {
  padding: 18px 20px 20px;
}

body.woocommerce-checkout #payment .woocommerce-privacy-policy-text {
  margin-bottom: 16px;
  color: #34415C;
  font-size: 0.9rem;
  line-height: 1.45;
}

body.woocommerce-checkout #payment div.payment_box {
  margin: 10px 4px 4px;
  padding: 16px;
  border-radius: var(--indy-radius-md);
  background: #EEF3FA;
  color: #34415C;
}

body.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #EEF3FA;
}

body.woocommerce-checkout #payment #place_order {
  width: 100%;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: var(--indy-radius-md);
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  font-size: 1rem;
  font-weight: 850;
  transition: background-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

body.woocommerce-checkout #payment #place_order:hover,
body.woocommerce-checkout #payment #place_order:focus-visible {
  background: var(--color-secondary-dark);
  box-shadow: 0 12px 26px rgba(15, 45, 104, 0.18);
  transform: translateY(-1px);
}

body.woocommerce-checkout .woocommerce-checkout-payment#payment,
body.woocommerce-checkout #payment.woocommerce-checkout-payment {
  overflow: hidden !important;
  margin-bottom: 30px !important;
  padding: 20px !important;
  border-radius: 10px !important;
  background: #FFFFFF !important;
}

body.woocommerce-checkout #payment.woocommerce-checkout-payment ul.payment_methods {
  overflow: hidden;
  padding: 0 !important;
  border-radius: 10px;
  background: #FFFFFF;
}

body.woocommerce-checkout #payment.woocommerce-checkout-payment div.payment_box {
  padding: 18px !important;
  border-radius: 10px !important;
  background: #F5F6FA !important;
}

@media (max-width: 1180px) {
  body.woocommerce-checkout form.checkout {
    grid-template-columns: minmax(340px, 0.46fr) minmax(440px, 0.54fr);
    gap: 28px;
  }

  body.woocommerce-checkout .indydtf-checkout-product {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
  }

  body.woocommerce-checkout .indydtf-checkout-product__preview {
    width: 78px;
    height: 78px;
  }
}

@media (max-width: 1023px) {
  body.woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "express"
      "details"
      "review";
  }

  body.woocommerce-checkout .wcpay-express-checkout-wrapper {
    grid-template-columns: 1fr;
  }

  body.woocommerce-checkout .wcpay-express-checkout-wrapper #wcpay-woopay-button,
  body.woocommerce-checkout .wcpay-express-checkout-wrapper #wcpay-express-checkout-element {
    grid-column: 1 / -1;
  }

  body.woocommerce-checkout #order_review {
    position: static;
  }

  body.woocommerce-checkout #order_review_heading {
    align-self: auto;
    color: #FFFFFF;
    transform: none;
  }
}

@media (max-width: 640px) {
  body.woocommerce-checkout .site-content > .ast-container {
    width: calc(100% - 16px);
  }

  body.woocommerce-checkout #customer_details .col-1,
  body.woocommerce-checkout #customer_details .col-2 {
    padding: 18px;
    border-radius: 14px;
  }

  body.woocommerce-checkout form.checkout #order_review,
  body.woocommerce-checkout form.checkout #order_review.woocommerce-checkout-review-order {
    width: calc(100% + 16px) !important;
    margin-inline: -8px;
    padding: 118px 10px 16px !important;
    border: 0 !important;
    border-radius: 14px !important;
  }

  body.woocommerce-checkout #order_review_heading {
    border: 0 !important;
    padding: 28px 18px 0 !important;
  }

  body.woocommerce-checkout table.indydtf-checkout-review-table {
    display: block !important;
    margin-top: 0;
    padding: 8px !important;
    width: 100% !important;
    border-inline: 0 !important;
  }

  body.woocommerce-checkout .form-row-first,
  body.woocommerce-checkout .form-row-last {
    grid-column: 1 / -1;
    width: 100%;
  }

  body.woocommerce-checkout table.indydtf-checkout-review-table thead {
    display: none;
  }

  body.woocommerce-checkout table.indydtf-checkout-review-table tbody,
  body.woocommerce-checkout table.indydtf-checkout-review-table tfoot,
  body.woocommerce-checkout table.indydtf-checkout-review-table tbody tr,
  body.woocommerce-checkout table.indydtf-checkout-review-table tfoot tr,
  body.woocommerce-checkout table.indydtf-checkout-review-table tbody td,
  body.woocommerce-checkout table.indydtf-checkout-review-table tfoot th,
  body.woocommerce-checkout table.indydtf-checkout-review-table tfoot td {
    display: block !important;
    width: 100% !important;
  }

  body.woocommerce-checkout table.indydtf-checkout-review-table tbody td.product-name {
    padding: 0 !important;
  }

  body.woocommerce-checkout table.indydtf-checkout-review-table tbody td.product-total {
    width: 100%;
    padding: 12px !important;
  }

  body.woocommerce-checkout .indydtf-checkout-product {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    width: 100%;
    padding-block: 12px;
  }

  body.woocommerce-checkout .indydtf-checkout-product__preview {
    width: 78px;
    height: 78px;
  }

  body.woocommerce-checkout .indydtf-checkout-product__title,
  body.woocommerce-checkout .indydtf-checkout-product__title a {
    display: block;
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.24;
    overflow-wrap: break-word;
  }

  body.woocommerce-checkout .indydtf-checkout-item-meta {
    gap: 3px;
    margin-top: 8px;
  }

  body.woocommerce-checkout .indydtf-checkout-item-meta li {
    font-size: 0.82rem;
  }
}

body.woocommerce-cart .indydtf-cart-threshold::before,
body.woocommerce-checkout .indydtf-cart-threshold::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  content: "";
}

body.woocommerce-cart .indydtf-cart-threshold__icon,
body.woocommerce-checkout .indydtf-cart-threshold__icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-self: center;
  place-items: center;
  border-radius: var(--indy-radius-pill);
  background: var(--color-primary-dark);
  color: var(--indy-color-surface);
  box-shadow: 0 14px 30px rgba(10, 30, 74, 0.2);
}

body.woocommerce-cart .indydtf-cart-threshold__icon-mask,
body.woocommerce-checkout .indydtf-cart-threshold__icon-mask {
  display: block;
  width: 27px;
  height: 27px;
  background: currentColor;
  -webkit-mask: var(--indydtf-cart-threshold-icon) center / contain no-repeat;
  mask: var(--indydtf-cart-threshold-icon) center / contain no-repeat;
}

body.woocommerce-cart .indydtf-cart-threshold__headline,
body.woocommerce-checkout .indydtf-cart-threshold__headline {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: clamp(1.02rem, 2.3vw, 1.28rem);
  font-weight: 950;
  line-height: 1.2;
}

body.woocommerce-cart .indydtf-cart-threshold__headline strong,
body.woocommerce-checkout .indydtf-cart-threshold__headline strong {
  color: var(--color-accent);
  font-weight: 950;
}

body.woocommerce-cart .indydtf-cart-threshold__copy,
body.woocommerce-checkout .indydtf-cart-threshold__copy {
  max-width: 34rem;
  margin: calc(var(--indy-space-2) * -1) auto 0;
  color: var(--indy-color-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

body.woocommerce-cart .indydtf-cart-threshold__meter,
body.woocommerce-checkout .indydtf-cart-threshold__meter {
  overflow: hidden;
  height: 12px;
  border-radius: var(--indy-radius-pill);
  background: color-mix(in srgb, var(--color-primary) 12%, var(--indy-color-border));
}

body.woocommerce-cart .indydtf-cart-threshold__bar,
body.woocommerce-checkout .indydtf-cart-threshold__bar {
  display: block;
  width: var(--indydtf-cart-threshold-progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

body.woocommerce-cart .indydtf-cart-threshold__range,
body.woocommerce-checkout .indydtf-cart-threshold__range {
  display: flex;
  justify-content: space-between;
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

body.woocommerce-cart .indydtf-cart-threshold__actions,
body.woocommerce-checkout .indydtf-cart-threshold__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--indy-space-2);
  margin-top: var(--indy-space-1);
}

body.woocommerce-cart .indydtf-cart-threshold__button,
body.woocommerce-checkout .indydtf-cart-threshold__button {
  display: inline-flex;
  min-height: 44px;
  min-width: 136px;
  align-items: center;
  justify-content: center;
  padding: 0 var(--indy-space-4);
  border: 1px solid transparent;
  border-radius: var(--indy-radius-md);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

body.woocommerce-cart .indydtf-cart-threshold__button--primary,
body.woocommerce-checkout .indydtf-cart-threshold__button--primary {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--indy-color-surface);
}

body.woocommerce-cart .indydtf-cart-threshold__button--ghost,
body.woocommerce-checkout .indydtf-cart-threshold__button--ghost {
  border-color: color-mix(in srgb, var(--color-primary) 22%, var(--indy-color-border));
  background: var(--indy-color-surface);
  color: var(--color-primary-dark);
}

body.woocommerce-cart .indydtf-cart-threshold__button:hover,
body.woocommerce-cart .indydtf-cart-threshold__button:focus-visible,
body.woocommerce-checkout .indydtf-cart-threshold__button:hover,
body.woocommerce-checkout .indydtf-cart-threshold__button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--indy-shadow-sm);
}

body.woocommerce-cart .indydtf-cart-threshold__button--primary:hover,
body.woocommerce-cart .indydtf-cart-threshold__button--primary:focus-visible,
body.woocommerce-checkout .indydtf-cart-threshold__button--primary:hover,
body.woocommerce-checkout .indydtf-cart-threshold__button--primary:focus-visible {
  background: var(--color-primary-dark);
  color: var(--indy-color-surface);
}

body.woocommerce-cart .indydtf-cart-threshold__button--ghost:hover,
body.woocommerce-cart .indydtf-cart-threshold__button--ghost:focus-visible,
body.woocommerce-checkout .indydtf-cart-threshold__button--ghost:hover,
body.woocommerce-checkout .indydtf-cart-threshold__button--ghost:focus-visible {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

body.woocommerce-cart .cart_totals h2 {
  margin: 0 0 var(--indy-space-4);
  color: var(--color-primary-dark);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1.15;
}

body.woocommerce-cart .cart_totals .shop_table {
  margin: 0;
  border-spacing: 0;
}

body.woocommerce-cart .cart_totals .shop_table tr th,
body.woocommerce-cart .cart_totals .shop_table tr td {
  padding: var(--indy-space-4) 0;
  border: 0;
  border-bottom: 1px solid var(--indy-color-border);
  background: transparent;
  color: var(--indy-color-muted);
  font-size: 0.94rem;
  line-height: 1.35;
  vertical-align: top;
}

body.woocommerce-cart .cart_totals .shop_table tr td {
  color: var(--color-primary-dark);
  font-weight: 850;
  text-align: right;
}

body.woocommerce-cart .cart_totals .shop_table tr.woocommerce-shipping-totals {
  display: grid;
  grid-template-columns: minmax(96px, 0.24fr) minmax(360px, 0.76fr);
  gap: var(--indy-space-4);
}

body.woocommerce-cart .cart_totals .shop_table tr.woocommerce-shipping-totals th,
body.woocommerce-cart .cart_totals .shop_table tr.woocommerce-shipping-totals td {
  display: block;
  width: auto;
}

body.woocommerce-cart .cart_totals .shop_table tr.fee:has(td[data-title="Custom print service"]) {
  display: none;
}

body.woocommerce-cart .cart_totals .shop_table tr.indydtf-cart-print-service-total th,
body.woocommerce-cart .cart_totals .shop_table tr.indydtf-cart-print-service-total td {
  color: var(--color-primary-dark);
  font-weight: 900;
}

body.woocommerce-cart .cart_totals #shipping_method {
  display: grid;
  gap: var(--indy-space-2);
  margin: 0;
}

body.woocommerce-cart .cart_totals #shipping_method li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: var(--indy-space-3);
  row-gap: var(--indy-space-1);
  align-items: start;
  margin: 0;
  padding: var(--indy-space-3) var(--indy-space-4) var(--indy-space-3) 0;
  border: 1px solid color-mix(in srgb, var(--color-primary) 12%, var(--indy-color-border));
  border-radius: var(--indy-radius-md);
  background: var(--indy-color-surface);
  text-align: left;
}

body.woocommerce-cart .cart_totals ul#shipping_method li:not(.elementor-widget-woocommerce-cart #shipping_method li) {
  padding-left: 0;
}

body.woocommerce-cart .cart_totals #shipping_method input[type="radio"] {
  justify-self: center;
  margin: 0.2em 0 0;
}

body.woocommerce-cart .cart_totals #shipping_method label {
  display: block;
  color: var(--color-primary-dark);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.28;
  white-space: nowrap;
}

body.woocommerce-cart .cart_totals #shipping_method .woocommerce-Price-amount {
  font-weight: 950;
  white-space: nowrap;
}

body.woocommerce-cart .cart_totals #shipping_method label small {
  white-space: normal;
}

body.woocommerce-cart .cart_totals .shop_table tr.order-total th,
body.woocommerce-cart .cart_totals .shop_table tr.order-total td {
  padding-top: var(--indy-space-4);
  border-bottom: 0;
  color: var(--color-primary-dark);
  font-size: 1.12rem;
  font-weight: 950;
}

body.woocommerce-cart .cart_totals .shop_table tr.order-total td strong {
  font-weight: 950;
}

body.woocommerce-cart .cart_totals .woocommerce-shipping-methods,
body.woocommerce-cart .cart_totals .woocommerce-shipping-destination,
body.woocommerce-cart .cart_totals .woocommerce-shipping-calculator,
body.woocommerce-cart .cart_totals .woocommerce-info,
body.woocommerce-cart .cart_totals .woocommerce-error,
body.woocommerce-cart .cart_totals .woocommerce-message {
  margin-block: var(--indy-space-2) 0;
  color: var(--indy-color-muted);
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: left;
}

body.woocommerce-cart .cart_totals .wc-proceed-to-checkout {
  padding: var(--indy-space-5) 0 0;
}

body.woocommerce-cart .cart_totals .checkout-button {
  width: 100%;
  min-height: var(--indy-button-height-lg);
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--indy-color-surface);
  font-size: 0.98rem;
}

body.woocommerce-cart .cart_totals .checkout-button:hover,
body.woocommerce-cart .cart_totals .checkout-button:focus-visible {
  background: var(--color-primary-dark);
  color: var(--indy-color-surface);
  transform: translateY(-1px);
}

@media (min-width: 1024px) {
  body.woocommerce-cart .woocommerce {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
    align-items: start;
    gap: var(--indy-space-6);
  }

  body.woocommerce-cart .indydtf-cart-account-prompt,
  body.woocommerce-cart .woocommerce-notices-wrapper {
    grid-column: 1 / -1;
  }

  body.woocommerce-cart .woocommerce-cart-form {
    grid-column: 1;
  }

  body.woocommerce-cart .cart-collaterals {
    grid-column: 2;
    margin-left: auto;
    margin-top: 0;
    position: sticky;
    top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--indy-space-5));
  }

  body.woocommerce-cart .woocommerce-cart-form .product-name {
    width: 44%;
  }

  body.woocommerce-cart .woocommerce-cart-form .product-price,
  body.woocommerce-cart .woocommerce-cart-form .product-quantity,
  body.woocommerce-cart .woocommerce-cart-form .product-subtotal {
    text-align: center;
  }
}

@media (max-width: 1023px) {
  body.woocommerce-cart .woocommerce-cart-form .shop_table thead {
    display: none;
  }

  body.woocommerce-cart .woocommerce-cart-form .cart_item {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: var(--indy-space-4);
    padding: var(--indy-space-4);
    border: 1px solid var(--indy-color-border);
    border-radius: var(--indy-radius-md);
    background: var(--indy-color-surface);
    box-shadow: var(--indy-shadow-sm);
  }

  body.woocommerce-cart .woocommerce-cart-form .cart_item > td {
    display: block;
    padding: 0;
    border: 0;
  }

  body.woocommerce-cart .woocommerce-cart-form .cart_item > td::before {
    color: var(--indy-color-muted);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  body.woocommerce-cart .woocommerce-cart-form .product-remove {
    grid-column: 2;
    justify-self: end;
    width: auto;
    order: -2;
  }

  body.woocommerce-cart .woocommerce-cart-form .product-thumbnail {
    grid-row: span 5;
    width: auto;
  }

  body.woocommerce-cart .woocommerce-cart-form .product-thumbnail a {
    width: 116px;
  }

  body.woocommerce-cart .woocommerce-cart-form .product-name {
    min-width: 0;
  }

  body.woocommerce-cart .woocommerce-cart-form .product-price,
  body.woocommerce-cart .woocommerce-cart-form .product-quantity,
  body.woocommerce-cart .woocommerce-cart-form .product-subtotal {
    display: grid;
    grid-template-columns: minmax(108px, 0.45fr) minmax(0, 1fr);
    gap: var(--indy-space-3);
    align-items: center;
    text-align: left;
    white-space: normal;
  }

  body.woocommerce-cart .woocommerce-cart-form .product-price::before,
  body.woocommerce-cart .woocommerce-cart-form .product-quantity::before,
  body.woocommerce-cart .woocommerce-cart-form .product-subtotal::before {
    content: attr(data-title);
  }

  body.woocommerce-cart .woocommerce-cart-form .product-name::before,
  body.woocommerce-cart .woocommerce-cart-form .product-subtotal::before {
    content: none;
  }

  body.woocommerce-cart .cart_totals .shop_table tr.woocommerce-shipping-totals {
    display: table-row;
  }

  body.woocommerce-cart .cart_totals .shop_table tr.woocommerce-shipping-totals th,
  body.woocommerce-cart .cart_totals .shop_table tr.woocommerce-shipping-totals td {
    display: block;
    width: 100%;
  }

  body.woocommerce-cart .cart_totals #shipping_method label {
    white-space: normal;
  }

  body.woocommerce-cart .cart-collaterals {
    justify-content: stretch;
  }

  body.woocommerce-cart .cart-collaterals .cart_totals {
    width: 100%;
  }
}

@media (max-width: 767px) {
  body.woocommerce-cart .indydtf-cart-account-prompt {
    grid-template-columns: 1fr;
    padding: var(--indy-space-4);
  }

  body.woocommerce-cart .indydtf-cart-account-prompt__actions {
    justify-content: stretch;
  }

  body.woocommerce-cart .indydtf-cart-account-prompt__button {
    flex: 1 1 140px;
  }

  body.woocommerce-cart .woocommerce {
    gap: var(--indy-space-5);
  }

  body.woocommerce-cart .woocommerce-cart-form .cart_item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: var(--indy-space-3);
    padding: var(--indy-space-3);
  }

  body.woocommerce-cart .woocommerce-cart-form .product-thumbnail a {
    width: 92px;
  }

  body.woocommerce-cart .woocommerce-cart-form .actions {
    display: grid;
    gap: var(--indy-space-3);
  }

  body.woocommerce-cart .woocommerce-cart-form .actions .coupon {
    display: grid;
    max-width: none;
    gap: var(--indy-space-2);
  }

  body.woocommerce-cart .woocommerce-cart-form .actions .coupon .input-text,
  body.woocommerce-cart .woocommerce-cart-form .actions .coupon .button,
  body.woocommerce-cart .woocommerce-cart-form .actions > .button[name="update_cart"] {
    float: none;
    width: 100%;
  }

  body.woocommerce-cart .cart-collaterals .cart_totals {
    padding: var(--indy-space-4);
  }

  body.woocommerce-cart .indydtf-cart-threshold,
  body.woocommerce-checkout .indydtf-cart-threshold {
    padding: var(--indy-space-4);
  }

  body.woocommerce-cart .indydtf-cart-threshold__actions,
  body.woocommerce-checkout .indydtf-cart-threshold__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.woocommerce-cart .indydtf-cart-threshold__button,
  body.woocommerce-checkout .indydtf-cart-threshold__button {
    width: 100%;
  }
}

@media (max-width: 479px) {
  body.woocommerce-cart .woocommerce-cart-form .cart_item {
    grid-template-columns: 1fr;
  }

  body.woocommerce-cart .woocommerce-cart-form .product-thumbnail {
    grid-row: auto;
  }

  body.woocommerce-cart .woocommerce-cart-form .product-thumbnail a {
    width: min(100%, 180px);
  }

  body.woocommerce-cart .woocommerce-cart-form .product-price,
  body.woocommerce-cart .woocommerce-cart-form .product-quantity,
  body.woocommerce-cart .woocommerce-cart-form .product-subtotal {
    grid-template-columns: 1fr;
    gap: var(--indy-space-1);
  }

body.woocommerce-cart .cart_totals .shop_table tr th,
body.woocommerce-cart .cart_totals .shop_table tr td {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* Trial cart simplification lock: keep after legacy responsive cart widths. */
@media (min-width: 1024px) {
  body.woocommerce-cart .woocommerce-cart-form .shop_table thead tr,
  body.woocommerce-cart .woocommerce-cart-form .cart_item {
    grid-template-columns: 44px 132px minmax(0, 1fr) 96px 176px;
  }

  body.woocommerce-cart .woocommerce-cart-form .cart_item > td.product-thumbnail {
    grid-column: 2;
  }

  body.woocommerce-cart .woocommerce-cart-form .cart_item > td.product-name {
    grid-column: 3;
    width: auto !important;
    min-width: 0;
  }

  body.woocommerce-cart .woocommerce-cart-form .cart_item > td.product-quantity {
    grid-column: 4;
  }

  body.woocommerce-cart .woocommerce-cart-form .cart_item > td.product-subtotal {
    grid-column: 5;
  }
}

.indydtf-delivery-card {
  display: grid;
  gap: var(--indy-space-3);
  margin: var(--indy-space-5) 0;
  padding: var(--indy-space-4);
  border: 1px solid rgba(9, 31, 78, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 255, 0.98) 58%, rgba(255, 241, 242, 0.95) 100%);
  color: var(--color-primary-dark);
  box-shadow: 0 16px 38px rgba(9, 31, 78, 0.1);
  position: relative;
  overflow: hidden;
}

.indydtf-delivery-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
}

.indydtf-delivery-card__promise {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--indy-space-3);
  padding-left: var(--indy-space-2);
  text-align: left;
  position: relative;
  z-index: 1;
}

.indydtf-delivery-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--color-primary-dark);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(9, 31, 78, 0.2);
}

.indydtf-delivery-card__icon svg {
  width: 25px;
  height: 25px;
}

.indydtf-delivery-card__headline {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 900;
  line-height: 1.2;
}

.indydtf-delivery-card__cutoff {
  margin: var(--indy-space-1) 0 0;
  color: var(--color-primary-dark);
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.35;
}

.indydtf-delivery-card__location {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--indy-space-2);
  margin-left: calc(42px + var(--indy-space-5));
  padding-top: var(--indy-space-3);
  border-top: 1px solid rgba(9, 31, 78, 0.12);
  color: var(--color-primary);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
  position: relative;
  z-index: 1;
}

.indydtf-delivery-card__location:hover,
.indydtf-delivery-card__location:focus-visible {
  color: var(--color-primary-dark);
}

.indydtf-shipping-arrival {
  display: block;
  margin-top: 3px;
  color: #6674a3;
  font-size: 0.86rem;
  font-weight: 750;
}

.indydtf-shipping-cutoff {
  display: block;
  margin-top: 2px;
  color: var(--color-primary-dark);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.25;
}

.indydtf-delivery-account {
  display: grid;
  gap: var(--indy-space-5);
}

.indydtf-delivery-account__hero {
  padding: var(--indy-space-6);
  border: 1px solid var(--indy-color-border);
  border-radius: 8px;
  background: var(--indy-color-surface);
  box-shadow: var(--indy-shadow-card);
}

.indydtf-delivery-account__eyebrow {
  margin: 0 0 var(--indy-space-2);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.indydtf-delivery-account__hero h2 {
  margin: 0 0 var(--indy-space-2);
  color: var(--color-primary-dark);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.08;
}

.indydtf-delivery-account__hero p:last-child {
  margin-bottom: 0;
  color: var(--indy-color-muted);
}

.indydtf-delivery-account__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--indy-space-4);
  padding: var(--indy-space-6);
  border: 1px solid var(--indy-color-border);
  border-radius: 8px;
  background: var(--indy-color-surface);
  box-shadow: var(--indy-shadow-card);
}

.indydtf-delivery-account__form label {
  display: grid;
  gap: var(--indy-space-2);
  color: var(--color-primary-dark);
  font-weight: 850;
}

.indydtf-delivery-account__form input {
  min-height: var(--indy-input-height);
  border: 1px solid var(--indy-color-border-strong);
  border-radius: 8px;
  padding: 0 var(--indy-space-3);
}

.indydtf-delivery-account__form .button {
  justify-self: start;
  min-height: var(--indy-button-height);
  border-radius: 8px;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 900;
}

@media (max-width: 767px) {
  .indydtf-delivery-card {
    padding: var(--indy-space-4);
  }

  .indydtf-delivery-card__promise {
    justify-content: flex-start;
  }

  .indydtf-delivery-card__location {
    justify-content: flex-start;
    margin-left: var(--indy-space-2);
  }

  .indydtf-delivery-account__hero,
  .indydtf-delivery-account__form {
    padding: var(--indy-space-4);
    border-color: rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    color: rgba(255, 255, 255, 0.82);
  }

  .indydtf-delivery-account__hero h2 {
    color: #FFFFFF;
    font-size: 1.65rem;
  }

  .indydtf-delivery-account__hero p:last-child {
    color: rgba(255, 255, 255, 0.68);
  }

  .indydtf-delivery-account__form {
    grid-template-columns: 1fr;
    gap: var(--indy-space-3);
  }

  .indydtf-delivery-account__form label {
    gap: 7px;
    color: #AFC3FF;
    font-size: 0.82rem;
    font-weight: 650;
    text-transform: uppercase;
  }

  .indydtf-delivery-account__form input {
    min-height: 48px;
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    color: #071226;
    font-size: 16px;
  }

  .indydtf-delivery-account__form .button {
    width: 100%;
    margin-top: var(--indy-space-2);
    border-radius: 10px;
  }
}

/* ---------- Thank you / order received ---------- */

body.woocommerce-order-received #content,
body.woocommerce-order-received .site-content {
  background:
    radial-gradient(circle at 18% 8%, rgba(245, 180, 0, 0.11), transparent 24rem),
    linear-gradient(180deg, #F7FAFD 0%, #EEF3FA 42%, #E8EEF7 100%);
}

body.woocommerce-order-received .woocommerce {
  color: #14213D;
}

body.woocommerce-order-received .indydtf-thankyou {
  display: grid;
  gap: clamp(var(--indy-space-5), 2.4vw, var(--indy-space-8));
  margin-bottom: clamp(var(--indy-space-10), 6vw, var(--indy-space-16));
}

body.woocommerce-order-received .indydtf-thankyou__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: var(--indy-space-5);
  align-items: end;
  overflow: hidden;
  padding: clamp(var(--indy-space-5), 3vw, var(--indy-space-8));
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--indy-radius-xl);
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 180, 0, 0.2), transparent 22rem),
    radial-gradient(circle at 92% 10%, rgba(58, 98, 186, 0.24), transparent 26rem),
    linear-gradient(135deg, #071226 0%, #0F2D68 55%, #071226 100%);
  box-shadow: 0 26px 70px rgba(7, 18, 38, 0.24);
  color: #FFFFFF;
}

body.woocommerce-order-received .indydtf-thankyou__hero--failed {
  grid-template-columns: 1fr;
}

body.woocommerce-order-received .indydtf-thankyou__eyebrow {
  margin: 0 0 var(--indy-space-2);
  color: #F5C542;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.woocommerce-order-received .indydtf-thankyou__hero h1 {
  max-width: 760px;
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(2rem, 1.4rem + 2vw, 3.25rem);
  font-weight: 700;
  line-height: 1.03;
}

body.woocommerce-order-received .indydtf-thankyou__hero p {
  max-width: 620px;
  margin: var(--indy-space-3) 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.6;
}

body.woocommerce-order-received .indydtf-thankyou__hero-total {
  display: grid;
  gap: var(--indy-space-1);
  justify-items: end;
  padding: var(--indy-space-5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--indy-radius-lg);
  background: rgba(255, 255, 255, 0.08);
}

body.woocommerce-order-received .indydtf-thankyou__hero-total span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
}

body.woocommerce-order-received .indydtf-thankyou__hero-total strong {
  color: #FFFFFF;
  font-size: clamp(2rem, 1.45rem + 1.4vw, 2.85rem);
  font-weight: 850;
  line-height: 1;
}

body.woocommerce-order-received .indydtf-thankyou__hero-total strong .woocommerce-Price-amount,
body.woocommerce-order-received .indydtf-thankyou__hero-total strong bdi,
body.woocommerce-order-received .indydtf-thankyou__hero-total strong .woocommerce-Price-currencySymbol {
  color: inherit;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

body.woocommerce-order-received .indydtf-thankyou__overview.woocommerce-order-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--indy-space-3);
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}

body.woocommerce-order-received .indydtf-thankyou__overview.woocommerce-order-overview li {
  float: none;
  display: grid;
  width: auto;
  gap: 6px;
  margin: 0;
  padding: var(--indy-space-4);
  border: 1px solid rgba(15, 45, 104, 0.12);
  border-radius: var(--indy-radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(7, 18, 38, 0.08);
  color: #536179;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.woocommerce-order-received .indydtf-thankyou__overview.woocommerce-order-overview::before,
body.woocommerce-order-received .indydtf-thankyou__overview.woocommerce-order-overview::after {
  display: none;
  content: none;
}

body.woocommerce-order-received .indydtf-thankyou__overview.woocommerce-order-overview li strong {
  color: #14213D;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

body.woocommerce-order-received .woocommerce-order-details,
body.woocommerce-order-received .woocommerce-customer-details {
  overflow: hidden;
  border: 1px solid rgba(15, 45, 104, 0.12);
  border-radius: var(--indy-radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(7, 18, 38, 0.08);
}

body.woocommerce-order-received .woocommerce-order-details__title,
body.woocommerce-order-received .woocommerce-column__title {
  margin: 0;
  padding: var(--indy-space-5) var(--indy-space-5) var(--indy-space-4);
  color: #14213D;
  font-size: 1.25rem;
  font-weight: 700;
}

body.woocommerce-order-received table.shop_table.order_details {
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

body.woocommerce-order-received table.shop_table.order_details th,
body.woocommerce-order-received table.shop_table.order_details td {
  border-color: rgba(15, 45, 104, 0.1);
}

body.woocommerce-order-received table.shop_table.order_details thead th {
  padding: var(--indy-space-3) var(--indy-space-5);
  background: #F7FAFD;
  color: #5B6A84;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.woocommerce-order-received table.shop_table.order_details tbody td {
  padding: var(--indy-space-5);
  vertical-align: top;
}

body.woocommerce-order-received .indydtf-thankyou-product-title a,
body.woocommerce-order-received .indydtf-thankyou-product-title {
  color: #1E4FD8;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

body.woocommerce-order-received .indydtf-thankyou-product {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: var(--indy-space-4);
  align-items: start;
}

body.woocommerce-order-received .indydtf-thankyou-product__preview {
  display: grid;
  width: 104px;
  min-height: 132px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(30, 79, 216, 0.18);
  border-radius: var(--indy-radius-md);
  background: #FFFFFF;
}

body.woocommerce-order-received .indydtf-thankyou-product__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.woocommerce-order-received .indydtf-thankyou-product__body {
  min-width: 0;
}

body.woocommerce-order-received .product-quantity {
  color: #14213D;
  font-weight: 700;
}

body.woocommerce-order-received .indydtf-thankyou-item-meta {
  display: grid;
  gap: 5px;
  margin: var(--indy-space-3) 0 0;
  padding: 0;
  color: #26344D;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.45;
  list-style: none;
}

body.woocommerce-order-received .indydtf-thankyou-item-meta li {
  margin: 0;
}

body.woocommerce-order-received .indydtf-thankyou-item-meta .wc-item-meta-label {
  color: #536179;
  font-weight: 500;
}

body.woocommerce-order-received table.shop_table.order_details td.product-total {
  width: 28%;
  color: #14213D;
  font-weight: 700;
}

body.woocommerce-order-received .indydtf-thankyou-line-total {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
}

body.woocommerce-order-received .indydtf-thankyou-line-breakdown {
  display: block;
  margin-top: 4px;
  color: #6A778E;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: normal;
}

body.woocommerce-order-received table.shop_table.order_details tfoot th,
body.woocommerce-order-received table.shop_table.order_details tfoot td {
  padding: var(--indy-space-3) var(--indy-space-5);
  color: #26344D;
  font-weight: 600;
}

body.woocommerce-order-received table.shop_table.order_details tfoot tr:last-child th,
body.woocommerce-order-received table.shop_table.order_details tfoot tr:last-child td {
  color: #14213D;
  font-size: 1.02rem;
  font-weight: 750;
}

body.woocommerce-order-received .woocommerce-customer-details address {
  margin: 0;
  padding: 0 var(--indy-space-5) var(--indy-space-5);
  border: none;
  color: #26344D;
  font-style: normal;
  line-height: 1.65;
}

body.woocommerce-order-received .woocommerce-customer-details--phone,
body.woocommerce-order-received .woocommerce-customer-details--email {
  margin: 4px 0 0;
}

/* Footer subscriber system. */
.indydtf-subscribe {
  width: 100%;
  padding: var(--indy-space-10) var(--site-gutter-desktop) var(--indy-space-12);
  box-sizing: border-box;
  background:
    radial-gradient(760px 280px at 8% 20%, rgba(245, 180, 0, 0.14), transparent 64%),
    linear-gradient(180deg, #F7FAFD 0%, #FFFFFF 100%);
}

.indydtf-subscribe__inner {
  width: min(100%, var(--site-content-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
  padding: clamp(24px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(217, 226, 239, 0.9);
  border-radius: var(--indy-radius-xl);
  background:
    radial-gradient(780px 320px at 100% 0%, rgba(245, 180, 0, 0.18), transparent 64%),
    linear-gradient(135deg, #111827 0%, var(--color-primary-dark) 44%, var(--color-primary) 100%);
  box-shadow: 0 24px 56px rgba(15, 45, 104, 0.16);
}

.indydtf-subscribe__content {
  min-width: 0;
  color: #FFFFFF;
}

.indydtf-subscribe__eyebrow {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin: 0 0 var(--indy-space-4);
  padding: 8px 12px;
  border: 1px solid rgba(245, 180, 0, 0.34);
  border-radius: var(--indy-radius-pill);
  background: rgba(245, 180, 0, 0.14);
  color: #FFE08A;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.indydtf-subscribe h2 {
  max-width: 14ch;
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.indydtf-subscribe__content p {
  max-width: 54ch;
  margin: var(--indy-space-4) 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.65;
}

.indydtf-subscribe__form {
  min-width: 0;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--indy-radius-xl);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(7, 18, 38, 0.18);
}

.indydtf-subscribe__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.indydtf-subscribe__fields {
  display: flex;
  gap: var(--indy-space-3);
  align-items: stretch;
}

.indydtf-subscribe__fields input[type="email"] {
  min-width: 0;
  flex: 1 1 auto;
  height: 52px;
  padding: 0 var(--indy-space-4);
  border: 1px solid rgba(15, 45, 104, 0.16);
  border-radius: var(--indy-radius-pill);
  background: #FFFFFF;
  color: var(--indy-color-ink);
  font-size: 1rem;
  font-weight: 650;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(15, 45, 104, 0.04);
}

.indydtf-subscribe__fields input[type="email"]:focus {
  border-color: rgba(245, 180, 0, 0.78);
  box-shadow: var(--indy-button-focus-ring);
}

.indydtf-subscribe__button,
.indydtf-subscribe-status__button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 var(--indy-space-6);
  border: 0;
  border-radius: var(--indy-radius-pill);
  background: var(--color-secondary);
  color: #111827;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.indydtf-subscribe__button:hover,
.indydtf-subscribe-status__button:hover {
  background: var(--color-secondary-dark);
  color: #111827;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(245, 180, 0, 0.24);
}

.indydtf-subscribe__legal {
  margin: var(--indy-space-3) 0 0;
  color: #5B677A;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
}

.indydtf-subscribe__message {
  margin: var(--indy-space-3) 0 0;
  padding: 10px 12px;
  border-radius: var(--indy-radius-lg);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.indydtf-subscribe__message.is-success {
  color: #166534;
  background: #DCFCE7;
}

.indydtf-subscribe__message.is-error {
  color: #991B1B;
  background: #FEE2E2;
}

.indydtf-subscribe-status {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow-y: auto;
  padding: clamp(44px, 8vw, 96px) var(--site-gutter-desktop);
  background: rgba(238, 243, 250, 0.82);
}

.indydtf-subscribe-status__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(720px 320px at 18% 18%, rgba(23, 63, 138, 0.18), transparent 70%),
    radial-gradient(620px 280px at 82% 12%, rgba(245, 180, 0, 0.16), transparent 68%),
    linear-gradient(135deg, rgba(238, 243, 250, 0.9) 0%, rgba(255, 255, 255, 0.84) 52%, rgba(247, 250, 253, 0.9) 100%);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.indydtf-subscribe-status__card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(217, 226, 239, 0.94);
  border-radius: var(--indy-radius-xl);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 80px rgba(15, 45, 104, 0.16);
  text-align: center;
}

.indydtf-subscribe-status__icon {
  display: inline-grid;
  width: 74px;
  height: 74px;
  margin: 0 auto var(--indy-space-5);
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  box-shadow: 0 16px 32px rgba(15, 45, 104, 0.22);
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 850;
  line-height: 1;
}

.indydtf-subscribe-status__icon::before {
  content: "\2713";
}

.indydtf-subscribe-status.is-info .indydtf-subscribe-status__icon::before {
  content: "!";
}

.indydtf-subscribe-status__eyebrow {
  display: inline-flex;
  margin: 0 0 var(--indy-space-4);
  padding: 8px 12px;
  border-radius: var(--indy-radius-pill);
  background: #FFF4CC;
  color: #835E00;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.indydtf-subscribe-status h1 {
  margin: 0;
  color: var(--indy-color-ink);
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.indydtf-subscribe-status p {
  max-width: 56ch;
  margin: var(--indy-space-4) auto 0;
  color: #5B677A;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
}

.indydtf-subscribe-status__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--indy-space-3);
  margin-top: var(--indy-space-6);
}

.indydtf-subscribe-status__button.is-secondary {
  border: 1px solid rgba(15, 45, 104, 0.14);
  background: #FFFFFF;
  color: var(--color-primary-dark);
}

@media (max-width: 900px) {
  .indydtf-subscribe__inner {
    grid-template-columns: 1fr;
  }

  .indydtf-subscribe h2 {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .indydtf-subscribe {
    padding: var(--indy-space-8) var(--site-gutter-mobile) var(--indy-space-10);
  }

  .indydtf-subscribe__inner,
  .indydtf-subscribe__form,
  .indydtf-subscribe-status__card {
    border-radius: var(--indy-radius-lg);
  }

  .indydtf-subscribe__inner {
    padding: var(--indy-space-5) var(--indy-space-4);
  }

  .indydtf-subscribe__fields,
  .indydtf-subscribe-status__actions {
    flex-direction: column;
  }

  .indydtf-subscribe__fields input[type="email"],
  .indydtf-subscribe__button,
  .indydtf-subscribe-status__button {
    width: 100%;
  }

  .indydtf-subscribe-status {
    padding-left: var(--site-gutter-mobile);
    padding-right: var(--site-gutter-mobile);
  }

  .indydtf-subscribe-status__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    font-size: 1.7rem;
  }
}

@media (max-width: 900px) {
  body.woocommerce-order-received .indydtf-thankyou__hero,
  body.woocommerce-order-received .indydtf-thankyou__overview.woocommerce-order-overview {
    grid-template-columns: 1fr 1fr;
  }

  body.woocommerce-order-received .indydtf-thankyou__hero-total {
    justify-items: start;
  }
}

@media (max-width: 767px) {
  body.woocommerce-order-received .indydtf-thankyou__hero,
  body.woocommerce-order-received .indydtf-thankyou__overview.woocommerce-order-overview {
    grid-template-columns: 1fr;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details .indydtf-thankyou-product,
  body.woocommerce-order-received .indydtf-thankyou-product {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table.order_details .indydtf-thankyou-product__preview,
  body.woocommerce-order-received .indydtf-thankyou-product__preview {
    width: 84px;
    min-height: 108px;
  }

  body.woocommerce-order-received table.shop_table.order_details thead {
    display: none;
  }

  body.woocommerce-order-received table.shop_table.order_details tbody tr,
  body.woocommerce-order-received table.shop_table.order_details tbody td {
    display: block;
    width: 100%;
  }

  body.woocommerce-order-received table.shop_table.order_details tbody td.product-total {
    padding-top: 0;
  }

  body.woocommerce-order-received table.shop_table.order_details tbody td.product-total::before {
    content: "Total";
    display: block;
    margin-bottom: 4px;
    color: #5B6A84;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
}

