.tmpe-product-page {
  --tmpe-blue: #0647b7;
  --tmpe-text: #181818;
  --tmpe-muted: #6f6f6f;
  --tmpe-soft: #f4f4f2;
  --tmpe-card: #ffffff;
  --tmpe-pill: #d6d6d4;
  --tmpe-pill-dark: #a9a39b;
  --tmpe-radius: 34px;
  color: var(--tmpe-text);
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 18px clamp(18px, 4vw, 72px) 72px;
  box-sizing: border-box;
}

.tmpe-product-page * { box-sizing: border-box; }

.tmpe-hero {
  display: grid;
  grid-template-columns: minmax(460px, 0.95fr) minmax(420px, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.tmpe-media-card {
  position: sticky;
  top: 96px;
  border-radius: var(--tmpe-radius);
  overflow: hidden;
  background: #f7f7f5;
  min-height: 600px;
}

.tmpe-main-image {
  display: block;
  width: 100%;
  height: min(72vh, 860px);
  min-height: 600px;
  object-fit: contain;
}

.tmpe-content {
  min-height: min(72vh, 860px);
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2.6vw, 40px) 0 0;
}

.tmpe-title-row {
  display: flex;
  align-items: baseline;
  gap: clamp(18px, 3vw, 52px);
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.tmpe-title-row h1 {
  margin: 0;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.tmpe-slogan {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.05;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.04em;
}

.tmpe-intro {
  max-width: 760px;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.28;
  font-weight: 500;
  margin-bottom: clamp(44px, 6vw, 92px);
}

.tmpe-intro p { margin: 0; }

.tmpe-microblocks {
  display: grid;
  gap: 28px;
  max-width: 760px;
  margin-bottom: 48px;
}

.tmpe-microblock h3,
.tmpe-editorial-item h3,
.tmpe-info-block h3 {
  margin: 0 0 4px;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
}

.tmpe-microblock p,
.tmpe-editorial-item p,
.tmpe-info-block p {
  margin: 0;
  font-size: 19px;
  line-height: 1.22;
  color: var(--tmpe-text);
}

.tmpe-purchase {
  width: 100%;
  max-width: 760px;
  margin-top: auto;
  align-self: flex-end;
}

.tmpe-variant-section { margin-bottom: 12px; }

.tmpe-section-label {
  margin: 0 0 8px;
  color: #a3a3a3;
  font-size: 15px;
  font-weight: 600;
}

.tmpe-variant-switch,
.tmpe-qty,
.tmpe-purchase-row {
  display: flex;
  align-items: center;
}

.tmpe-purchase-row {
  justify-content: flex-end;
  gap: 22px;
}

.tmpe-variant-switch {
  justify-content: flex-end;
  background: var(--tmpe-pill);
  border-radius: 999px;
  padding: 8px;
  gap: 0;
  width: fit-content;
  margin-left: auto;
}

.tmpe-variant-pill,
.tmpe-qty button,
.tmpe-qty input,
.tmpe-add-button,
.tmpe-mobile-submit {
  border: 0;
  font-family: inherit;
}

.tmpe-variant-pill {
  min-width: 74px;
  padding: 14px 18px;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.tmpe-variant-pill.is-selected {
  background: #fff;
  color: var(--tmpe-text);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.tmpe-variant-pill.is-disabled {
  opacity: .35;
  cursor: not-allowed;
}

.tmpe-qty {
  background: var(--tmpe-pill);
  border-radius: 999px;
  padding: 8px;
  min-width: 150px;
  justify-content: space-between;
}

.tmpe-qty button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: var(--tmpe-text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.tmpe-qty input {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: var(--tmpe-text);
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  appearance: textfield;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.tmpe-qty input::-webkit-outer-spin-button,
.tmpe-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.tmpe-add-button {
  min-width: 230px;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 999px;
  background: #3450e4;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease;
}

.tmpe-add-button:hover { transform: translateY(-1px); }
.tmpe-add-button:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.tmpe-add-button .woocommerce-Price-amount { color: inherit; }

.tmpe-helper {
  text-align: right;
  color: #a3a3a3;
  font-size: 16px;
  margin: 8px 10px 0 0;
}

.tmpe-details {
  display: grid;
  grid-template-columns: minmax(440px, .95fr) minmax(520px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  margin-top: 60px;
  align-items: start;
}

.tmpe-editorial h2 {
  margin: 0 0 34px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.tmpe-editorial-item { margin-bottom: 28px; max-width: 780px; }

.tmpe-info-card {
  border-radius: 34px;
  background: var(--tmpe-soft);
  padding: clamp(24px, 3vw, 44px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 48px;
}

.tmpe-info-wide { grid-column: 1 / -1; }
.tmpe-info-block pre {
  margin: 0;
  font-family: inherit;
  white-space: pre-wrap;
  font-size: 18px;
  line-height: 1.45;
}


.tmpe-nutrition-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  line-height: 1.45;
}

.tmpe-nutrition-table tr + tr {
  border-top: 1px solid rgba(24, 24, 24, .12);
}

.tmpe-nutrition-table th,
.tmpe-nutrition-table td {
  padding: 7px 0;
  vertical-align: top;
}

.tmpe-nutrition-table th {
  text-align: left;
  font-weight: 650;
}

.tmpe-nutrition-table td {
  text-align: right;
  font-weight: 650;
  white-space: nowrap;
  padding-left: 22px;
}

.tmpe-mobile-bar { display: none; }

@media (max-width: 980px) {
  .tmpe-product-page {
    padding: 0 0 128px;
    max-width: none;
  }

  .tmpe-hero {
    display: block;
  }

  .tmpe-media-card {
    position: relative;
    top: auto;
    border-radius: 0 0 34px 34px;
    min-height: 0;
  }

  .tmpe-main-image {
    height: 58vh;
    min-height: 420px;
    object-fit: contain;
  }

  .tmpe-content {
    min-height: 0;
    padding: 24px 18px 0;
  }

  .tmpe-title-row {
    gap: 10px 18px;
    margin-bottom: 16px;
  }

  .tmpe-title-row h1 {
    font-size: 42px;
  }

  .tmpe-slogan {
    font-size: 24px;
  }

  .tmpe-intro {
    font-size: 18px;
    margin-bottom: 26px;
  }

  .tmpe-microblocks {
    gap: 20px;
    margin-bottom: 28px;
  }

  .tmpe-microblock h3,
  .tmpe-editorial-item h3,
  .tmpe-info-block h3 {
    font-size: 18px;
  }

  .tmpe-microblock p,
  .tmpe-editorial-item p,
  .tmpe-info-block p {
    font-size: 17px;
  }

  .tmpe-purchase {
    max-width: none;
    align-self: auto;
  }

  .tmpe-variant-switch {
    margin-left: 0;
  }

  .tmpe-purchase-row {
    justify-content: space-between;
    gap: 12px;
  }

  .tmpe-qty {
    min-width: 136px;
  }

  .tmpe-add-button {
    min-width: 0;
    flex: 1;
    min-height: 58px;
    font-size: 20px;
  }

  .tmpe-details {
    display: block;
    margin-top: 34px;
    padding: 0 18px;
  }

  .tmpe-editorial h2 {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .tmpe-info-card {
    grid-template-columns: 1fr;
    border-radius: 26px;
    padding: 24px;
    margin-top: 24px;
  }

  .tmpe-mobile-bar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(150, 139, 126, .92);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 36px rgba(0,0,0,.18);
  }

  .tmpe-mobile-price {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    padding-left: 14px;
  }

  .tmpe-mobile-submit {
    border-radius: 999px;
    background: #3450e4;
    color: #fff;
    min-height: 54px;
    padding: 0 28px;
    font-size: 18px;
    font-weight: 800;
  }
}

/* v0.1.4 — Figma visual fit for product page */
.tmpe-product-experience {
    --tmpe-figma-blue: #334add;
    --tmpe-soft: #f0f0f0;
    --tmpe-control: #d6d6d6;
    --tmpe-control-dark: #a9a9a9;
    --tmpe-radius-lg: 34px;
    font-family: "Neue Frutiger World", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #000;
    background: #fff;
}

.tmpe-product-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0 clamp(56px, 6vw, 96px);
}

.tmpe-hero {
    display: grid;
    grid-template-columns: minmax(520px, 44vw) minmax(540px, 1fr);
    gap: clamp(48px, 5.4vw, 96px);
    align-items: stretch;
    min-height: clamp(760px, 88vh, 980px);
    margin: 0;
}

.tmpe-media-card {
    height: 100%;
    min-height: clamp(760px, 88vh, 980px);
    border-radius: 0 0 clamp(34px, 3vw, 58px) 0;
    overflow: hidden;
    background: #f6f6f6;
}

.tmpe-main-image {
    width: 100%;
    height: 100%;
    min-height: clamp(760px, 88vh, 980px);
    object-fit: cover;
    object-position: center center;
    display: block;
}

.tmpe-gallery-thumbs {
    display: none;
}

.tmpe-content {
    max-width: 860px;
    min-height: clamp(760px, 88vh, 980px);
    padding: clamp(48px, 5vw, 86px) clamp(28px, 4vw, 72px) clamp(44px, 5vw, 82px) 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.tmpe-title-row {
    display: flex;
    align-items: baseline;
    gap: clamp(28px, 3.6vw, 72px);
    margin: 0 0 clamp(22px, 2vw, 34px);
}

.tmpe-title {
    font-size: clamp(38px, 3.2vw, 56px);
    line-height: .96;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #0646a3;
    margin: 0;
}

.tmpe-slogan {
    margin: 0;
    font-size: clamp(18px, 1.45vw, 27px);
    line-height: 1;
    font-style: italic;
    font-weight: 700;
    white-space: nowrap;
    color: #060606;
}

.tmpe-description {
    max-width: 770px;
    margin: 0;
    font-size: clamp(18px, 1.1vw, 22px);
    line-height: 1.24;
    letter-spacing: -0.015em;
}

.tmpe-microblocks {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-top: clamp(70px, 7.2vw, 124px);
    max-width: 760px;
}

.tmpe-microblock h3,
.tmpe-microblock__title {
    margin: 0 0 4px;
    font-size: clamp(17px, 1.1vw, 22px);
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tmpe-microblock p,
.tmpe-microblock__text {
    margin: 0;
    font-size: clamp(17px, 1.1vw, 21px);
    line-height: 1.18;
    letter-spacing: -0.015em;
}

.tmpe-addons {
    margin-top: clamp(70px, 6vw, 104px);
    max-width: 520px;
}

.tmpe-addons__title {
    margin: 0 0 14px;
    font-size: clamp(17px, 1.1vw, 22px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tmpe-addons__grid {
    display: flex;
    gap: 18px;
    align-items: stretch;
}

.tmpe-addon-card {
    width: 120px;
    height: 174px;
    border: 0;
    border-radius: 28px;
    background: #bdbdbd;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 28px 12px 18px;
    font: inherit;
    transition: transform .18s ease, background-color .18s ease;
}

.tmpe-addon-card:hover {
    transform: translateY(-2px);
    background: #adadad;
}

.tmpe-addon-card__plus {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
    display: grid;
    place-items: center;
    font-size: 32px;
    line-height: 1;
    font-weight: 300;
    margin-bottom: auto;
}

.tmpe-addon-card__label {
    display: block;
    min-height: 42px;
    font-size: 17px;
    line-height: 1.05;
    letter-spacing: -0.015em;
    text-align: center;
}

.tmpe-purchase {
    width: min(100%, 780px);
    margin-top: auto;
    align-self: flex-end;
    padding-top: clamp(52px, 5vw, 90px);
}

.tmpe-purchase-row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: nowrap;
}

.tmpe-qty,
.tmpe-variant-switch {
    height: 54px;
    border-radius: 999px;
    background: var(--tmpe-control);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 8px;
}

.tmpe-qty {
    min-width: 160px;
}

.tmpe-qty button,
.tmpe-qty input {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    display: grid;
    place-items: center;
    color: #000;
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
}

.tmpe-qty input {
    background: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    appearance: textfield;
}

.tmpe-qty input::-webkit-outer-spin-button,
.tmpe-qty input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.tmpe-variant-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 160px;
}

.tmpe-variant-switch {
    min-width: 192px;
    justify-content: flex-start;
    padding: 0 8px;
}

.tmpe-variant-pill {
    min-width: 76px;
    height: 44px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    white-space: nowrap;
}

.tmpe-variant-pill.is-selected {
    height: 54px;
    min-width: 72px;
    background: #fff;
    color: #000;
    box-shadow: none;
}

.tmpe-variant-pill.is-disabled {
    opacity: .35;
}

.tmpe-helper {
    margin: 8px 0 0 16px;
    color: #b3b3b3;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.tmpe-add-button {
    height: 54px;
    min-width: 220px;
    padding: 0 38px;
    border: 0;
    border-radius: 999px;
    background: var(--tmpe-figma-blue);
    color: #fff;
    font-size: 23px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.tmpe-add-button:hover {
    filter: brightness(.96);
}

.tmpe-details {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(520px, 800px);
    gap: clamp(50px, 5vw, 88px);
    padding: clamp(48px, 5vw, 72px) clamp(28px, 5vw, 64px) 0;
    align-items: start;
}

.tmpe-details-title {
    margin: 0 0 34px;
    font-size: clamp(34px, 2.5vw, 48px);
    line-height: 1.06;
    letter-spacing: -0.04em;
    font-weight: 500;
}

.tmpe-deep-grid {
    display: block;
}

.tmpe-deep-item {
    margin: 0 0 18px;
}

.tmpe-deep-item h3 {
    margin: 0 0 4px;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 800;
}

.tmpe-deep-item p {
    margin: 0;
    font-size: 18px;
    line-height: 1.23;
}

.tmpe-info-card {
    width: min(100%, 800px);
    min-height: 291px;
    background: var(--tmpe-soft);
    border-radius: 28px;
    padding: 32px 32px 34px;
    box-shadow: none;
}

.tmpe-info-grid {
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 34px;
    align-items: start;
}

.tmpe-info-card h3,
.tmpe-info-card h4 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 800;
}

.tmpe-info-card p,
.tmpe-info-card li,
.tmpe-nutrition-table {
    font-size: 18px;
    line-height: 1.25;
}

.tmpe-nutrition-table {
    width: 100%;
    border-collapse: collapse;
}

.tmpe-nutrition-table td:last-child {
    text-align: right;
    white-space: nowrap;
    padding-left: 24px;
}

@media (max-width: 1180px) {
    .tmpe-hero {
        grid-template-columns: 1fr;
        gap: 34px;
        min-height: 0;
    }

    .tmpe-media-card,
    .tmpe-main-image {
        min-height: 520px;
        height: 62vh;
        border-radius: 0 0 34px 34px;
    }

    .tmpe-content {
        min-height: 0;
        max-width: none;
        padding: 0 24px 42px;
    }

    .tmpe-microblocks {
        margin-top: 44px;
    }

    .tmpe-addons {
        margin-top: 44px;
    }

    .tmpe-purchase {
        align-self: stretch;
        width: 100%;
        padding-top: 42px;
    }

    .tmpe-purchase-row {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 14px;
    }

    .tmpe-add-button {
        min-width: 190px;
        flex: 1 1 220px;
    }

    .tmpe-details {
        grid-template-columns: 1fr;
        padding: 42px 24px 0;
    }
}

@media (max-width: 720px) {
    .tmpe-title-row {
        flex-direction: column;
        gap: 8px;
    }

    .tmpe-description,
    .tmpe-microblock p,
    .tmpe-deep-item p,
    .tmpe-info-card p,
    .tmpe-info-card li,
    .tmpe-nutrition-table {
        font-size: 16px;
    }

    .tmpe-addons__grid {
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .tmpe-addon-card {
        flex: 0 0 112px;
        height: 162px;
    }

    .tmpe-qty,
    .tmpe-variant-switch {
        height: 50px;
    }

    .tmpe-qty {
        min-width: 148px;
    }

    .tmpe-qty button,
    .tmpe-qty input {
        width: 46px;
        height: 46px;
    }

    .tmpe-variant-switch {
        min-width: 176px;
    }

    .tmpe-variant-pill {
        min-width: 70px;
        font-size: 16px;
    }

    .tmpe-add-button {
        width: 100%;
        min-width: 0;
    }

    .tmpe-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* v0.1.4 selector corrections for the existing plugin markup */
.tmpe-product-page {
    --tmpe-figma-blue: #334add;
    --tmpe-soft: #f0f0f0;
    --tmpe-control: #d6d6d6;
    --tmpe-control-dark: #a9a9a9;
    font-family: "Neue Frutiger World", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #000;
    background: #fff;
}

.tmpe-title-row h1 {
    font-size: clamp(38px, 3.2vw, 56px);
    line-height: .96;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #0646a3;
    margin: 0;
}

.tmpe-intro {
    max-width: 770px;
    margin: 0;
    font-size: clamp(18px, 1.1vw, 22px);
    line-height: 1.24;
    letter-spacing: -0.015em;
}

.tmpe-microblocks h3 {
    margin: 0 0 4px;
    font-size: clamp(17px, 1.1vw, 22px);
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tmpe-microblocks p {
    margin: 0;
    font-size: clamp(17px, 1.1vw, 21px);
    line-height: 1.18;
    letter-spacing: -0.015em;
}

.tmpe-editorial h2 {
    margin: 0 0 34px;
    font-size: clamp(34px, 2.5vw, 48px);
    line-height: 1.06;
    letter-spacing: -0.04em;
    font-weight: 500;
}

.tmpe-editorial-list {
    display: block;
}

.tmpe-editorial-item {
    margin: 0 0 18px;
}

.tmpe-editorial-item h3 {
    margin: 0 0 4px;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 800;
}

.tmpe-editorial-item p {
    margin: 0;
    font-size: 18px;
    line-height: 1.23;
}

.tmpe-info-card {
    display: grid;
    grid-template-columns: 1.35fr .9fr;
    column-gap: 40px;
    row-gap: 26px;
}

.tmpe-info-card .tmpe-info-wide {
    grid-column: 1 / -1;
}

.tmpe-info-card p {
    margin: 0;
}

@media (max-width: 720px) {
    .tmpe-info-card {
        grid-template-columns: 1fr;
    }

    .tmpe-info-card .tmpe-info-wide {
        grid-column: auto;
    }
}

/* v0.1.5 — Figma fit: hero geometry and buying block */
.tmpe-product-page {
    --tmpe-blue: #013B9B;
    --tmpe-fg: #000000;
    --tmpe-side: 75px;
    --tmpe-gap: 50px;
    --tmpe-media-w: 733px;
    --tmpe-media-h: 916px;
    --tmpe-radius: 28px;
}

@media (min-width: 981px) {
    .tmpe-product-page {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding: 0 var(--tmpe-side) 72px !important;
        box-sizing: border-box;
        color: var(--tmpe-fg);
    }

    .tmpe-product-page .tmpe-hero {
        width: 100%;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        display: grid !important;
        grid-template-columns: var(--tmpe-media-w) minmax(0, 1fr) !important;
        column-gap: var(--tmpe-gap) !important;
        row-gap: 0 !important;
        align-items: start !important;
        min-height: var(--tmpe-media-h);
    }

    .tmpe-product-page .tmpe-media {
        width: var(--tmpe-media-w) !important;
        height: var(--tmpe-media-h) !important;
        max-width: var(--tmpe-media-w) !important;
        margin: 0 !important;
    }

    .tmpe-product-page .tmpe-media-card {
        width: 100% !important;
        height: var(--tmpe-media-h) !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        border-radius: var(--tmpe-radius) !important;
        overflow: hidden !important;
        box-shadow: none !important;
        background: #f3f1ee;
    }

    .tmpe-product-page .tmpe-media-card img,
    .tmpe-product-page .tmpe-media-card video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    .tmpe-product-page .tmpe-content {
        min-height: var(--tmpe-media-h) !important;
        max-width: none !important;
        width: 100% !important;
        padding: 50px 0 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        box-sizing: border-box;
    }

    .tmpe-product-page .tmpe-title-row {
        width: 100%;
        max-width: 749px;
        display: flex !important;
        align-items: baseline !important;
        gap: 64px !important;
        margin: 0 0 34px !important;
        padding: 0 !important;
    }

    .tmpe-product-page .tmpe-title {
        margin: 0 !important;
        color: var(--tmpe-blue) !important;
        font-family: "Neue Frutiger World", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
        font-size: 32px !important;
        line-height: 1.1 !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
        white-space: nowrap;
    }

    .tmpe-product-page .tmpe-script {
        color: #000 !important;
        font-family: "Balneario Script", "Balneario", "Brush Script MT", cursive !important;
        font-size: 16px !important;
        line-height: 20px !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
        white-space: nowrap;
        transform: none !important;
    }

    .tmpe-product-page .tmpe-intro {
        max-width: 749px !important;
        margin: 0 0 88px !important;
        color: #000 !important;
        font-family: "Neue Frutiger World", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
        font-size: 16px !important;
        line-height: 20px !important;
        font-weight: 400 !important;
        letter-spacing: 0 !important;
    }

    .tmpe-product-page .tmpe-microblocks {
        width: 100%;
        max-width: 546px !important;
        margin: 0 !important;
        display: grid !important;
        gap: 26px !important;
    }

    .tmpe-product-page .tmpe-microblock h3 {
        margin: 0 0 8px !important;
        color: #000 !important;
        font-family: "Neue Frutiger World", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
        font-size: 16px !important;
        line-height: 20px !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
    }

    .tmpe-product-page .tmpe-microblock p {
        margin: 0 !important;
        color: #000 !important;
        font-family: "Neue Frutiger World", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
        font-size: 16px !important;
        line-height: 20px !important;
        font-weight: 400 !important;
        letter-spacing: 0 !important;
    }

    .tmpe-product-page .tmpe-addons {
        width: 100%;
        max-width: 546px !important;
        margin: 74px 0 0 !important;
        padding: 0 !important;
    }

    .tmpe-product-page .tmpe-section-label {
        margin: 0 0 18px !important;
        color: #000 !important;
        font-family: "Neue Frutiger World", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
        font-size: 16px !important;
        line-height: 20px !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
    }

    .tmpe-product-page .tmpe-addon-grid {
        display: flex !important;
        gap: 18px !important;
        align-items: stretch !important;
    }

    .tmpe-product-page .tmpe-addon-card {
        width: 100px !important;
        min-width: 100px !important;
        min-height: 142px !important;
        padding: 14px 10px 12px !important;
        border-radius: 28px !important;
        background: #f1f1f1 !important;
        box-shadow: none !important;
        border: 0 !important;
    }

    .tmpe-product-page .tmpe-addon-image {
        width: 52px !important;
        height: 52px !important;
        margin: 0 auto 11px !important;
        border-radius: 18px !important;
    }

    .tmpe-product-page .tmpe-addon-title {
        color: #000 !important;
        font-family: "Neue Frutiger World", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
        font-size: 14px !important;
        line-height: 16px !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
    }

    .tmpe-product-page .tmpe-addon-price {
        color: #000 !important;
        font-size: 14px !important;
        line-height: 16px !important;
        font-weight: 400 !important;
    }

    .tmpe-product-page .tmpe-purchase {
        width: 100% !important;
        max-width: none !important;
        margin-top: auto !important;
        padding: 0 !important;
    }

    .tmpe-product-page .tmpe-purchase-row {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-end !important;
        gap: 24px !important;
        width: 100% !important;
        min-height: 75px !important;
        margin: 0 !important;
    }

    .tmpe-product-page .tmpe-qty {
        width: 160px !important;
        height: 53px !important;
        min-height: 53px !important;
        padding: 0 !important;
        display: grid !important;
        grid-template-columns: 53px 54px 53px !important;
        align-items: center !important;
        border-radius: 999px !important;
        background: #e9e9e9 !important;
        border: 0 !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }

    .tmpe-product-page .tmpe-qty button,
    .tmpe-product-page .tmpe-qty input {
        width: 53px !important;
        height: 53px !important;
        min-height: 53px !important;
        border: 0 !important;
        background: transparent !important;
        color: #000 !important;
        font-family: "Neue Frutiger World", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
        font-size: 18px !important;
        line-height: 53px !important;
        font-weight: 700 !important;
        text-align: center !important;
        padding: 0 !important;
    }

    .tmpe-product-page .tmpe-qty input {
        width: 54px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        appearance: textfield;
    }

    .tmpe-product-page .tmpe-action-stack {
        width: 353px !important;
        height: 75px !important;
        min-height: 75px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 2px !important;
    }

    .tmpe-product-page .tmpe-action-combo {
        width: 353px !important;
        height: 53px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 8px !important;
    }

    .tmpe-product-page .tmpe-variant-switch {
        height: 53px !important;
        min-height: 53px !important;
        width: 159px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: #e9e9e9 !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }

    .tmpe-product-page .tmpe-variant-pill {
        width: 53px !important;
        height: 53px !important;
        min-width: 53px !important;
        min-height: 53px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: transparent !important;
        color: #000 !important;
        font-family: "Neue Frutiger World", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
        font-size: 14px !important;
        line-height: 53px !important;
        font-weight: 700 !important;
        text-align: center !important;
        box-shadow: none !important;
    }

    .tmpe-product-page .tmpe-variant-pill.is-selected {
        width: 57px !important;
        height: 57px !important;
        min-width: 57px !important;
        min-height: 57px !important;
        line-height: 57px !important;
        background: var(--tmpe-blue) !important;
        color: #fff !important;
        transform: translateY(0) !important;
        margin-left: -2px !important;
        margin-right: -2px !important;
    }

    .tmpe-product-page .tmpe-add-button {
        width: 186px !important;
        height: 53px !important;
        min-height: 53px !important;
        padding: 0 22px !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: var(--tmpe-blue) !important;
        color: #fff !important;
        box-shadow: none !important;
        font-family: "Neue Frutiger World", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
        font-size: 18px !important;
        line-height: 53px !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
        text-align: center !important;
    }

    .tmpe-product-page .tmpe-helper {
        width: 124px !important;
        margin: 0 0 0 0 !important;
        color: #000 !important;
        opacity: 1 !important;
        font-family: "Neue Frutiger World", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
        font-size: 14px !important;
        line-height: 20px !important;
        font-weight: 400 !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
    }

    .tmpe-product-page .tmpe-details {
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (min-width: 981px) and (max-width: 1340px) {
    .tmpe-product-page {
        --tmpe-side: 48px;
        --tmpe-gap: 40px;
        --tmpe-media-w: 620px;
        --tmpe-media-h: 775px;
    }

    .tmpe-product-page .tmpe-content {
        padding-top: 44px !important;
    }

    .tmpe-product-page .tmpe-title-row {
        gap: 42px !important;
    }
}

@media (max-width: 980px) {
    .tmpe-product-page .tmpe-action-stack {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .tmpe-product-page .tmpe-action-combo {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
    }
}


/* v0.1.6 — desktop polish after real WooCommerce test
   Fixes: purchase panel no longer sinks to the bottom of the hero, variant pills have enough width,
   add-on placeholders are readable, hero section creates less empty vertical space. */
.tmpe-product-page .tmpe-addon-card{
    background: linear-gradient(180deg, #f8f8f8 0%, #eeeeee 100%) !important;
    border: 1px solid rgba(0,0,0,.055) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72) !important;
}

.tmpe-product-page .tmpe-addon-card::before{
    opacity: .52 !important;
}

.tmpe-product-page .tmpe-addon-plus{
    background: rgba(255,255,255,.72) !important;
    color: #0746a7 !important;
    text-shadow: none !important;
}

.tmpe-product-page .tmpe-addon-title{
    color: #303030 !important;
    text-shadow: none !important;
    opacity: .72 !important;
    font-weight: 700 !important;
}

.tmpe-product-page .tmpe-variant-pill,
.tmpe-product-page .tmpe-variant-pill *{
    text-decoration: none !important;
}

.tmpe-product-page .tmpe-variant-pill:not(.is-active){
    color: #1f1f1f !important;
    opacity: 1 !important;
}

@media (min-width: 1181px){
    .tmpe-product-page{
        --tmpe-page-x: clamp(44px, 4.9vw, 96px);
        --tmpe-hero-gap: clamp(48px, 4.4vw, 88px);
    }

    .tmpe-product-page .tmpe-hero{
        grid-template-columns: minmax(520px, 1.02fr) minmax(430px, .98fr) !important;
        gap: var(--tmpe-hero-gap) !important;
        min-height: 0 !important;
        align-items: start !important;
        padding: 48px var(--tmpe-page-x) 66px !important;
    }

    .tmpe-product-page .tmpe-media-card,
    .tmpe-product-page .tmpe-main-image{
        height: clamp(610px, calc(100svh - 172px), 800px) !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .tmpe-product-page .tmpe-content{
        min-height: 0 !important;
        padding-top: clamp(38px, 4.8svh, 74px) !important;
        padding-bottom: 0 !important;
    }

    .tmpe-product-page .tmpe-title-row{
        margin-bottom: 28px !important;
    }

    .tmpe-product-page .tmpe-microblocks{
        margin-top: 76px !important;
    }

    .tmpe-product-page .tmpe-addons{
        margin-top: 54px !important;
    }

    .tmpe-product-page .tmpe-purchase{
        margin-top: 42px !important;
        align-self: stretch !important;
        width: 100% !important;
        padding-top: 0 !important;
    }

    .tmpe-product-page .tmpe-purchase-row{
        justify-content: flex-start !important;
        align-items: flex-start !important;
        flex-wrap: nowrap !important;
        gap: 12px !important;
    }

    .tmpe-product-page .tmpe-qty{
        flex: 0 0 156px !important;
        width: 156px !important;
        min-width: 156px !important;
        height: 64px !important;
    }

    .tmpe-product-page .tmpe-qty button,
    .tmpe-product-page .tmpe-qty input{
        width: 52px !important;
        height: 52px !important;
    }

    .tmpe-product-page .tmpe-action-stack{
        flex: 0 1 auto !important;
        min-width: 0 !important;
    }

    .tmpe-product-page .tmpe-action-combo{
        width: auto !important;
        max-width: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
    }

    .tmpe-product-page .tmpe-variant-switch{
        flex: 0 0 auto !important;
        width: max-content !important;
        min-width: 178px !important;
        height: 64px !important;
        padding: 0 4px !important;
        overflow: visible !important;
    }

    .tmpe-product-page .tmpe-variant-pill{
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 86px !important;
        height: 56px !important;
        padding: 0 16px !important;
        margin: 0 !important;
        white-space: nowrap !important;
        letter-spacing: -.02em !important;
    }

    .tmpe-product-page .tmpe-variant-pill.is-active{
        min-width: 86px !important;
        box-shadow: none !important;
    }

    .tmpe-product-page .tmpe-add-button{
        flex: 0 0 220px !important;
        width: 220px !important;
        min-width: 220px !important;
        height: 64px !important;
    }

    .tmpe-product-page .tmpe-helper{
        width: 178px !important;
        margin: 7px 0 0 190px !important;
        text-align: center !important;
        line-height: 1.1 !important;
    }

    .tmpe-product-page .tmpe-details{
        padding: 64px var(--tmpe-page-x) 0 !important;
        gap: clamp(56px, 5vw, 92px) !important;
    }
}

@media (max-width: 1180px){
    .tmpe-product-page .tmpe-purchase{
        margin-top: 34px !important;
        padding-top: 0 !important;
    }

    .tmpe-product-page .tmpe-purchase-row{
        justify-content: flex-start !important;
    }

    .tmpe-product-page .tmpe-variant-switch{
        width: max-content !important;
        min-width: 178px !important;
    }

    .tmpe-product-page .tmpe-variant-pill{
        width: auto !important;
        min-width: 86px !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 720px){
    .tmpe-product-page .tmpe-action-combo{
        width: 100% !important;
        flex-wrap: wrap !important;
    }

    .tmpe-product-page .tmpe-variant-switch{
        flex: 1 1 100% !important;
        width: 100% !important;
    }

    .tmpe-product-page .tmpe-variant-pill{
        flex: 1 1 0 !important;
        min-width: 0 !important;
    }

    .tmpe-product-page .tmpe-helper{
        width: 100% !important;
        margin-left: 0 !important;
        text-align: left !important;
    }
}


/* v0.1.7 — cache-busted layout fixes */
.tmpe-product-page {
    --tmpe-max: 1740px;
}

.tmpe-product-page .tmpe-hero {
    min-height: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
}

.tmpe-product-page .tmpe-media-card {
    border-radius: 0 32px 32px 0 !important;
}

.tmpe-product-page .tmpe-content {
    padding-top: 52px !important;
}

.tmpe-product-page .tmpe-addons__grid {
    gap: 18px !important;
}

.tmpe-product-page .tmpe-addon-card {
    background: #f1f1f1 !important;
    color: #2a2a2a !important;
    border: 1px solid rgba(0,0,0,.035) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.55) !important;
}

.tmpe-product-page .tmpe-addon-card__plus {
    background: rgba(255,255,255,.74) !important;
    color: #0b49ae !important;
}

.tmpe-product-page .tmpe-addon-card__label {
    color: #3a3a3a !important;
    text-shadow: none !important;
}

.tmpe-product-page .tmpe-addon-card:hover {
    background: #e9e9e9 !important;
    transform: translateY(-1px) !important;
}

.tmpe-product-page .tmpe-purchase {
    margin-top: 42px !important;
}

.tmpe-product-page .tmpe-purchase-row {
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
}

.tmpe-product-page .tmpe-qty,
.tmpe-product-page .tmpe-variant-switch,
.tmpe-product-page .tmpe-add-button {
    height: 64px !important;
}

.tmpe-product-page .tmpe-qty {
    flex: 0 0 146px !important;
    background: #eeeeee !important;
}

.tmpe-product-page .tmpe-qty button,
.tmpe-product-page .tmpe-qty input {
    height: 56px !important;
    text-decoration: none !important;
}

.tmpe-product-page .tmpe-action-stack {
    align-items: flex-start !important;
    flex: 1 1 auto !important;
    max-width: 690px !important;
}

.tmpe-product-page .tmpe-action-combo {
    display: grid !important;
    grid-template-columns: minmax(210px, 330px) minmax(190px, 260px) !important;
    gap: 12px !important;
    align-items: center !important;
    width: 100% !important;
}

.tmpe-product-page .tmpe-variant-switch {
    width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 4px !important;
    border-radius: 999px !important;
    background: #e9e9e9 !important;
    overflow: visible !important;
}

.tmpe-product-page .tmpe-variant-pill,
.tmpe-product-page .tmpe-variant-pill *,
.tmpe-product-page .tmpe-variant-pill.is-selected,
.tmpe-product-page .tmpe-variant-pill.is-active {
    text-decoration: none !important;
}

.tmpe-product-page .tmpe-variant-pill {
    min-width: 78px !important;
    height: 56px !important;
    border-radius: 999px !important;
    color: #111 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
}

.tmpe-product-page .tmpe-variant-pill.is-selected,
.tmpe-product-page .tmpe-variant-pill.is-active {
    background: var(--tmpe-blue) !important;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(6,68,158,.18) !important;
}

.tmpe-product-page .tmpe-add-button {
    width: 100% !important;
    min-width: 190px !important;
    border-radius: 999px !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: .01em !important;
}

.tmpe-product-page .tmpe-helper {
    width: 100% !important;
    margin-top: 6px !important;
    padding-left: 350px !important;
    text-align: left !important;
    color: #222 !important;
    font-size: 14px !important;
}

.tmpe-product-page .tmpe-details {
    margin-top: 88px !important;
    padding-top: 0 !important;
}

.tmpe-product-page .tmpe-info-card {
    background: #f1f1f1 !important;
}

@media (max-width: 1280px) {
    .tmpe-product-page .tmpe-hero {
        grid-template-columns: 1fr 1fr !important;
        gap: 50px !important;
    }
    .tmpe-product-page .tmpe-purchase-row {
        flex-wrap: wrap !important;
    }
    .tmpe-product-page .tmpe-action-stack {
        width: 100% !important;
    }
    .tmpe-product-page .tmpe-helper {
        padding-left: 0 !important;
        text-align: center !important;
    }
}

@media (max-width: 980px) {
    .tmpe-product-page .tmpe-hero {
        padding-top: 0 !important;
    }
    .tmpe-product-page .tmpe-content {
        padding-top: 34px !important;
    }
    .tmpe-product-page .tmpe-purchase-row {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .tmpe-product-page .tmpe-qty {
        flex: 0 0 auto !important;
        width: 148px !important;
    }
    .tmpe-product-page .tmpe-action-combo {
        grid-template-columns: 1fr !important;
    }
    .tmpe-product-page .tmpe-add-button {
        min-width: 0 !important;
    }
    .tmpe-product-page .tmpe-details {
        margin-top: 56px !important;
    }
}

/* =========================================================
   v0.1.8 — Figma-fit purchase controls
   Target: separate quantity pill + combined weight/price pill.
   ========================================================= */
.tmpe-product-page .tmpe-purchase {
    margin-top: 38px !important;
}

.tmpe-product-page .tmpe-purchase-row {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    gap: 45px !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
}

.tmpe-product-page .tmpe-qty {
    flex: 0 0 193px !important;
    width: 193px !important;
    height: 53px !important;
    min-height: 53px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(179,179,179,.50) !important;
    box-shadow: none !important;
    display: grid !important;
    grid-template-columns: 64px 65px 64px !important;
    align-items: center !important;
    overflow: hidden !important;
}

.tmpe-product-page .tmpe-qty button,
.tmpe-product-page .tmpe-qty input {
    width: 100% !important;
    height: 53px !important;
    min-height: 53px !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 22px !important;
    line-height: 53px !important;
    font-weight: 600 !important;
    font-family: var(--tmpe-font, inherit) !important;
    text-align: center !important;
    color: #000 !important;
    background: transparent !important;
    text-decoration: none !important;
}

.tmpe-product-page .tmpe-qty input {
    -webkit-appearance: none !important;
    appearance: none !important;
    border-radius: 50% !important;
    background: #fff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

.tmpe-product-page .tmpe-qty input::-webkit-outer-spin-button,
.tmpe-product-page .tmpe-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.tmpe-product-page .tmpe-qty input[type=number] {
    -moz-appearance: textfield !important;
}

.tmpe-product-page .tmpe-action-stack {
    flex: 0 0 353px !important;
    width: 353px !important;
    max-width: 353px !important;
    align-items: flex-start !important;
}

.tmpe-product-page .tmpe-action-combo {
    width: 353px !important;
    height: 75px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    background: rgba(179,179,179,.50) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 25px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

.tmpe-product-page .tmpe-variant-switch {
    flex: 0 0 118px !important;
    width: 118px !important;
    height: 57px !important;
    min-width: 118px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    overflow: visible !important;
}

.tmpe-product-page .tmpe-variant-pill {
    flex: 0 0 53px !important;
    width: 53px !important;
    height: 53px !important;
    min-width: 53px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: var(--tmpe-font, inherit) !important;
    font-size: 16px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    letter-spacing: -0.03em !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    transform: none !important;
    transition: background .18s ease, color .18s ease, transform .18s ease !important;
}

.tmpe-product-page .tmpe-variant-pill.is-selected,
.tmpe-product-page .tmpe-variant-pill.is-active {
    flex-basis: 57px !important;
    width: 57px !important;
    height: 57px !important;
    min-width: 57px !important;
    background: #fff !important;
    color: #000 !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    box-shadow: none !important;
    z-index: 2 !important;
}

.tmpe-product-page .tmpe-add-button {
    flex: 0 0 186px !important;
    width: 186px !important;
    min-width: 186px !important;
    max-width: 186px !important;
    height: 53px !important;
    min-height: 53px !important;
    padding: 0 20px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #3349E5 !important;
    color: #fff !important;
    box-shadow: none !important;
    font-family: var(--tmpe-font, inherit) !important;
    font-size: 26px !important;
    line-height: 53px !important;
    font-weight: 500 !important;
    letter-spacing: -0.035em !important;
    text-transform: none !important;
    white-space: nowrap !important;
    text-align: center !important;
    text-decoration: none !important;
}

.tmpe-product-page .tmpe-add-button:hover {
    background: #2540df !important;
    transform: none !important;
    box-shadow: none !important;
}

.tmpe-product-page .tmpe-add-button:disabled {
    opacity: .45 !important;
    cursor: not-allowed !important;
}

.tmpe-product-page .tmpe-helper {
    width: 353px !important;
    margin: -4px 0 0 0 !important;
    padding: 0 0 0 58px !important;
    color: #1f1f1f !important;
    font-family: var(--tmpe-font, inherit) !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    text-align: left !important;
    letter-spacing: -0.02em !important;
}

@media (max-width: 1280px) {
    .tmpe-product-page .tmpe-purchase-row {
        justify-content: flex-start !important;
        gap: 24px !important;
    }
}

@media (max-width: 980px) {
    .tmpe-product-page .tmpe-purchase-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }
    .tmpe-product-page .tmpe-action-stack,
    .tmpe-product-page .tmpe-action-combo,
    .tmpe-product-page .tmpe-helper {
        width: 353px !important;
        max-width: 100% !important;
    }
}

@media (max-width: 430px) {
    .tmpe-product-page .tmpe-action-stack,
    .tmpe-product-page .tmpe-action-combo,
    .tmpe-product-page .tmpe-helper {
        width: 100% !important;
    }
    .tmpe-product-page .tmpe-action-combo {
        height: 70px !important;
        padding: 0 10px !important;
        gap: 16px !important;
    }
    .tmpe-product-page .tmpe-variant-switch {
        flex-basis: 112px !important;
        width: 112px !important;
        min-width: 112px !important;
    }
    .tmpe-product-page .tmpe-variant-pill {
        flex-basis: 51px !important;
        width: 51px !important;
        height: 51px !important;
        min-width: 51px !important;
        font-size: 15px !important;
    }
    .tmpe-product-page .tmpe-variant-pill.is-selected,
    .tmpe-product-page .tmpe-variant-pill.is-active {
        flex-basis: 55px !important;
        width: 55px !important;
        height: 55px !important;
        min-width: 55px !important;
        font-size: 16px !important;
    }
    .tmpe-product-page .tmpe-add-button {
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        font-size: 23px !important;
    }
    .tmpe-product-page .tmpe-helper {
        padding-left: 52px !important;
        font-size: 14px !important;
    }
}


/* === the Moon. product action controls — fixed v0.2.0 === */
body.single-product .tmpe-product-page .tmpe-form,
body.single-product .tmpe-product-page form.tmpe-form {
  width: 100% !important;
  max-width: 760px !important;
}

body.single-product .tmpe-product-page .tmpe-action-row {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 26px !important;
  margin-top: 42px !important;
  width: 100% !important;
}

body.single-product .tmpe-product-page .tmpe-qty-control {
  flex: 0 0 174px !important;
  width: 174px !important;
  height: 53px !important;
  display: grid !important;
  grid-template-columns: 53px 68px 53px !important;
  align-items: center !important;
  border-radius: 999px !important;
  background: #d9d9d9 !important;
  overflow: hidden !important;
}

body.single-product .tmpe-product-page .tmpe-qty-button,
body.single-product .tmpe-product-page button.tmpe-qty-button {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 53px !important;
  height: 53px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #000 !important;
  font-size: 28px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
}

body.single-product .tmpe-product-page .tmpe-qty-value,
body.single-product .tmpe-product-page input.tmpe-qty-value {
  width: 68px !important;
  height: 53px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #000 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 53px !important;
  text-align: center !important;
  box-shadow: none !important;
  -moz-appearance: textfield !important;
}

body.single-product .tmpe-product-page .tmpe-qty-value::-webkit-outer-spin-button,
body.single-product .tmpe-product-page .tmpe-qty-value::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

body.single-product .tmpe-product-page .tmpe-purchase-group {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  height: 53px !important;
}

body.single-product .tmpe-product-page .tmpe-variant-section {
  position: relative !important;
  flex: 0 0 178px !important;
  width: 178px !important;
  height: 53px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.single-product .tmpe-product-page .tmpe-variant-buttons {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  align-items: center !important;
  width: 178px !important;
  height: 53px !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  border-radius: 999px !important;
  background: #d9d9d9 !important;
  overflow: hidden !important;
}

body.single-product .tmpe-product-page .tmpe-variant-button,
body.single-product .tmpe-product-page button.tmpe-variant-button {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 100% !important;
  height: 53px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #111 !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
  line-height: 53px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
  white-space: nowrap !important;
  text-transform: none !important;
}

body.single-product .tmpe-product-page .tmpe-variant-button.is-active,
body.single-product .tmpe-product-page button.tmpe-variant-button.is-active {
  background: #fff !important;
  color: #000 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

body.single-product .tmpe-product-page .tmpe-variant-button.is-unavailable {
  opacity: .35 !important;
  pointer-events: none !important;
}

body.single-product .tmpe-product-page .tmpe-variant-note {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: calc(100% + 5px) !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #111 !important;
  font-size: 15px !important;
  line-height: 18px !important;
  font-weight: 400 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

body.single-product .tmpe-product-page .tmpe-add-to-cart,
body.single-product .tmpe-product-page button.tmpe-add-to-cart {
  flex: 0 0 214px !important;
  width: 214px !important;
  height: 53px !important;
  padding: 0 28px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #0146b3 !important;
  color: #fff !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
  line-height: 53px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

body.single-product .tmpe-product-page .tmpe-add-to-cart:hover,
body.single-product .tmpe-product-page button.tmpe-add-to-cart:hover {
  background: #0146b3 !important;
  color: #fff !important;
  transform: none !important;
}

body.single-product .tmpe-product-page .tmpe-button-price,
body.single-product .tmpe-product-page .tmpe-mobile-price {
  display: inline-block !important;
  color: inherit !important;
}

body.single-product .tmpe-product-page .tmpe-add-to-cart.is-loading,
body.single-product .tmpe-product-page .tmpe-mobile-submit.is-loading {
  opacity: .72 !important;
  pointer-events: none !important;
}

body.single-product .tmpe-product-page .tmpe-addon-cards {
  display: flex !important;
  align-items: flex-start !important;
  gap: 18px !important;
}
body.single-product .tmpe-product-page .tmpe-addon-card {
  width: 112px !important;
  height: 154px !important;
  padding: 16px 10px 20px !important;
  border-radius: 26px !important;
  background: #f0f0f0 !important;
  border: 1px solid rgba(0,0,0,.04) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: space-between !important;
  overflow: hidden !important;
}
body.single-product .tmpe-product-page .tmpe-addon-plus {
  width: 36px !important;
  height: 36px !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #0146b3 !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  line-height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
body.single-product .tmpe-product-page .tmpe-addon-name {
  color: #2a2a2a !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 17px !important;
  text-align: center !important;
  letter-spacing: -0.02em !important;
  max-width: 100% !important;
  white-space: normal !important;
}

@media (max-width: 900px) {
  body.single-product .tmpe-product-page .tmpe-action-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
  }
  body.single-product .tmpe-product-page .tmpe-purchase-group {
    width: 100% !important;
    justify-content: flex-start !important;
  }
}


/* === the Moon. product action controls — ACTUAL markup fix v0.2.0 === */
body.single-product .tmpe-product-page .tmpe-purchase {
  margin-top: 38px !important;
  width: 100% !important;
}

body.single-product .tmpe-product-page .tmpe-purchase-row {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  gap: 28px !important;
  width: 100% !important;
  flex-wrap: nowrap !important;
}

body.single-product .tmpe-product-page .tmpe-qty {
  flex: 0 0 166px !important;
  width: 166px !important;
  height: 53px !important;
  min-height: 53px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #d9d9d9 !important;
  display: grid !important;
  grid-template-columns: 53px 60px 53px !important;
  align-items: center !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

body.single-product .tmpe-product-page .tmpe-qty button,
body.single-product .tmpe-product-page .tmpe-qty input {
  width: 100% !important;
  height: 53px !important;
  min-height: 53px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  color: #000 !important;
  font-family: var(--tmpe-font, inherit) !important;
  line-height: 53px !important;
  text-align: center !important;
}

body.single-product .tmpe-product-page .tmpe-qty button {
  font-size: 25px !important;
  font-weight: 600 !important;
  border-radius: 999px !important;
}

body.single-product .tmpe-product-page .tmpe-qty input {
  border-radius: 999px !important;
  background: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

body.single-product .tmpe-product-page .tmpe-qty input::-webkit-outer-spin-button,
body.single-product .tmpe-product-page .tmpe-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
body.single-product .tmpe-product-page .tmpe-qty input[type=number] {
  -moz-appearance: textfield !important;
}

body.single-product .tmpe-product-page .tmpe-action-stack {
  flex: 0 0 355px !important;
  width: 355px !important;
  max-width: 355px !important;
  min-width: 355px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 5px !important;
}

body.single-product .tmpe-product-page .tmpe-action-combo {
  width: 355px !important;
  height: 53px !important;
  min-height: 53px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: #d9d9d9 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0 !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

body.single-product .tmpe-product-page .tmpe-variant-switch {
  flex: 0 0 126px !important;
  width: 126px !important;
  min-width: 126px !important;
  height: 53px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  display: grid !important;
  grid-template-columns: 63px 63px !important;
  align-items: center !important;
  gap: 0 !important;
  overflow: visible !important;
}

body.single-product .tmpe-product-page .tmpe-variant-pill {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 63px !important;
  height: 53px !important;
  min-width: 63px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #151515 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--tmpe-font, inherit) !important;
  font-size: 16px !important;
  line-height: 53px !important;
  font-weight: 500 !important;
  letter-spacing: -0.03em !important;
  white-space: nowrap !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transform: none !important;
}

body.single-product .tmpe-product-page .tmpe-variant-pill.is-selected,
body.single-product .tmpe-product-page .tmpe-variant-pill.is-active {
  width: 63px !important;
  height: 53px !important;
  min-width: 63px !important;
  background: #fff !important;
  color: #000 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
  z-index: 2 !important;
}

body.single-product .tmpe-product-page .tmpe-add-button {
  flex: 0 0 214px !important;
  width: 214px !important;
  min-width: 214px !important;
  max-width: 214px !important;
  height: 53px !important;
  min-height: 53px !important;
  padding: 0 26px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #0146b3 !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--tmpe-font, inherit) !important;
  font-size: 26px !important;
  line-height: 53px !important;
  font-weight: 500 !important;
  letter-spacing: -0.035em !important;
  white-space: nowrap !important;
  text-align: center !important;
  text-decoration: none !important;
  box-shadow: none !important;
  text-transform: none !important;
  overflow: hidden !important;
}

body.single-product .tmpe-product-page .tmpe-add-button:hover,
body.single-product .tmpe-product-page .tmpe-add-button:focus {
  background: #0146b3 !important;
  color: #fff !important;
  transform: none !important;
  box-shadow: none !important;
}

body.single-product .tmpe-product-page .tmpe-add-button.is-loading {
  opacity: .72 !important;
  pointer-events: none !important;
}

body.single-product .tmpe-product-page .tmpe-button-price,
body.single-product .tmpe-product-page .tmpe-mobile-price {
  display: inline-block !important;
  color: inherit !important;
}

body.single-product .tmpe-product-page .tmpe-helper {
  width: 355px !important;
  margin: 4px 0 0 0 !important;
  padding: 0 !important;
  color: #111 !important;
  font-family: var(--tmpe-font, inherit) !important;
  font-size: 15px !important;
  line-height: 18px !important;
  font-weight: 400 !important;
  text-align: center !important;
  letter-spacing: -0.02em !important;
}

body.single-product .tmpe-product-page .tmpe-addon-list,
body.single-product .tmpe-product-page .tmpe-addon-cards {
  display: flex !important;
  align-items: flex-start !important;
  gap: 18px !important;
  flex-wrap: nowrap !important;
}

body.single-product .tmpe-product-page .tmpe-addon-card {
  width: 112px !important;
  height: 154px !important;
  min-width: 112px !important;
  padding: 16px 9px 20px !important;
  border-radius: 26px !important;
  background: #f1f1f1 !important;
  border: 1px solid rgba(0,0,0,.04) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: space-between !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

body.single-product .tmpe-product-page .tmpe-addon-plus {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #0146b3 !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  line-height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body.single-product .tmpe-product-page .tmpe-addon-name {
  width: 100% !important;
  max-width: 100% !important;
  color: #2a2a2a !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 17px !important;
  text-align: center !important;
  letter-spacing: -0.02em !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
}

@media (max-width: 980px) {
  body.single-product .tmpe-product-page .tmpe-purchase-row {
    justify-content: flex-start !important;
    gap: 20px !important;
  }
}

@media (max-width: 760px) {
  body.single-product .tmpe-product-page .tmpe-purchase-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }
  body.single-product .tmpe-product-page .tmpe-action-stack,
  body.single-product .tmpe-product-page .tmpe-action-combo,
  body.single-product .tmpe-product-page .tmpe-helper {
    width: min(355px, 100%) !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
}

/* =========================================================
   v0.2.1 — authoritative purchase controls reset
   Fixes WoodMart/theme button inheritance and old duplicated rules.
   ========================================================= */
body.single-product #tmpe-product-page .tmpe-purchase-row,
#tmpe-product-page .tmpe-purchase-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 34px !important;
  margin-top: 48px !important;
  width: 100% !important;
  max-width: 760px !important;
  clear: both !important;
}

body.single-product #tmpe-product-page .tmpe-purchase-form,
#tmpe-product-page .tmpe-purchase-form {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 34px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.single-product #tmpe-product-page .tmpe-quantity-control,
#tmpe-product-page .tmpe-quantity-control {
  width: 232px !important;
  min-width: 232px !important;
  height: 64px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr 72px 1fr !important;
  align-items: center !important;
  justify-items: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #d7d7d7 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body.single-product #tmpe-product-page .tmpe-qty-btn,
#tmpe-product-page .tmpe-qty-btn {
  width: 100% !important;
  height: 64px !important;
  min-height: 64px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #000 !important;
  font-family: inherit !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-transform: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

body.single-product #tmpe-product-page .tmpe-qty-value,
#tmpe-product-page .tmpe-qty-value {
  width: 72px !important;
  height: 64px !important;
  min-height: 64px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #000 !important;
  font-family: inherit !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

body.single-product #tmpe-product-page .tmpe-action-stack,
#tmpe-product-page .tmpe-action-stack {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 440px !important;
  min-width: 440px !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 8px !important;
}

body.single-product #tmpe-product-page .tmpe-action-combo,
#tmpe-product-page .tmpe-action-combo {
  width: 440px !important;
  height: 64px !important;
  padding: 0 8px !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: 86px 86px 1fr !important;
  align-items: center !important;
  justify-items: stretch !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #d7d7d7 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body.single-product #tmpe-product-page .tmpe-variant-switch,
#tmpe-product-page .tmpe-variant-switch {
  display: contents !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.single-product #tmpe-product-page .tmpe-variant-pill,
#tmpe-product-page .tmpe-variant-pill {
  width: 86px !important;
  min-width: 86px !important;
  height: 64px !important;
  min-height: 64px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #111 !important;
  font-family: inherit !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  white-space: nowrap !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

body.single-product #tmpe-product-page .tmpe-variant-pill.is-selected,
#tmpe-product-page .tmpe-variant-pill.is-selected,
body.single-product #tmpe-product-page .tmpe-variant-pill[aria-pressed="true"],
#tmpe-product-page .tmpe-variant-pill[aria-pressed="true"] {
  background: #fff !important;
  color: #000 !important;
  font-weight: 800 !important;
}

body.single-product #tmpe-product-page .tmpe-add-button,
#tmpe-product-page .tmpe-add-button,
body.single-product #tmpe-product-page button.tmpe-add-button,
#tmpe-product-page button.tmpe-add-button {
  height: 52px !important;
  min-height: 52px !important;
  width: 238px !important;
  min-width: 238px !important;
  padding: 0 28px !important;
  margin: 6px 0 6px 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #0647ad !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 28px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  white-space: nowrap !important;
  box-shadow: none !important;
  cursor: pointer !important;
  outline: none !important;
}

body.single-product #tmpe-product-page .tmpe-add-button span,
#tmpe-product-page .tmpe-add-button span {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  text-transform: none !important;
  white-space: nowrap !important;
}

body.single-product #tmpe-product-page .tmpe-weight-hint,
#tmpe-product-page .tmpe-weight-hint {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  color: #111 !important;
  font-family: inherit !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  text-align: center !important;
  text-transform: none !important;
}

@media (max-width: 1024px) {
  body.single-product #tmpe-product-page .tmpe-purchase-row,
  #tmpe-product-page .tmpe-purchase-row,
  body.single-product #tmpe-product-page .tmpe-purchase-form,
  #tmpe-product-page .tmpe-purchase-form {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
    max-width: 100% !important;
  }

  body.single-product #tmpe-product-page .tmpe-quantity-control,
  #tmpe-product-page .tmpe-quantity-control,
  body.single-product #tmpe-product-page .tmpe-action-stack,
  #tmpe-product-page .tmpe-action-stack,
  body.single-product #tmpe-product-page .tmpe-action-combo,
  #tmpe-product-page .tmpe-action-combo {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.single-product #tmpe-product-page .tmpe-action-combo,
  #tmpe-product-page .tmpe-action-combo {
    grid-template-columns: 78px 78px 1fr !important;
  }

  body.single-product #tmpe-product-page .tmpe-variant-pill,
  #tmpe-product-page .tmpe-variant-pill {
    width: 78px !important;
    min-width: 78px !important;
    font-size: 16px !important;
  }

  body.single-product #tmpe-product-page .tmpe-add-button,
  #tmpe-product-page .tmpe-add-button,
  body.single-product #tmpe-product-page button.tmpe-add-button,
  #tmpe-product-page button.tmpe-add-button {
    width: auto !important;
    min-width: 0 !important;
    padding: 0 18px !important;
    margin-left: 8px !important;
    font-size: 22px !important;
  }
}

/* v0.2.1b — exact class reset for current markup */
#tmpe-product-page .tmpe-purchase-row,
#tmpe-product-page .tmpe-cart-form {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 34px !important;
  width: auto !important;
  max-width: 760px !important;
  margin: 48px 0 0 0 !important;
  padding: 0 !important;
}

#tmpe-product-page .tmpe-purchase-row .tmpe-cart-form { margin-top: 0 !important; }

#tmpe-product-page .tmpe-qty {
  width: 232px !important;
  min-width: 232px !important;
  height: 64px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr 72px 1fr !important;
  align-items: center !important;
  justify-items: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #d7d7d7 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

#tmpe-product-page .tmpe-qty button,
#tmpe-product-page .tmpe-qty input {
  -webkit-appearance: none !important;
  appearance: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  font-family: inherit !important;
  line-height: 1 !important;
  text-align: center !important;
  text-transform: none !important;
}

#tmpe-product-page .tmpe-qty button {
  width: 100% !important;
  height: 64px !important;
  min-height: 64px !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #000 !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

#tmpe-product-page .tmpe-qty input {
  width: 72px !important;
  height: 64px !important;
  min-height: 64px !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #000 !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  -moz-appearance: textfield !important;
}

#tmpe-product-page .tmpe-qty input::-webkit-outer-spin-button,
#tmpe-product-page .tmpe-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

#tmpe-product-page .tmpe-action-stack {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 440px !important;
  min-width: 440px !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 8px !important;
}

#tmpe-product-page .tmpe-action-combo {
  width: 440px !important;
  height: 64px !important;
  padding: 0 8px !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: 86px 86px 1fr !important;
  align-items: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #d7d7d7 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

#tmpe-product-page .tmpe-variant-switch {
  display: contents !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

#tmpe-product-page .tmpe-variant-pill {
  width: 86px !important;
  min-width: 86px !important;
  height: 64px !important;
  min-height: 64px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #111 !important;
  font-family: inherit !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
  line-height: 1 !important;
  text-transform: none !important;
  white-space: nowrap !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

#tmpe-product-page .tmpe-variant-pill.is-selected {
  background: #fff !important;
  color: #000 !important;
  font-weight: 800 !important;
}

#tmpe-product-page .tmpe-add-button,
#tmpe-product-page button.tmpe-add-button,
#tmpe-product-page .tmpe-add-button.button,
#tmpe-product-page .tmpe-add-button.single_add_to_cart_button {
  width: 238px !important;
  min-width: 238px !important;
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 28px !important;
  margin: 6px 0 6px 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #0647ad !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 28px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-transform: none !important;
  white-space: nowrap !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

#tmpe-product-page .tmpe-add-button::before,
#tmpe-product-page .tmpe-add-button::after,
#tmpe-product-page .tmpe-variant-pill::before,
#tmpe-product-page .tmpe-variant-pill::after,
#tmpe-product-page .tmpe-qty button::before,
#tmpe-product-page .tmpe-qty button::after {
  display: none !important;
  content: none !important;
}

#tmpe-product-page .tmpe-add-button span,
#tmpe-product-page .tmpe-add-button [data-tmpe-button-price] {
  display: inline !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  text-transform: none !important;
  white-space: nowrap !important;
}

#tmpe-product-page .tmpe-helper {
  margin: 0 !important;
  padding: 0 !important;
  color: #111 !important;
  font-family: inherit !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  text-align: center !important;
  text-transform: none !important;
}

@media (max-width: 1024px) {
  #tmpe-product-page .tmpe-purchase-row,
  #tmpe-product-page .tmpe-cart-form {
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column !important;
    gap: 14px !important;
  }
  #tmpe-product-page .tmpe-qty,
  #tmpe-product-page .tmpe-action-stack,
  #tmpe-product-page .tmpe-action-combo {
    width: 100% !important;
    min-width: 0 !important;
  }
  #tmpe-product-page .tmpe-action-combo {
    grid-template-columns: 78px 78px 1fr !important;
  }
  #tmpe-product-page .tmpe-variant-pill {
    width: 78px !important;
    min-width: 78px !important;
    font-size: 16px !important;
  }
  #tmpe-product-page .tmpe-add-button,
  #tmpe-product-page button.tmpe-add-button {
    width: auto !important;
    min-width: 0 !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    margin-left: 8px !important;
    font-size: 22px !important;
  }
}


/* =========================================================
   the Moon. Product Experience v0.2.2
   Exact Figma purchase controls
   Main rule: grey combo container keeps 11px padding around inner controls.
   ========================================================= */

#tmpe-product-page .tmpe-cart-form {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 32px !important;
  width: 100% !important;
  flex-wrap: nowrap !important;
}

#tmpe-product-page .tmpe-purchase-row,
#tmpe-product-page .tmpe-purchase-ui {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 32px !important;
  width: 100% !important;
  flex-wrap: nowrap !important;
}

#tmpe-product-page .tmpe-quantity {
  flex: 0 0 auto !important;
  width: 116px !important;
  height: 42px !important;
  padding: 0 !important;
  border-radius: 200px !important;
  background: rgba(161, 161, 161, 0.50) !important;
  border: 0 !important;
  overflow: visible !important;
  display: grid !important;
  grid-template-columns: 1fr 42px 1fr !important;
  align-items: center !important;
  justify-items: center !important;
}

#tmpe-product-page .tmpe-qty-btn {
  width: 37px !important;
  height: 42px !important;
  min-width: 37px !important;
  border: 0 !important;
  background: transparent !important;
  color: #000 !important;
  font-size: 23px !important;
  line-height: 1 !important;
  font-weight: 500 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
}

#tmpe-product-page .tmpe-qty-input,
#tmpe-product-page input.tmpe-qty-input[type='number'] {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #FEFFFF !important;
  color: #000 !important;
  text-align: center !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 42px !important;
  box-shadow: none !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}

#tmpe-product-page .tmpe-qty-input::-webkit-outer-spin-button,
#tmpe-product-page .tmpe-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

#tmpe-product-page .tmpe-action-stack {
  flex: 0 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 4px !important;
  width: auto !important;
  min-width: 0 !important;
}

#tmpe-product-page .tmpe-action-combo {
  position: relative !important;
  flex: 0 0 353px !important;
  width: 353px !important;
  height: 75px !important;
  min-width: 353px !important;
  max-width: 353px !important;
  box-sizing: border-box !important;
  padding: 11px !important;
  border: 0 !important;
  border-radius: 200px !important;
  background: rgba(161, 161, 161, 0.50) !important;
  overflow: visible !important;
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 37px !important;
  box-shadow: none !important;
}

#tmpe-product-page .tmpe-variant-switch {
  position: relative !important;
  flex: 0 0 106px !important;
  width: 106px !important;
  min-width: 106px !important;
  max-width: 106px !important;
  height: 53px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 28px !important;
  background: #A1A1A1 !important;
  overflow: visible !important;
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  box-shadow: none !important;
}

#tmpe-product-page .tmpe-variant-switch::before,
#tmpe-product-page .tmpe-variant-switch::after,
#tmpe-product-page .tmpe-variant-pill::before,
#tmpe-product-page .tmpe-variant-pill::after {
  content: none !important;
  display: none !important;
}

#tmpe-product-page .tmpe-variant-pill {
  position: relative !important;
  z-index: 1 !important;
  flex: 0 0 53px !important;
  width: 53px !important;
  min-width: 53px !important;
  max-width: 53px !important;
  height: 53px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 28px !important;
  background: transparent !important;
  color: #FEFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  text-align: center !important;
  box-shadow: none !important;
  transform: none !important;
}

#tmpe-product-page .tmpe-variant-pill.is-selected {
  z-index: 3 !important;
  flex: 0 0 57px !important;
  width: 57px !important;
  min-width: 57px !important;
  max-width: 57px !important;
  height: 57px !important;
  margin: -2px -2px !important;
  border-radius: 50% !important;
  background: #FEFFFF !important;
  color: #000000 !important;
  font-weight: 500 !important;
  box-shadow: none !important;
}

#tmpe-product-page .tmpe-add-button {
  flex: 0 0 188px !important;
  width: 188px !important;
  min-width: 188px !important;
  max-width: 188px !important;
  height: 53px !important;
  min-height: 53px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 200px !important;
  background: #334CDB !important;
  color: #FEFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: -0.01em !important;
  box-shadow: none !important;
  transition: transform 0.15s ease, filter 0.15s ease !important;
  cursor: pointer !important;
}

#tmpe-product-page .tmpe-add-button:hover {
  filter: brightness(0.98) !important;
  transform: none !important;
}

#tmpe-product-page .tmpe-add-button:active {
  transform: scale(0.995) !important;
}

#tmpe-product-page .tmpe-add-price {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: inherit !important;
  font: inherit !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

#tmpe-product-page .tmpe-weight-hint {
  width: 353px !important;
  margin: -1px 0 0 28px !important;
  padding: 0 !important;
  color: #A1A1A1 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  text-align: left !important;
}

#tmpe-product-page .tmpe-purchase-message {
  width: 353px !important;
  margin-top: 8px !important;
  font-size: 13px !important;
}

@media (max-width: 767px) {
  #tmpe-product-page .tmpe-cart-form,
  #tmpe-product-page .tmpe-purchase-row,
  #tmpe-product-page .tmpe-purchase-ui {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
  }

  #tmpe-product-page .tmpe-action-stack,
  #tmpe-product-page .tmpe-action-combo,
  #tmpe-product-page .tmpe-weight-hint,
  #tmpe-product-page .tmpe-purchase-message {
    width: 100% !important;
    max-width: 353px !important;
  }

  #tmpe-product-page .tmpe-action-combo {
    min-width: 0 !important;
    max-width: 353px !important;
    flex-basis: auto !important;
  }

  #tmpe-product-page .tmpe-add-button {
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
  }
}

/* =========================================================
   the Moon. Product Experience v0.2.3
   Final forced purchase component based on Figma geometry.
   This block intentionally comes last and overrides theme/plugin leftovers.
   ========================================================= */
body .tmpe-product-page .tmpe-purchase,
body .tmpe-product-page form.cart.tmpe-purchase{
  margin:0 !important;
  padding:0 !important;
  width:100% !important;
  display:block !important;
}

body .tmpe-product-page .tmpe-purchase .tmpe-action-row{
  display:flex !important;
  align-items:flex-start !important;
  justify-content:flex-end !important;
  gap:19px !important;
  margin-top:34px !important;
  margin-bottom:0 !important;
  width:100% !important;
  box-sizing:border-box !important;
}

body .tmpe-product-page .tmpe-purchase .tmpe-qty{
  width:118px !important;
  height:53px !important;
  flex:0 0 118px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  background:rgba(161,161,161,.50) !important;
  border:0 !important;
  border-radius:200px !important;
  padding:0 !important;
  overflow:visible !important;
  box-sizing:border-box !important;
}

body .tmpe-product-page .tmpe-purchase .tmpe-qty button,
body .tmpe-product-page .tmpe-purchase .tmpe-qty .tmpe-qty-btn{
  width:39px !important;
  height:53px !important;
  flex:0 0 39px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:0 !important;
  margin:0 !important;
  border:0 !important;
  background:transparent !important;
  color:#000 !important;
  font-size:26px !important;
  line-height:1 !important;
  font-weight:600 !important;
  box-shadow:none !important;
  cursor:pointer !important;
  appearance:none !important;
}

body .tmpe-product-page .tmpe-purchase .tmpe-qty input.tmpe-qty-input,
body .tmpe-product-page .tmpe-purchase .tmpe-qty .qty{
  width:57px !important;
  height:57px !important;
  flex:0 0 57px !important;
  margin:-2px 0 !important;
  padding:0 !important;
  border:0 !important;
  border-radius:200px !important;
  background:#fff !important;
  color:#000 !important;
  text-align:center !important;
  font-size:18px !important;
  line-height:57px !important;
  font-weight:700 !important;
  box-shadow:none !important;
  appearance:textfield !important;
  -moz-appearance:textfield !important;
}

body .tmpe-product-page .tmpe-purchase .tmpe-qty input::-webkit-outer-spin-button,
body .tmpe-product-page .tmpe-purchase .tmpe-qty input::-webkit-inner-spin-button{
  -webkit-appearance:none !important;
  margin:0 !important;
}

body .tmpe-product-page .tmpe-purchase .tmpe-action-stack{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  flex:0 0 353px !important;
  width:353px !important;
  min-width:353px !important;
  max-width:353px !important;
  box-sizing:border-box !important;
}

body .tmpe-product-page .tmpe-purchase .tmpe-action-combo{
  width:353px !important;
  height:75px !important;
  flex:0 0 75px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:37px !important;
  padding:11px !important;
  margin:0 !important;
  border:0 !important;
  border-radius:200px !important;
  background:rgba(161,161,161,.50) !important;
  box-shadow:none !important;
  box-sizing:border-box !important;
  overflow:visible !important;
}

body .tmpe-product-page .tmpe-purchase .tmpe-variant-switch{
  position:relative !important;
  width:106px !important;
  height:53px !important;
  flex:0 0 106px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:0 !important;
  padding:0 !important;
  margin:0 !important;
  border:0 !important;
  border-radius:28px !important;
  background:#A1A1A1 !important;
  overflow:visible !important;
  box-sizing:border-box !important;
}

body .tmpe-product-page .tmpe-purchase .tmpe-variant-pill{
  position:relative !important;
  z-index:1 !important;
  width:53px !important;
  height:53px !important;
  flex:0 0 53px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:0 !important;
  margin:0 !important;
  border:0 !important;
  border-radius:200px !important;
  background:transparent !important;
  color:#fff !important;
  font-size:14px !important;
  line-height:1 !important;
  font-weight:400 !important;
  white-space:nowrap !important;
  box-shadow:none !important;
  cursor:pointer !important;
  appearance:none !important;
  -webkit-appearance:none !important;
  box-sizing:border-box !important;
}

body .tmpe-product-page .tmpe-purchase .tmpe-variant-pill::before{
  content:"" !important;
  position:absolute !important;
  inset:-2px !important;
  z-index:-1 !important;
  border-radius:200px !important;
  background:#fff !important;
  opacity:0 !important;
  box-shadow:none !important;
  pointer-events:none !important;
}

body .tmpe-product-page .tmpe-purchase .tmpe-variant-pill.is-active{
  color:#000 !important;
  font-weight:700 !important;
  z-index:2 !important;
}

body .tmpe-product-page .tmpe-purchase .tmpe-variant-pill.is-active::before{
  opacity:1 !important;
}

body .tmpe-product-page .tmpe-purchase .tmpe-add-button,
body .tmpe-product-page .tmpe-purchase button.single_add_to_cart_button.tmpe-add-button{
  width:188px !important;
  height:53px !important;
  flex:0 0 188px !important;
  min-width:188px !important;
  max-width:188px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:6px !important;
  padding:0 !important;
  margin:0 !important;
  border:0 !important;
  border-radius:200px !important;
  background:#334CDB !important;
  color:#fff !important;
  box-shadow:none !important;
  text-decoration:none !important;
  cursor:pointer !important;
  appearance:none !important;
  -webkit-appearance:none !important;
  box-sizing:border-box !important;
}

body .tmpe-product-page .tmpe-purchase .tmpe-add-button span,
body .tmpe-product-page .tmpe-purchase .tmpe-add-prefix,
body .tmpe-product-page .tmpe-purchase .tmpe-add-price{
  color:#fff !important;
  font-size:24px !important;
  line-height:1 !important;
  font-weight:400 !important;
  text-transform:none !important;
  letter-spacing:0 !important;
}

body .tmpe-product-page .tmpe-purchase .tmpe-helper{
  width:100% !important;
  margin:3px 0 0 0 !important;
  padding:0 !important;
  color:#000 !important;
  text-align:center !important;
  font-size:14px !important;
  line-height:1.2 !important;
  font-weight:400 !important;
}

@media (max-width: 1024px){
  body .tmpe-product-page .tmpe-purchase .tmpe-action-row{
    justify-content:flex-start !important;
    flex-wrap:wrap !important;
  }
}

@media (max-width: 640px){
  body .tmpe-product-page .tmpe-purchase .tmpe-action-row{
    gap:12px !important;
  }
  body .tmpe-product-page .tmpe-purchase .tmpe-action-stack{
    flex:0 0 100% !important;
    width:100% !important;
    min-width:0 !important;
    max-width:100% !important;
  }
  body .tmpe-product-page .tmpe-purchase .tmpe-action-combo{
    width:100% !important;
    max-width:353px !important;
  }
}

/* v0.2.4 — exact Figma purchase control geometry
   Reference:
   outer grey frame: auto width, 75px high, 11px padding around inner elements;
   variant field: 106x53, active circle: 57x57;
   gap variant -> add button: 37px; add button min: 188x53.
*/
.tmpe-product-page .tmpe-purchase,
.tmpe-product-page form.tmpe-purchase {
  margin-top: 40px !important;
}

.tmpe-product-page .tmpe-purchase-row {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  gap: 32px !important;
  width: 100% !important;
}

.tmpe-product-page .tmpe-action-stack {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: max-content !important;
  max-width: 100% !important;
}

.tmpe-product-page .tmpe-action-combo {
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: auto !important;
  min-width: 353px !important;
  height: 75px !important;
  min-height: 75px !important;
  max-height: 75px !important;
  padding: 11px !important;
  gap: 37px !important;
  border-radius: 200px !important;
  background: rgba(161, 161, 161, 0.5) !important;
  overflow: visible !important;
}

.tmpe-product-page .tmpe-variant-switch {
  position: relative !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex: 0 0 106px !important;
  width: 106px !important;
  min-width: 106px !important;
  max-width: 106px !important;
  height: 53px !important;
  min-height: 53px !important;
  max-height: 53px !important;
  padding: 0 !important;
  gap: 0 !important;
  border: 0 !important;
  border-radius: 28px !important;
  background: #A1A1A1 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.tmpe-product-page .tmpe-variant-pill,
.tmpe-product-page .tmpe-variant-switch .tmpe-variant-pill,
.tmpe-product-page .tmpe-variant-switch button.tmpe-variant-pill {
  position: relative !important;
  z-index: 1 !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 53px !important;
  width: 53px !important;
  min-width: 53px !important;
  max-width: 53px !important;
  height: 53px !important;
  min-height: 53px !important;
  max-height: 53px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 200px !important;
  background: transparent !important;
  color: #fff !important;
  font-family: var(--tmpe-font, inherit) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
  outline: none !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.tmpe-product-page .tmpe-variant-switch .tmpe-variant-pill.is-selected,
.tmpe-product-page .tmpe-variant-switch button.tmpe-variant-pill.is-selected {
  z-index: 2 !important;
  flex-basis: 57px !important;
  width: 57px !important;
  min-width: 57px !important;
  max-width: 57px !important;
  height: 57px !important;
  min-height: 57px !important;
  max-height: 57px !important;
  margin-top: -2px !important;
  margin-bottom: -2px !important;
  background: #fff !important;
  color: #000 !important;
  border-radius: 200px !important;
}

.tmpe-product-page .tmpe-add-button,
.tmpe-product-page .tmpe-action-combo .tmpe-add-button,
.tmpe-product-page .tmpe-action-combo button.tmpe-add-button {
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 188px !important;
  height: 53px !important;
  min-height: 53px !important;
  max-height: 53px !important;
  margin: 0 !important;
  padding: 0 32px !important;
  border: 0 !important;
  border-radius: 200px !important;
  background: #344BDD !important;
  color: #fff !important;
  font-family: var(--tmpe-font, inherit) !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
  outline: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.tmpe-product-page .tmpe-add-button span,
.tmpe-product-page .tmpe-add-button [data-tmpe-button-label],
.tmpe-product-page .tmpe-add-button [data-tmpe-button-price],
.tmpe-product-page .tmpe-add-button .woocommerce-Price-amount,
.tmpe-product-page .tmpe-add-button .woocommerce-Price-currencySymbol {
  color: #fff !important;
  font: inherit !important;
  line-height: 1 !important;
  letter-spacing: inherit !important;
  text-transform: none !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.tmpe-product-page .tmpe-helper {
  display: block !important;
  width: 353px !important;
  margin: 7px 0 0 28px !important;
  padding: 0 !important;
  text-align: left !important;
  color: #A1A1A1 !important;
  font-family: var(--tmpe-font, inherit) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
}

.tmpe-product-page .tmpe-qty {
  box-sizing: border-box !important;
  flex: 0 0 auto !important;
  width: 128px !important;
  min-width: 128px !important;
  max-width: 128px !important;
  height: 53px !important;
  min-height: 53px !important;
  max-height: 53px !important;
  padding: 0 !important;
  border-radius: 200px !important;
  background: rgba(161, 161, 161, 0.5) !important;
  overflow: visible !important;
}

.tmpe-product-page .tmpe-qty button,
.tmpe-product-page .tmpe-qty input {
  text-transform: none !important;
}

@media (max-width: 767px) {
  .tmpe-product-page .tmpe-purchase-row {
    justify-content: flex-start !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
  }

  .tmpe-product-page .tmpe-action-combo {
    min-width: 353px !important;
    transform-origin: left top !important;
  }

  .tmpe-product-page .tmpe-helper {
    width: 353px !important;
  }
}


/* =========================================================
   v0.2.5 — FIGMA PURCHASE CONTROL HARD FIX
   Target from Figma:
   - outer grey pill: dynamic wrapper with 11px padding around inner controls
   - target desktop control: 353 x 75 when buy button is 188 x 53
   - option field: 106 x 53, radius 28
   - selected option indicator: 57 x 57, radius 200, does NOT change layout width
   - gap option field → buy button: 37px
   - buy button: 188 x 53, radius 200
   ========================================================= */
body .tmpe-product-page .tmpe-purchase,
body.single-product .tmpe-product-page .tmpe-purchase {
    --tmpe-purchase-pad: 11px;
    --tmpe-option-width: 106px;
    --tmpe-option-height: 53px;
    --tmpe-option-selected: 57px;
    --tmpe-option-gap: 37px;
    --tmpe-buy-width: 188px;
    --tmpe-buy-height: 53px;
    --tmpe-purchase-width: calc(var(--tmpe-purchase-pad) * 2 + var(--tmpe-option-width) + var(--tmpe-option-gap) + var(--tmpe-buy-width));
    --tmpe-purchase-height: calc(var(--tmpe-purchase-pad) * 2 + var(--tmpe-buy-height));
}

body .tmpe-product-page .tmpe-purchase-row,
body.single-product .tmpe-product-page .tmpe-purchase-row {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 28px !important;
    width: auto !important;
}

body .tmpe-product-page .tmpe-action-stack,
body.single-product .tmpe-product-page .tmpe-action-stack {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: var(--tmpe-purchase-width) !important;
    max-width: var(--tmpe-purchase-width) !important;
    flex: 0 0 var(--tmpe-purchase-width) !important;
}

body .tmpe-product-page .tmpe-action-combo,
body.single-product .tmpe-product-page .tmpe-action-combo {
    display: grid !important;
    grid-template-columns: var(--tmpe-option-width) var(--tmpe-buy-width) !important;
    column-gap: var(--tmpe-option-gap) !important;
    align-items: center !important;
    justify-content: start !important;
    box-sizing: border-box !important;
    width: var(--tmpe-purchase-width) !important;
    min-width: var(--tmpe-purchase-width) !important;
    max-width: var(--tmpe-purchase-width) !important;
    height: var(--tmpe-purchase-height) !important;
    min-height: var(--tmpe-purchase-height) !important;
    padding: var(--tmpe-purchase-pad) !important;
    border-radius: 200px !important;
    background: rgba(161, 161, 161, 0.50) !important;
    border: 0 !important;
    overflow: visible !important;
}

body .tmpe-product-page .tmpe-variant-switch,
body.single-product .tmpe-product-page .tmpe-variant-switch {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 53px 53px !important;
    align-items: center !important;
    justify-items: center !important;
    box-sizing: border-box !important;
    width: var(--tmpe-option-width) !important;
    min-width: var(--tmpe-option-width) !important;
    max-width: var(--tmpe-option-width) !important;
    height: var(--tmpe-option-height) !important;
    min-height: var(--tmpe-option-height) !important;
    max-height: var(--tmpe-option-height) !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 28px !important;
    background: #A1A1A1 !important;
    overflow: visible !important;
    flex: 0 0 var(--tmpe-option-width) !important;
}

body .tmpe-product-page .tmpe-variant-option,
body.single-product .tmpe-product-page .tmpe-variant-option,
body .tmpe-product-page .tmpe-variant-option[type="button"],
body.single-product .tmpe-product-page .tmpe-variant-option[type="button"] {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    width: 53px !important;
    min-width: 53px !important;
    max-width: 53px !important;
    height: 53px !important;
    min-height: 53px !important;
    max-height: 53px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #FFFFFF !important;
    font-family: var(--tmpe-font-body, inherit) !important;
    font-size: 19px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
    text-transform: none !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

body .tmpe-product-page .tmpe-variant-option.is-active,
body.single-product .tmpe-product-page .tmpe-variant-option.is-active,
body .tmpe-product-page .tmpe-variant-option[aria-pressed="true"],
body.single-product .tmpe-product-page .tmpe-variant-option[aria-pressed="true"] {
    color: #000000 !important;
    font-weight: 700 !important;
}

body .tmpe-product-page .tmpe-variant-option.is-active::before,
body.single-product .tmpe-product-page .tmpe-variant-option.is-active::before,
body .tmpe-product-page .tmpe-variant-option[aria-pressed="true"]::before,
body.single-product .tmpe-product-page .tmpe-variant-option[aria-pressed="true"]::before {
    content: "" !important;
    position: absolute !important;
    z-index: -1 !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: var(--tmpe-option-selected) !important;
    height: var(--tmpe-option-selected) !important;
    border-radius: 200px !important;
    background: #FFFFFF !important;
    box-shadow: none !important;
    pointer-events: none !important;
}

body .tmpe-product-page .tmpe-add-button,
body.single-product .tmpe-product-page .tmpe-add-button,
body .tmpe-product-page .tmpe-add-button[type="submit"],
body.single-product .tmpe-product-page .tmpe-add-button[type="submit"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    width: var(--tmpe-buy-width) !important;
    min-width: var(--tmpe-buy-width) !important;
    max-width: var(--tmpe-buy-width) !important;
    height: var(--tmpe-buy-height) !important;
    min-height: var(--tmpe-buy-height) !important;
    max-height: var(--tmpe-buy-height) !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 200px !important;
    background: #3147E1 !important;
    color: #FFFFFF !important;
    font-family: var(--tmpe-font-body, inherit) !important;
    font-size: 28px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
    text-align: center !important;
    box-shadow: none !important;
    text-transform: none !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    flex: 0 0 var(--tmpe-buy-width) !important;
}

body .tmpe-product-page .tmpe-add-button:hover,
body.single-product .tmpe-product-page .tmpe-add-button:hover,
body .tmpe-product-page .tmpe-add-button:focus,
body.single-product .tmpe-product-page .tmpe-add-button:focus {
    background: #3147E1 !important;
    color: #FFFFFF !important;
    box-shadow: none !important;
    outline: none !important;
}

body .tmpe-product-page .tmpe-variant-hint,
body.single-product .tmpe-product-page .tmpe-variant-hint {
    display: block !important;
    width: var(--tmpe-purchase-width) !important;
    margin: 5px 0 0 11px !important;
    padding: 0 !important;
    color: rgba(0, 0, 0, 0.38) !important;
    font-family: var(--tmpe-font-body, inherit) !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    text-align: left !important;
}

body .tmpe-product-page .tmpe-qty,
body.single-product .tmpe-product-page .tmpe-qty {
    flex: 0 0 auto !important;
}

@media (max-width: 767px) {
    body .tmpe-product-page .tmpe-purchase-row,
    body.single-product .tmpe-product-page .tmpe-purchase-row {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: flex-start !important;
    }

    body .tmpe-product-page .tmpe-action-stack,
    body.single-product .tmpe-product-page .tmpe-action-stack,
    body .tmpe-product-page .tmpe-action-combo,
    body.single-product .tmpe-product-page .tmpe-action-combo,
    body .tmpe-product-page .tmpe-variant-hint,
    body.single-product .tmpe-product-page .tmpe-variant-hint {
        width: var(--tmpe-purchase-width) !important;
        max-width: calc(100vw - 32px) !important;
    }
}

/* v0.2.6 — hero media fix: image/video must keep Figma-like cover behavior and not be replaced by variation media unless explicitly allowed. */
.tmpe-product-page .tmpe-main-media,
.tmpe-product-page .tmpe-main-video {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: inherit !important;
}

/* ==========================================================
   v0.2.8 — desktop product page correction from v0.2.6 base
   Goal: keep working hero media/video logic from 0.2.6, but remove
   the double/parent container offset and force the media frame mask.
   ========================================================== */
@media (min-width: 1181px) {
  html body.single-product .tmpe-product-page,
  html body .tmpe-product-page {
    --tmpe-desktop-left: 75px;
    --tmpe-desktop-media-w: 796px;
    --tmpe-desktop-media-h: 880px;
    --tmpe-desktop-gap: 88px;
    --tmpe-desktop-copy-w: 620px;

    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow-x: clip !important;
  }

  html body.single-product .tmpe-product-page .tmpe-hero,
  html body .tmpe-product-page .tmpe-hero {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 48px var(--tmpe-desktop-left) 0 var(--tmpe-desktop-left) !important;
    display: grid !important;
    grid-template-columns: var(--tmpe-desktop-media-w) minmax(0, var(--tmpe-desktop-copy-w)) !important;
    column-gap: var(--tmpe-desktop-gap) !important;
    justify-content: start !important;
    align-items: start !important;
    box-sizing: border-box !important;
  }

  html body.single-product .tmpe-product-page .tmpe-media-card,
  html body .tmpe-product-page .tmpe-media-card {
    width: var(--tmpe-desktop-media-w) !important;
    max-width: var(--tmpe-desktop-media-w) !important;
    height: var(--tmpe-desktop-media-h) !important;
    min-height: var(--tmpe-desktop-media-h) !important;
    margin: 0 !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    isolation: isolate !important;
    transform: translateZ(0) !important;
    -webkit-mask-image: -webkit-radial-gradient(white, black) !important;
  }

  html body.single-product .tmpe-product-page .tmpe-main-media,
  html body.single-product .tmpe-product-page .tmpe-main-video,
  html body.single-product .tmpe-product-page .tmpe-media-card img,
  html body.single-product .tmpe-product-page .tmpe-media-card video,
  html body .tmpe-product-page .tmpe-main-media,
  html body .tmpe-product-page .tmpe-main-video,
  html body .tmpe-product-page .tmpe-media-card img,
  html body .tmpe-product-page .tmpe-media-card video {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: inherit !important;
    overflow: hidden !important;
    clip-path: inset(0 round 28px) !important;
  }

  html body.single-product .tmpe-product-page .tmpe-content,
  html body .tmpe-product-page .tmpe-content {
    width: var(--tmpe-desktop-copy-w) !important;
    max-width: var(--tmpe-desktop-copy-w) !important;
    margin: 0 !important;
    padding-top: 64px !important;
    box-sizing: border-box !important;
  }

  html body.single-product .tmpe-product-page .tmpe-title-row,
  html body .tmpe-product-page .tmpe-title-row {
    width: 100% !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    gap: 56px !important;
    margin: 0 0 28px 0 !important;
  }

  html body.single-product .tmpe-product-page .tmpe-title,
  html body .tmpe-product-page .tmpe-title {
    margin: 0 !important;
    font-size: 64px !important;
    line-height: 0.95 !important;
    letter-spacing: -0.04em !important;
  }

  html body.single-product .tmpe-product-page .tmpe-tagline,
  html body .tmpe-product-page .tmpe-tagline {
    margin: 0 0 6px 0 !important;
    font-size: 30px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    font-style: italic !important;
    letter-spacing: -0.04em !important;
    white-space: nowrap !important;
  }

  html body.single-product .tmpe-product-page .tmpe-lead,
  html body .tmpe-product-page .tmpe-lead {
    max-width: 620px !important;
    margin: 0 0 190px 0 !important;
    font-size: 21px !important;
    line-height: 1.18 !important;
    letter-spacing: -0.02em !important;
  }

  html body.single-product .tmpe-product-page .tmpe-info-blocks,
  html body .tmpe-product-page .tmpe-info-blocks {
    max-width: 620px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    margin: 0 !important;
  }

  html body.single-product .tmpe-product-page .tmpe-info-title,
  html body .tmpe-product-page .tmpe-info-title {
    margin: 0 0 10px 0 !important;
    font-size: 20px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em !important;
  }

  html body.single-product .tmpe-product-page .tmpe-info-text,
  html body .tmpe-product-page .tmpe-info-text {
    margin: 0 !important;
    font-size: 21px !important;
    line-height: 1.18 !important;
    letter-spacing: -0.02em !important;
  }
}

@media (min-width: 1181px) and (max-width: 1680px) {
  html body.single-product .tmpe-product-page,
  html body .tmpe-product-page {
    --tmpe-desktop-left: 48px;
    --tmpe-desktop-media-w: min(52vw, 796px);
    --tmpe-desktop-media-h: auto;
    --tmpe-desktop-gap: 56px;
    --tmpe-desktop-copy-w: min(38vw, 620px);
  }

  html body.single-product .tmpe-product-page .tmpe-media-card,
  html body .tmpe-product-page .tmpe-media-card {
    aspect-ratio: 796 / 880 !important;
    height: auto !important;
    min-height: 0 !important;
  }
}


/* ==========================================================
   v0.2.9 — media size + 50px gap correction
   Base: v0.2.8. Keeps the working hero image/video source logic.
   Changes only desktop hero geometry: smaller media block and exact 50px
   distance between media block and text column.
   ========================================================== */
@media (min-width: 1181px) {
  html body.single-product .tmpe-product-page,
  html body .tmpe-product-page {
    --tmpe-desktop-left: 75px;
    --tmpe-desktop-media-w: 760px;
    --tmpe-desktop-media-h: 840px;
    --tmpe-desktop-gap: 50px;
    --tmpe-desktop-copy-w: 620px;
  }

  html body.single-product .tmpe-product-page .tmpe-hero,
  html body .tmpe-product-page .tmpe-hero {
    grid-template-columns: var(--tmpe-desktop-media-w) minmax(0, var(--tmpe-desktop-copy-w)) !important;
    column-gap: var(--tmpe-desktop-gap) !important;
  }

  html body.single-product .tmpe-product-page .tmpe-media-card,
  html body .tmpe-product-page .tmpe-media-card {
    width: var(--tmpe-desktop-media-w) !important;
    max-width: var(--tmpe-desktop-media-w) !important;
    height: var(--tmpe-desktop-media-h) !important;
    min-height: var(--tmpe-desktop-media-h) !important;
    aspect-ratio: 760 / 840 !important;
  }

  html body.single-product .tmpe-product-page .tmpe-content,
  html body .tmpe-product-page .tmpe-content {
    width: var(--tmpe-desktop-copy-w) !important;
    max-width: var(--tmpe-desktop-copy-w) !important;
  }
}

@media (min-width: 1181px) and (max-width: 1680px) {
  html body.single-product .tmpe-product-page,
  html body .tmpe-product-page {
    --tmpe-desktop-left: 48px;
    --tmpe-desktop-media-w: min(49vw, 760px);
    --tmpe-desktop-media-h: auto;
    --tmpe-desktop-gap: 50px;
    --tmpe-desktop-copy-w: min(38vw, 620px);
  }

  html body.single-product .tmpe-product-page .tmpe-media-card,
  html body .tmpe-product-page .tmpe-media-card {
    aspect-ratio: 760 / 840 !important;
    height: auto !important;
    min-height: 0 !important;
  }
}


/* v0.2.10 — Figma purchase controls lock
   Source: Figma purchase block: outer bg #D9D9D9, option bg #A1A1A1,
   active option 57×57 white circle, button text 20, option text 16, note 14. */
body.single-product .tmpe-product-page .tmpe-qty,
body.single-product .tmpe-product-page .tmpe-action-combo {
    background: #D9D9D9 !important;
}

body.single-product .tmpe-product-page .tmpe-action-combo {
    width: 353px !important;
    height: 75px !important;
    padding: 11px !important;
    gap: 37px !important;
    border-radius: 200px !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
}

body.single-product .tmpe-product-page .tmpe-variants {
    width: 106px !important;
    height: 53px !important;
    min-width: 106px !important;
    padding: 0 !important;
    border-radius: 28px !important;
    background: #A1A1A1 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
}

body.single-product .tmpe-product-page .tmpe-variant {
    flex: 0 0 53px !important;
    width: 53px !important;
    height: 53px !important;
    min-width: 53px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 200px !important;
    background: transparent !important;
    color: #FFFFFF !important;
    font-family: 'Neue Frutiger World', 'Neue Frutiger', Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 15px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
}

body.single-product .tmpe-product-page .tmpe-variant.is-active,
body.single-product .tmpe-product-page .tmpe-variant[aria-pressed="true"] {
    width: 57px !important;
    height: 57px !important;
    flex-basis: 57px !important;
    min-width: 57px !important;
    margin: -2px 0 -2px 0 !important;
    background: #FFFFFF !important;
    color: #000000 !important;
    border-radius: 200px !important;
    font-family: 'Neue Frutiger World', 'Neue Frutiger', Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 15px !important;
    font-weight: 400 !important;
    box-shadow: none !important;
    transform: none !important;
    z-index: 2 !important;
}

body.single-product .tmpe-product-page .tmpe-add-button {
    height: 53px !important;
    min-height: 53px !important;
    border-radius: 200px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0 28px !important;
    box-sizing: border-box !important;
}

body.single-product .tmpe-product-page .tmpe-button-price,
body.single-product .tmpe-product-page .tmpe-add-button .tmpe-button-price {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    color: #FFFFFF !important;
    font-family: 'Neue Frutiger World', 'Neue Frutiger', Arial, sans-serif !important;
    font-size: 20px !important;
    line-height: 15px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

body.single-product .tmpe-product-page .tmpe-variant-hint {
    margin: 8px 0 0 11px !important;
    color: #A5A5A5 !important;
    font-family: 'Neue Frutiger World', 'Neue Frutiger', Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
}

body.single-product .tmpe-product-page .tmpe-qty {
    height: 53px !important;
    min-height: 53px !important;
    border-radius: 200px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

body.single-product .tmpe-product-page .tmpe-qty input {
    width: 57px !important;
    height: 57px !important;
    min-width: 57px !important;
    margin: -2px 0 !important;
    border-radius: 200px !important;
    background: #FFFFFF !important;
    color: #000000 !important;
    font-family: 'Neue Frutiger World', 'Neue Frutiger', Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 15px !important;
    font-weight: 400 !important;
    box-shadow: none !important;
}

body.single-product .tmpe-product-page .tmpe-qty button {
    color: #000000 !important;
    font-family: 'Neue Frutiger World', 'Neue Frutiger', Arial, sans-serif !important;
    font-size: 22px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
}

@media (max-width: 767px) {
    body.single-product .tmpe-product-page .tmpe-action-combo {
        width: 353px !important;
        max-width: 100% !important;
    }
}


/* ============================================================
   v0.2.11 — purchase controls: Figma Group 32 exact desktop lock
   Fixes selectors for current PHP markup:
   .tmpe-variant-switch / .tmpe-variant-pill / .tmpe-helper
   ============================================================ */
body.single-product .tmpe.tmpe-product-experience .tmpe-purchase-row,
.tmpe.tmpe-product-experience .tmpe-purchase-row{
    display:flex !important;
    align-items:flex-start !important;
    justify-content:flex-start !important;
    gap:22px !important;
    flex-wrap:nowrap !important;
    margin:0 !important;
}

body.single-product .tmpe.tmpe-product-experience .tmpe-qty-control,
.tmpe.tmpe-product-experience .tmpe-qty-control{
    width:160px !important;
    height:54px !important;
    min-width:160px !important;
    flex:0 0 160px !important;
    padding:0 !important;
    margin:0 !important;
    display:grid !important;
    grid-template-columns:55px 50px 55px !important;
    align-items:center !important;
    justify-content:center !important;
    border:0 !important;
    border-radius:200px !important;
    background:#D9D9D9 !important;
    overflow:visible !important;
    box-shadow:none !important;
}

body.single-product .tmpe.tmpe-product-experience .tmpe-qty-minus,
body.single-product .tmpe.tmpe-product-experience .tmpe-qty-plus,
.tmpe.tmpe-product-experience .tmpe-qty-minus,
.tmpe.tmpe-product-experience .tmpe-qty-plus{
    width:55px !important;
    height:54px !important;
    min-width:55px !important;
    padding:0 !important;
    margin:0 !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    color:#000000 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    font-family:'Neue Frutiger World','Arial',sans-serif !important;
    font-size:34px !important;
    font-weight:400 !important;
    line-height:1 !important;
    box-shadow:none !important;
}

body.single-product .tmpe.tmpe-product-experience .tmpe-qty-value,
.tmpe.tmpe-product-experience .tmpe-qty-value{
    width:50px !important;
    height:50px !important;
    min-width:50px !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    border-radius:200px !important;
    background:#FFFFFF !important;
    color:#000000 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    font-family:'Neue Frutiger World','Arial',sans-serif !important;
    font-size:20px !important;
    font-weight:400 !important;
    line-height:1 !important;
    box-shadow:none !important;
}

body.single-product .tmpe.tmpe-product-experience .tmpe-action-stack,
.tmpe.tmpe-product-experience .tmpe-action-stack{
    width:353px !important;
    min-width:353px !important;
    flex:0 0 353px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    justify-content:flex-start !important;
    margin:0 !important;
    padding:0 !important;
}

body.single-product .tmpe.tmpe-product-experience .tmpe-action-combo,
.tmpe.tmpe-product-experience .tmpe-action-combo{
    width:353px !important;
    height:75px !important;
    min-width:353px !important;
    max-width:353px !important;
    flex:0 0 75px !important;
    box-sizing:border-box !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:37px !important;
    padding:11px !important;
    margin:0 !important;
    border:0 !important;
    border-radius:200px !important;
    background:#D9D9D9 !important;
    overflow:visible !important;
    box-shadow:none !important;
}

body.single-product .tmpe.tmpe-product-experience .tmpe-variant-switch,
.tmpe.tmpe-product-experience .tmpe-variant-switch{
    width:106px !important;
    height:53px !important;
    min-width:106px !important;
    max-width:106px !important;
    flex:0 0 106px !important;
    box-sizing:border-box !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:0 !important;
    padding:0 !important;
    margin:0 !important;
    border:0 !important;
    border-radius:28px !important;
    background:#A1A1A1 !important;
    overflow:visible !important;
    box-shadow:none !important;
}

body.single-product .tmpe.tmpe-product-experience .tmpe-variant-pill,
.tmpe.tmpe-product-experience .tmpe-variant-pill{
    position:relative !important;
    width:53px !important;
    height:53px !important;
    min-width:53px !important;
    flex:0 0 53px !important;
    padding:0 !important;
    margin:0 !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    color:#FFFFFF !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    font-family:'Neue Frutiger World','Arial',sans-serif !important;
    font-size:16px !important;
    font-weight:400 !important;
    line-height:15px !important;
    letter-spacing:0 !important;
    white-space:nowrap !important;
    z-index:1 !important;
    box-shadow:none !important;
}

body.single-product .tmpe.tmpe-product-experience .tmpe-variant-pill.is-selected,
.tmpe.tmpe-product-experience .tmpe-variant-pill.is-selected{
    color:#000000 !important;
    background:transparent !important;
    border-radius:0 !important;
    z-index:2 !important;
}

body.single-product .tmpe.tmpe-product-experience .tmpe-variant-pill.is-selected::before,
.tmpe.tmpe-product-experience .tmpe-variant-pill.is-selected::before{
    content:"" !important;
    position:absolute !important;
    left:50% !important;
    top:50% !important;
    width:57px !important;
    height:57px !important;
    transform:translate(-50%,-50%) !important;
    border-radius:200px !important;
    background:#FFFFFF !important;
    z-index:-1 !important;
    pointer-events:none !important;
    box-shadow:none !important;
}

body.single-product .tmpe.tmpe-product-experience .tmpe-add-button,
.tmpe.tmpe-product-experience .tmpe-add-button{
    height:53px !important;
    min-height:53px !important;
    width:auto !important;
    flex:1 1 auto !important;
    min-width:0 !important;
    padding:0 28px !important;
    margin:0 !important;
    border:0 !important;
    border-radius:200px !important;
    background:#3347E8 !important;
    color:#FFFFFF !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    box-shadow:none !important;
    overflow:hidden !important;
}

body.single-product .tmpe.tmpe-product-experience .tmpe-add-button span,
body.single-product .tmpe.tmpe-product-experience .tmpe-add-button [data-tmpe-button-price],
.tmpe.tmpe-product-experience .tmpe-add-button span,
.tmpe.tmpe-product-experience .tmpe-add-button [data-tmpe-button-price]{
    display:block !important;
    width:100% !important;
    margin:0 !important;
    padding:0 !important;
    color:#FFFFFF !important;
    font-family:'Neue Frutiger World','Arial',sans-serif !important;
    font-size:20px !important;
    font-weight:400 !important;
    line-height:15px !important;
    letter-spacing:0 !important;
    text-align:center !important;
    white-space:nowrap !important;
}

body.single-product .tmpe.tmpe-product-experience .tmpe-helper,
.tmpe.tmpe-product-experience .tmpe-helper{
    display:block !important;
    margin:7px 0 0 18px !important;
    padding:0 !important;
    width:auto !important;
    color:#A5A5A5 !important;
    font-family:'Neue Frutiger World','Arial',sans-serif !important;
    font-size:14px !important;
    font-weight:400 !important;
    line-height:20px !important;
    letter-spacing:0 !important;
    text-align:left !important;
}

@media (max-width: 767px){
    body.single-product .tmpe.tmpe-product-experience .tmpe-purchase-row,
    .tmpe.tmpe-product-experience .tmpe-purchase-row{
        gap:14px !important;
        flex-wrap:wrap !important;
    }
    body.single-product .tmpe.tmpe-product-experience .tmpe-action-stack,
    .tmpe.tmpe-product-experience .tmpe-action-stack{
        width:353px !important;
        max-width:100% !important;
        min-width:0 !important;
        flex:0 1 353px !important;
    }
    body.single-product .tmpe.tmpe-product-experience .tmpe-action-combo,
    .tmpe.tmpe-product-experience .tmpe-action-combo{
        width:353px !important;
        max-width:100% !important;
        min-width:0 !important;
    }
}

/* =========================================================
   the Moon. Product Experience v0.2.12
   HARD LOCK: purchase controls according to Figma desktop spec
   This block intentionally sits at the very end and uses high specificity
   to neutralize legacy/plugin/theme rules above it.
   ========================================================= */
body.single-product .tmpe-product-experience .tmpe-purchase-area,
body.single-product .tmpe-product-experience .tmpe-purchase-area * {
  box-sizing: border-box !important;
}

body.single-product .tmpe-product-experience .tmpe-purchase-area {
  --tmpe-grey-outer: #D9D9D9;
  --tmpe-grey-option: #A1A1A1;
  --tmpe-grey-note: #A5A5A5;
  --tmpe-blue: #3449E6;
  margin-top: 34px !important;
  width: auto !important;
  max-width: none !important;
  font-family: "Neue Frutiger World", "Inter", Arial, sans-serif !important;
}

body.single-product .tmpe-product-experience .tmpe-purchase-row {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 24px !important;
  width: auto !important;
  max-width: none !important;
}

/* Quantity control - left pill */
body.single-product .tmpe-product-experience .tmpe-qty {
  flex: 0 0 117px !important;
  width: 117px !important;
  min-width: 117px !important;
  max-width: 117px !important;
  height: 47px !important;
  min-height: 47px !important;
  max-height: 47px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 200px !important;
  background: var(--tmpe-grey-outer) !important;
  box-shadow: none !important;
  overflow: visible !important;
  display: grid !important;
  grid-template-columns: 30px 57px 30px !important;
  align-items: center !important;
  justify-content: center !important;
}

body.single-product .tmpe-product-experience .tmpe-qty-btn {
  position: relative !important;
  z-index: 2 !important;
  width: 30px !important;
  height: 47px !important;
  min-width: 30px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #000 !important;
  font-family: "Neue Frutiger World", "Inter", Arial, sans-serif !important;
  font-size: 22px !important;
  line-height: 47px !important;
  font-weight: 400 !important;
  text-align: center !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-shadow: none !important;
}

body.single-product .tmpe-product-experience .tmpe-qty-value {
  position: relative !important;
  z-index: 1 !important;
  width: 57px !important;
  height: 57px !important;
  min-width: 57px !important;
  max-width: 57px !important;
  min-height: 57px !important;
  max-height: 57px !important;
  margin: -5px 0 !important;
  border-radius: 200px !important;
  background: #fff !important;
  color: #000 !important;
  font-family: "Neue Frutiger World", "Inter", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 57px !important;
  font-weight: 400 !important;
  text-align: center !important;
  display: block !important;
}

/* Purchase pill: 353 x 75, outer grey D9D9D9 */
body.single-product .tmpe-product-experience .tmpe-purchase {
  flex: 0 0 353px !important;
  width: 353px !important;
  min-width: 353px !important;
  max-width: 353px !important;
  height: 75px !important;
  min-height: 75px !important;
  max-height: 75px !important;
  padding: 11px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 200px !important;
  background: var(--tmpe-grey-outer) !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 37px !important;
  overflow: visible !important;
}

/* Variant selector: 106 x 53, grey A1A1A1 */
body.single-product .tmpe-product-experience .tmpe-variant-list {
  flex: 0 0 106px !important;
  position: relative !important;
  width: 106px !important;
  min-width: 106px !important;
  max-width: 106px !important;
  height: 53px !important;
  min-height: 53px !important;
  max-height: 53px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 28px !important;
  background: var(--tmpe-grey-option) !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  overflow: visible !important;
}

body.single-product .tmpe-product-experience .tmpe-variant-option {
  flex: 0 0 53px !important;
  position: relative !important;
  z-index: 1 !important;
  width: 53px !important;
  min-width: 53px !important;
  max-width: 53px !important;
  height: 53px !important;
  min-height: 53px !important;
  max-height: 53px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff !important;
  font-family: "Neue Frutiger World", "Inter", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 53px !important;
  font-weight: 400 !important;
  text-align: center !important;
  white-space: nowrap !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

body.single-product .tmpe-product-experience .tmpe-variant-option.is-active {
  color: #000 !important;
  font-weight: 400 !important;
}

body.single-product .tmpe-product-experience .tmpe-variant-option.is-active::before {
  content: "" !important;
  position: absolute !important;
  z-index: -1 !important;
  left: 50% !important;
  top: 50% !important;
  width: 57px !important;
  height: 57px !important;
  min-width: 57px !important;
  max-width: 57px !important;
  min-height: 57px !important;
  max-height: 57px !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 200px !important;
  background: #fff !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

/* Blue add button: centered price text, remaining width inside 353 pill */
body.single-product .tmpe-product-experience .tmpe-add-button {
  flex: 0 0 188px !important;
  width: 188px !important;
  min-width: 188px !important;
  max-width: 188px !important;
  height: 53px !important;
  min-height: 53px !important;
  max-height: 53px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 200px !important;
  background: var(--tmpe-blue) !important;
  color: #fff !important;
  font-family: "Neue Frutiger World", "Inter", Arial, sans-serif !important;
  font-size: 20px !important;
  line-height: 53px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

body.single-product .tmpe-product-experience .tmpe-helper {
  display: block !important;
  width: 353px !important;
  margin: 8px 0 0 141px !important;
  padding: 0 !important;
  color: var(--tmpe-grey-note) !important;
  font-family: "Neue Frutiger World", "Inter", Arial, sans-serif !important;
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

/* Mobile: preserve usability, do not enforce desktop width beyond viewport */
@media (max-width: 767px) {
  body.single-product .tmpe-product-experience .tmpe-purchase-row {
    gap: 14px !important;
    flex-wrap: wrap !important;
  }

  body.single-product .tmpe-product-experience .tmpe-purchase {
    flex: 0 0 min(353px, calc(100vw - 32px)) !important;
    width: min(353px, calc(100vw - 32px)) !important;
    min-width: 0 !important;
    max-width: calc(100vw - 32px) !important;
  }

  body.single-product .tmpe-product-experience .tmpe-helper {
    margin-left: 0 !important;
    width: min(353px, calc(100vw - 32px)) !important;
  }
}


/* ==========================================================
   v0.2.13 — FINAL HARD LOCK: purchase typography + exact color
   ========================================================== */
.tmpe.tmpe-product-experience,
.tmpe.tmpe-product-experience * { box-sizing: border-box; }
.tmpe.tmpe-product-experience {
  --tmpe-font-main: "Neue Frutiger World", "Neue Frutiger World Regular", "NeueFrutigerWorld", "Frutiger", Arial, sans-serif;
  --tmpe-buy-blue: #334CDB;
  --tmpe-purchase-bg: #D9D9D9;
  --tmpe-option-bg: #A1A1A1;
  --tmpe-note: #A5A5A5;
}
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-action-combo,
.tmpe.tmpe-product-experience form.cart .tmpe-purchase .tmpe-action-combo,
.single-product .tmpe.tmpe-product-experience .tmpe-purchase .tmpe-action-combo {
  width: 353px !important; height: 75px !important; min-width: 353px !important; max-width: 353px !important;
  min-height: 75px !important; max-height: 75px !important; display: flex !important; align-items: center !important;
  justify-content: flex-start !important; gap: 37px !important; padding: 11px 12px !important;
  border-radius: 200px !important; background-color: var(--tmpe-purchase-bg) !important; background: var(--tmpe-purchase-bg) !important;
  overflow: hidden !important; box-shadow: none !important; border: 0 !important;
}
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-variant-list,
.tmpe.tmpe-product-experience form.cart .tmpe-purchase .tmpe-variant-list,
.single-product .tmpe.tmpe-product-experience .tmpe-purchase .tmpe-variant-list {
  position: relative !important; width: 106px !important; min-width: 106px !important; max-width: 106px !important;
  height: 53px !important; min-height: 53px !important; max-height: 53px !important; display: flex !important;
  align-items: center !important; justify-content: flex-start !important; gap: 0 !important; padding: 0 !important; margin: 0 !important;
  border-radius: 28px !important; background-color: var(--tmpe-option-bg) !important; background: var(--tmpe-option-bg) !important;
  overflow: visible !important; isolation: isolate !important; box-shadow: none !important; border: 0 !important;
}
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-variant-list::before,
.tmpe.tmpe-product-experience form.cart .tmpe-purchase .tmpe-variant-list::before,
.single-product .tmpe.tmpe-product-experience .tmpe-purchase .tmpe-variant-list::before {
  content: "" !important; position: absolute !important; z-index: 0 !important; top: -2px !important; left: var(--tmpe-active-left, 0px) !important;
  width: 57px !important; height: 57px !important; min-width: 57px !important; min-height: 57px !important;
  border-radius: 200px !important; background-color: #FFFFFF !important; background: #FFFFFF !important; transform: none !important;
  box-shadow: none !important; border: 0 !important; transition: left 160ms ease !important;
}
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-variant-list[data-active-index="0"] { --tmpe-active-left: 0px; }
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-variant-list[data-active-index="1"] { --tmpe-active-left: 49px; }
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-variant-option,
.tmpe.tmpe-product-experience .tmpe-purchase button.tmpe-variant-option,
.tmpe.tmpe-product-experience form.cart .tmpe-purchase .tmpe-variant-option,
.single-product .tmpe.tmpe-product-experience .tmpe-purchase .tmpe-variant-option {
  position: relative !important; z-index: 1 !important; width: 53px !important; min-width: 53px !important; max-width: 53px !important;
  height: 53px !important; min-height: 53px !important; max-height: 53px !important; padding: 0 !important; margin: 0 !important;
  display: inline-flex !important; align-items: center !important; justify-content: center !important; text-align: center !important; white-space: nowrap !important;
  border: 0 !important; outline: 0 !important; box-shadow: none !important; background: transparent !important; background-color: transparent !important;
  border-radius: 200px !important; font-family: var(--tmpe-font-main) !important; font-size: 16px !important; line-height: 15px !important;
  font-weight: 400 !important; font-style: normal !important; letter-spacing: 0 !important; text-transform: none !important;
  color: #FFFFFF !important; opacity: 1 !important; -webkit-font-smoothing: antialiased !important; text-rendering: geometricPrecision !important;
}
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-variant-option.is-active,
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-variant-option[aria-pressed="true"],
.tmpe.tmpe-product-experience .tmpe-purchase button.tmpe-variant-option.is-active,
.single-product .tmpe.tmpe-product-experience .tmpe-purchase .tmpe-variant-option.is-active {
  color: #000000 !important; font-family: var(--tmpe-font-main) !important; font-size: 16px !important; line-height: 15px !important;
  font-weight: 400 !important; font-style: normal !important; background: transparent !important; box-shadow: none !important;
}
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-variant-option *,
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-variant-option.is-active *,
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-variant-option[aria-pressed="true"] * {
  font-family: var(--tmpe-font-main) !important; font-size: 16px !important; line-height: 15px !important;
  font-weight: 400 !important; font-style: normal !important; letter-spacing: 0 !important; text-transform: none !important; color: inherit !important;
}
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-add-button,
.tmpe.tmpe-product-experience .tmpe-purchase button.tmpe-add-button,
.tmpe.tmpe-product-experience .tmpe-purchase .single_add_to_cart_button.tmpe-add-button,
.tmpe.tmpe-product-experience form.cart .tmpe-purchase .tmpe-add-button,
.single-product .tmpe.tmpe-product-experience .tmpe-purchase .tmpe-add-button,
.single-product .tmpe.tmpe-product-experience .tmpe-purchase button.tmpe-add-button.button.alt {
  flex: 0 0 202px !important; width: 202px !important; min-width: 202px !important; max-width: 202px !important;
  height: 53px !important; min-height: 53px !important; max-height: 53px !important; padding: 0 !important; margin: 0 !important;
  display: inline-flex !important; align-items: center !important; justify-content: center !important; text-align: center !important;
  border-radius: 200px !important; border: 0 !important; outline: 0 !important; box-shadow: none !important;
  background-color: var(--tmpe-buy-blue) !important; background: var(--tmpe-buy-blue) !important; color: #FFFFFF !important;
  font-family: var(--tmpe-font-main) !important; font-size: 20px !important; line-height: 15px !important; font-weight: 400 !important; font-style: normal !important;
  letter-spacing: 0 !important; text-transform: none !important; -webkit-font-smoothing: antialiased !important; text-rendering: geometricPrecision !important;
}
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-add-button:hover,
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-add-button:focus,
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-add-button:active,
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-add-button.added,
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-add-button.loading {
  background-color: var(--tmpe-buy-blue) !important; background: var(--tmpe-buy-blue) !important; color: #FFFFFF !important; opacity: 1 !important; transform: none !important; box-shadow: none !important;
}
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-add-button *,
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-add-button span,
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-add-button bdi,
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-add-button strong,
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-add-button .amount,
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-add-button .woocommerce-Price-amount,
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-add-button .woocommerce-Price-currencySymbol,
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-button-price,
.tmpe.tmpe-product-experience .tmpe-purchase [data-tmpe-button-price] {
  display: inline !important; font-family: var(--tmpe-font-main) !important; font-size: 20px !important; line-height: 15px !important;
  font-weight: 400 !important; font-style: normal !important; letter-spacing: 0 !important; text-transform: none !important;
  color: #FFFFFF !important; background: transparent !important; opacity: 1 !important; text-decoration: none !important;
}
.tmpe.tmpe-product-experience .tmpe-purchase .tmpe-weight-note,
.tmpe.tmpe-product-experience form.cart .tmpe-purchase .tmpe-weight-note,
.single-product .tmpe.tmpe-product-experience .tmpe-purchase .tmpe-weight-note {
  margin: 8px 0 0 155px !important; padding: 0 !important; display: block !important; width: 124px !important; max-width: 124px !important;
  text-align: left !important; font-family: var(--tmpe-font-main) !important; font-size: 14px !important; line-height: 20px !important;
  font-weight: 400 !important; font-style: normal !important; letter-spacing: 0 !important; text-transform: none !important; color: var(--tmpe-note) !important;
}

/* v0.2.14 — purchase block hard lock: real plugin class names, Figma sizes, dynamic 1–3 variants */
body.single-product .tmpe-product-page .tmpe-purchase,
body.single-product .tmpe-product-page .tmpe-purchase * {
  font-family: "Neue Frutiger World", "Neue Frutiger", "Frutiger", Arial, sans-serif !important;
  box-sizing: border-box !important;
}

body.single-product .tmpe-product-page .tmpe-purchase .tmpe-action-combo {
  width: var(--tmpe-combo-width, 353px) !important;
  min-width: var(--tmpe-combo-width, 353px) !important;
  max-width: var(--tmpe-combo-width, 353px) !important;
  height: 75px !important;
  min-height: 75px !important;
  max-height: 75px !important;
  padding: 11px !important;
  gap: 37px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex: 0 0 auto !important;
  background: #D9D9D9 !important;
  border: 0 !important;
  border-radius: 200px !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body.single-product .tmpe-product-page .tmpe-purchase .tmpe-variant-switch {
  width: var(--tmpe-options-width, 106px) !important;
  min-width: var(--tmpe-options-width, 106px) !important;
  max-width: var(--tmpe-options-width, 106px) !important;
  height: 53px !important;
  min-height: 53px !important;
  max-height: 53px !important;
  padding: 0 !important;
  gap: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex: 0 0 var(--tmpe-options-width, 106px) !important;
  background: #A1A1A1 !important;
  border: 0 !important;
  border-radius: 28px !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body.single-product .tmpe-product-page .tmpe-purchase .tmpe-variant-pill {
  width: 49px !important;
  min-width: 49px !important;
  max-width: 49px !important;
  height: 53px !important;
  min-height: 53px !important;
  max-height: 53px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 49px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 200px !important;
  box-shadow: none !important;
  color: #FFFFFF !important;
  font-size: 16px !important;
  line-height: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  white-space: nowrap !important;
}

body.single-product .tmpe-product-page .tmpe-purchase .tmpe-variant-pill.is-active,
body.single-product .tmpe-product-page .tmpe-purchase .tmpe-variant-pill[aria-checked="true"] {
  width: 57px !important;
  min-width: 57px !important;
  max-width: 57px !important;
  height: 57px !important;
  min-height: 57px !important;
  max-height: 57px !important;
  flex-basis: 57px !important;
  background: #FFFFFF !important;
  color: #000000 !important;
  border-radius: 200px !important;
  font-size: 16px !important;
  line-height: 15px !important;
  font-weight: 400 !important;
  box-shadow: none !important;
  z-index: 2 !important;
}

body.single-product .tmpe-product-page .tmpe-purchase .tmpe-add-button,
body.single-product .tmpe-product-page .tmpe-purchase button.tmpe-add-button,
body.single-product .tmpe-product-page .tmpe-purchase .tmpe-add-button.single_add_to_cart_button,
body.single-product .tmpe-product-page .tmpe-purchase .single_add_to_cart_button.tmpe-add-button,
body.single-product .tmpe-product-page form.tmpe-purchase .tmpe-add-button {
  width: 188px !important;
  min-width: 188px !important;
  max-width: 188px !important;
  height: 53px !important;
  min-height: 53px !important;
  max-height: 53px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 188px !important;
  background: #334CDB !important;
  background-color: #334CDB !important;
  border: 0 !important;
  border-radius: 200px !important;
  box-shadow: none !important;
  color: #FFFFFF !important;
  font-size: 20px !important;
  line-height: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-align: center !important;
  white-space: nowrap !important;
}

body.single-product .tmpe-product-page .tmpe-purchase .tmpe-helper {
  display: block !important;
  align-self: flex-start !important;
  margin: 10px 0 0 11px !important;
  padding: 0 !important;
  color: #A5A5A5 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

body.single-product .tmpe-product-page .tmpe-purchase.tmpe-variants-count-1 .tmpe-variant-switch {
  width: 57px !important;
  min-width: 57px !important;
  max-width: 57px !important;
}
body.single-product .tmpe-product-page .tmpe-purchase.tmpe-variants-count-2 .tmpe-variant-switch {
  width: 106px !important;
  min-width: 106px !important;
  max-width: 106px !important;
}
body.single-product .tmpe-product-page .tmpe-purchase.tmpe-variants-count-3 .tmpe-variant-switch {
  width: 155px !important;
  min-width: 155px !important;
  max-width: 155px !important;
}

@media (max-width: 767px) {
  body.single-product .tmpe-product-page .tmpe-purchase .tmpe-action-combo {
    transform-origin: left center !important;
  }
}


/* === the Moon. Product Experience v0.2.15
   Purchase controls: restore active variant circle and lock Figma typography/color.
   This block is deliberately at the end of the stylesheet to beat theme/plugin overrides. */
.tmpe-experience .tmpe-purchase-card .tmpe-variant-switch,
.tmpe-experience .tmpe-purchase-card .tmpe-purchase-options,
.tmpe-experience .tmpe-purchase-card .tmpe-buy-row,
.tmpe-experience .tmpe-sticky-inner .tmpe-variant-switch,
.tmpe-experience .tmpe-sticky-inner .tmpe-purchase-options,
.tmpe-experience .tmpe-sticky-inner .tmpe-buy-row {
  font-family: "Neue Frutiger World", "Frutiger", "Inter", Arial, sans-serif !important;
}

.tmpe-experience .tmpe-variant-switch {
  height: 53px !important;
  min-height: 53px !important;
  width: auto !important;
  min-width: 106px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  padding: 0 !important;
  border-radius: 28px !important;
  background: #A1A1A1 !important;
  overflow: visible !important;
  box-sizing: border-box !important;
  flex: 0 0 auto !important;
}

.tmpe-experience .tmpe-variant-pill {
  appearance: none !important;
  -webkit-appearance: none !important;
  height: 53px !important;
  min-height: 53px !important;
  min-width: 42px !important;
  width: auto !important;
  padding: 0 6px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 28px !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #FFFFFF !important;
  font-family: "Neue Frutiger World", "Frutiger", "Inter", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 15px !important;
  letter-spacing: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
  position: relative !important;
  z-index: 1 !important;
  transform: none !important;
}

.tmpe-experience .tmpe-variant-pill.is-selected,
.tmpe-experience .tmpe-variant-pill.is-active,
.tmpe-experience .tmpe-variant-pill[aria-checked="true"] {
  width: 57px !important;
  min-width: 57px !important;
  max-width: 57px !important;
  height: 57px !important;
  min-height: 57px !important;
  max-height: 57px !important;
  padding: 0 !important;
  border-radius: 200px !important;
  background: #FFFFFF !important;
  color: #000000 !important;
  font-family: "Neue Frutiger World", "Frutiger", "Inter", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 15px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
  z-index: 5 !important;
}

.tmpe-experience .tmpe-buy-button,
.tmpe-experience .single_add_to_cart_button.tmpe-buy-button,
.tmpe-experience button.tmpe-buy-button {
  background: #334CDB !important;
  color: #FFFFFF !important;
  font-family: "Neue Frutiger World", "Frutiger", "Inter", Arial, sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 15px !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

.tmpe-experience .tmpe-purchase-note {
  font-family: "Neue Frutiger World", "Frutiger", "Inter", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  color: #A5A5A5 !important;
  margin-top: 8px !important;
}


/* v0.2.16 — purchase right edge lock + editable helper text */
@media (min-width: 1025px) {
  body.single-product .tmpe-product-page .tmpe-purchase{
    width: var(--tmpe-purchase-right-width, auto) !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  body.single-product .tmpe-product-page .tmpe-purchase-row{
    width: 100% !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  body.single-product .tmpe-product-page .tmpe-action-stack{
    margin-left: auto !important;
    margin-right: 0 !important;
  }
}


/* v0.2.17 — purchase block right edge aligned to page/content boundary, not raw viewport */
@media (min-width: 1025px) {
  .tmpe-product-page .tmpe-purchase {
    width: var(--tmpe-purchase-right-width, auto) !important;
    max-width: none !important;
  }

  .tmpe-product-page .tmpe-purchase-row {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }

  .tmpe-product-page .tmpe-action-stack {
    margin-left: auto !important;
    flex: 0 0 auto !important;
  }

  .tmpe-product-page .tmpe-action-combo {
    flex: 0 0 var(--tmpe-combo-width, 353px) !important;
    width: var(--tmpe-combo-width, 353px) !important;
    max-width: var(--tmpe-combo-width, 353px) !important;
  }
}

/* v0.2.18 — final purchase-control lock: no viewport stretching, natural right alignment inside product column */
.tmpe-product-page .tmpe-purchase-row,
.tmpe-product-page .tmpe-purchase-row.tmpe-has-purchase {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 32px !important;
  overflow: visible !important;
}

.tmpe-product-page .tmpe-action-stack {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  transform: none !important;
  translate: none !important;
  justify-self: end !important;
  align-items: flex-start !important;
  overflow: visible !important;
}

.tmpe-product-page .tmpe-purchase-wrap {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  justify-content: flex-end !important;
  overflow: visible !important;
}

.tmpe-product-page .tmpe-purchase,
.tmpe-product-page form.tmpe-purchase {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  overflow: visible !important;
}

.tmpe-product-page .tmpe-action-combo {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  height: 75px !important;
  padding: 11px !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 37px !important;
  border-radius: 200px !important;
  background: #D9D9D9 !important;
  overflow: visible !important;
}

.tmpe-product-page .tmpe-variant-switch {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 106px !important;
  height: 53px !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  border-radius: 28px !important;
  background: #A1A1A1 !important;
  overflow: visible !important;
}

.tmpe-product-page .tmpe-variant-pill {
  appearance: none !important;
  -webkit-appearance: none !important;
  flex: 0 0 53px !important;
  width: 53px !important;
  min-width: 53px !important;
  height: 53px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 200px !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #FFFFFF !important;
  font-family: "Neue Frutiger World", "Frutiger", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  cursor: pointer !important;
}

.tmpe-product-page .tmpe-variant-pill.is-selected,
.tmpe-product-page .tmpe-variant-pill.is-active,
.tmpe-product-page .tmpe-variant-pill[aria-checked="true"] {
  flex-basis: 57px !important;
  width: 57px !important;
  min-width: 57px !important;
  height: 57px !important;
  margin-top: -2px !important;
  margin-bottom: -2px !important;
  background: #FFFFFF !important;
  color: #000000 !important;
  font-family: "Neue Frutiger World", "Frutiger", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  z-index: 2 !important;
}

.tmpe-product-page.tmpe-single-variant .tmpe-variant-switch {
  min-width: 57px !important;
  background: transparent !important;
}

.tmpe-product-page.tmpe-single-variant .tmpe-variant-pill,
.tmpe-product-page .tmpe-variant-pill.is-single-fixed,
.tmpe-product-page .tmpe-variant-pill:disabled {
  opacity: 1 !important;
  cursor: default !important;
  pointer-events: none !important;
}

.tmpe-product-page .tmpe-add-to-cart {
  flex: 0 0 253px !important;
  width: 253px !important;
  min-width: 253px !important;
  height: 53px !important;
  min-height: 53px !important;
  padding: 0 24px !important;
  border: 0 !important;
  border-radius: 200px !important;
  background: #334CDB !important;
  color: #FFFFFF !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  font-family: "Neue Frutiger World", "Frutiger", Arial, sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  box-shadow: none !important;
}

.tmpe-product-page .tmpe-add-to-cart .tmpe-button-price,
.tmpe-product-page [data-tmpe-button-price] {
  font-family: "Neue Frutiger World", "Frutiger", Arial, sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  color: #FFFFFF !important;
}

.tmpe-product-page .tmpe-helper-text {
  margin-top: 12px !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-align: left !important;
  font-family: "Neue Frutiger World", "Frutiger", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  letter-spacing: 0 !important;
  color: #A5A5A5 !important;
}

@media (max-width: 1024px) {
  .tmpe-product-page .tmpe-purchase-row,
  .tmpe-product-page .tmpe-purchase-row.tmpe-has-purchase {
    gap: 18px !important;
  }
  .tmpe-product-page .tmpe-action-combo {
    gap: 16px !important;
  }
}

@media (max-width: 767px) {
  .tmpe-product-page .tmpe-purchase-row,
  .tmpe-product-page .tmpe-purchase-row.tmpe-has-purchase {
    display: none !important;
  }
}

/* v0.2.19 — purchase block: stable right-edge lock, one-variant click lock, unavailable CTA */
.tmpe-product-page,
.tmpe-product-page .tmpe-hero,
.tmpe-product-page .tmpe-content,
.tmpe-product-page .tmpe-purchase-row {
  overflow: visible !important;
}

.tmpe-product-page .tmpe-purchase-row {
  position: relative !important;
  display: flex !important;
  align-items: flex-start !important;
  width: 100% !important;
  min-width: 0 !important;
}

.tmpe-product-page .tmpe-action-stack {
  flex: 0 0 auto !important;
  width: max-content !important;
  max-width: none !important;
  min-width: 0 !important;
  margin-left: auto !important;
  transform: translateX(var(--tmpe-right-shift, 0px)) !important;
  will-change: transform;
}

.tmpe-product-page .tmpe-action-stack.is-right-locked {
  transition: transform 120ms ease;
}

.tmpe-product-page .tmpe-action-combo {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

.tmpe-product-page .tmpe-variant-track {
  flex: 0 0 auto !important;
  overflow: visible !important;
}

.tmpe-product-page .tmpe-add-button {
  background: #334CDB !important;
  color: #FFFFFF !important;
  font-family: "Neue Frutiger World", "Inter", "Arial", sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.tmpe-product-page .tmpe-add-button.is-unavailable,
.tmpe-product-page .tmpe-add-button:disabled {
  cursor: not-allowed !important;
  opacity: 0.55 !important;
}

.tmpe-product-page .tmpe-cta-unavailable {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  font-family: "Neue Frutiger World", "Inter", "Arial", sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.05 !important;
  white-space: nowrap !important;
}

.tmpe-product-page .tmpe-cta-unavailable small {
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.05 !important;
}

.tmpe-product-page .tmpe-variant-pill,
.tmpe-product-page .tmpe-variant-pill span,
.tmpe-product-page .tmpe-variant-track {
  font-family: "Neue Frutiger World", "Inter", "Arial", sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

.tmpe-product-page .tmpe-variant-pill.is-selected,
.tmpe-product-page .tmpe-variant-pill.is-active,
.tmpe-product-page .tmpe-variant-pill.is-selected span,
.tmpe-product-page .tmpe-variant-pill.is-active span {
  color: #000000 !important;
}

.tmpe-product-page .tmpe-variant-pill:not(.is-selected):not(.is-active),
.tmpe-product-page .tmpe-variant-pill:not(.is-selected):not(.is-active) span {
  color: #FFFFFF !important;
}

.tmpe-product-page.tmpe-single-variant .tmpe-variant-pill,
.tmpe-product-page .tmpe-variant-pill.is-single-fixed {
  pointer-events: none !important;
  cursor: default !important;
}

.tmpe-product-page .tmpe-helper {
  font-family: "Neue Frutiger World", "Inter", "Arial", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  color: #A5A5A5 !important;
}

@media (max-width: 1099px) {
  .tmpe-product-page .tmpe-action-stack {
    transform: translateX(0) !important;
    max-width: 100% !important;
  }
}

/* === the Moon. purchase block v0.2.20 ===
   Stable right edge: the whole buy block keeps its right side fixed and changes width to the left.
   Price button always keeps price text; unavailable variation only disables purchase visually/functionally. */
.tmpe-product-page .tmpe-action-stack.is-right-locked {
  transform: translateX(var(--tmpe-right-shift, 0px)) !important;
  transition: none !important;
  will-change: transform;
}

.tmpe-product-page .tmpe-action-stack,
.tmpe-product-page .tmpe-action-combo,
.tmpe-product-page .tmpe-variant-track,
.tmpe-product-page .tmpe-add-button {
  transition: none !important;
}

.tmpe-product-page .tmpe-add-button {
  background: #334CDB !important;
  color: #FFFFFF !important;
  font-family: "Neue Frutiger World", "Inter", "Arial", sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  min-width: clamp(220px, 14vw, 253px) !important;
  width: clamp(220px, 14vw, 253px) !important;
  white-space: nowrap !important;
}

.tmpe-product-page .tmpe-add-button .tmpe-button-price,
.tmpe-product-page .tmpe-add-button [data-tmpe-button-price] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: "Neue Frutiger World", "Inter", "Arial", sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.tmpe-product-page .tmpe-add-button.is-unavailable,
.tmpe-product-page .tmpe-add-button:disabled {
  background: #334CDB !important;
  opacity: 0.55 !important;
  cursor: not-allowed !important;
}

.tmpe-product-page .tmpe-variant-pill,
.tmpe-product-page .tmpe-variant-pill span,
.tmpe-product-page .tmpe-variant-track {
  font-family: "Neue Frutiger World", "Inter", "Arial", sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

@media (max-width: 1099px) {
  .tmpe-product-page .tmpe-action-stack.is-right-locked {
    transform: none !important;
  }
}


/* =========================================================
   v0.2.21 — Purchase Bar exact normal state from Figma
   Source spec: 349x73 outer, 10px inner padding, 106x53 variant,
   57x57 active circle, 37px gap, 186x53 buy button.
   This block intentionally overrides older accumulated purchase CSS.
   ========================================================= */
@media (min-width: 1100px) {
  body.single-product .tmpe-product-page .tmpe-purchase-row,
  body .tmpe-product-page .tmpe-purchase-row {
    position: relative !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  body.single-product .tmpe-product-page .tmpe-action-stack,
  body .tmpe-product-page .tmpe-action-stack {
    --tmpe-purchase-width: 349px;
    --tmpe-purchase-height: 73px;
    --tmpe-purchase-pad: 10px;
    --tmpe-variant-width: 106px;
    --tmpe-control-height: 53px;
    --tmpe-active-circle: 57px;
    --tmpe-purchase-gap: 37px;
    --tmpe-buy-width: 186px;

    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    flex: 0 0 var(--tmpe-purchase-width) !important;
    width: var(--tmpe-purchase-width) !important;
    min-width: var(--tmpe-purchase-width) !important;
    max-width: var(--tmpe-purchase-width) !important;
    margin-left: auto !important;
    overflow: visible !important;
    transform: translateX(var(--tmpe-right-shift, 0px)) !important;
  }

  body.single-product .tmpe-product-page .tmpe-action-combo,
  body .tmpe-product-page .tmpe-action-combo {
    display: grid !important;
    grid-template-columns: var(--tmpe-variant-width) var(--tmpe-buy-width) !important;
    column-gap: var(--tmpe-purchase-gap) !important;
    align-items: center !important;
    justify-content: start !important;
    box-sizing: border-box !important;
    flex: 0 0 var(--tmpe-purchase-width) !important;
    width: var(--tmpe-purchase-width) !important;
    min-width: var(--tmpe-purchase-width) !important;
    max-width: var(--tmpe-purchase-width) !important;
    height: var(--tmpe-purchase-height) !important;
    min-height: var(--tmpe-purchase-height) !important;
    max-height: var(--tmpe-purchase-height) !important;
    padding: var(--tmpe-purchase-pad) !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 50px !important;
    background: #D9D9D9 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  body.single-product .tmpe-product-page .tmpe-variant-switch,
  body .tmpe-product-page .tmpe-variant-switch {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    box-sizing: border-box !important;
    flex: 0 0 var(--tmpe-variant-width) !important;
    width: var(--tmpe-variant-width) !important;
    min-width: var(--tmpe-variant-width) !important;
    max-width: var(--tmpe-variant-width) !important;
    height: var(--tmpe-control-height) !important;
    min-height: var(--tmpe-control-height) !important;
    max-height: var(--tmpe-control-height) !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 28px !important;
    background: #A1A1A1 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  body.single-product .tmpe-product-page .tmpe-variant-pill,
  body .tmpe-product-page .tmpe-variant-pill,
  body.single-product .tmpe-product-page button.tmpe-variant-pill,
  body .tmpe-product-page button.tmpe-variant-pill {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    flex: 0 0 53px !important;
    width: 53px !important;
    min-width: 53px !important;
    max-width: 53px !important;
    height: var(--tmpe-control-height) !important;
    min-height: var(--tmpe-control-height) !important;
    max-height: var(--tmpe-control-height) !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    font-family: "Neue Frutiger World", "Inter", Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
    text-transform: none !important;
    color: #FFFFFF !important;
    cursor: pointer !important;
    overflow: visible !important;
  }

  body.single-product .tmpe-product-page .tmpe-variant-pill.is-selected,
  body .tmpe-product-page .tmpe-variant-pill.is-selected,
  body.single-product .tmpe-product-page .tmpe-variant-pill.is-active,
  body .tmpe-product-page .tmpe-variant-pill.is-active {
    color: #000000 !important;
  }

  body.single-product .tmpe-product-page .tmpe-variant-pill.is-selected::before,
  body .tmpe-product-page .tmpe-variant-pill.is-selected::before,
  body.single-product .tmpe-product-page .tmpe-variant-pill.is-active::before,
  body .tmpe-product-page .tmpe-variant-pill.is-active::before {
    content: "" !important;
    position: absolute !important;
    z-index: -1 !important;
    left: 50% !important;
    top: 50% !important;
    width: var(--tmpe-active-circle) !important;
    height: var(--tmpe-active-circle) !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 200px !important;
    background: #FFFFFF !important;
    box-shadow: none !important;
    pointer-events: none !important;
  }

  body.single-product .tmpe-product-page .tmpe-add-button,
  body .tmpe-product-page .tmpe-add-button,
  body.single-product .tmpe-product-page button.tmpe-add-button,
  body .tmpe-product-page button.tmpe-add-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    flex: 0 0 var(--tmpe-buy-width) !important;
    width: var(--tmpe-buy-width) !important;
    min-width: var(--tmpe-buy-width) !important;
    max-width: var(--tmpe-buy-width) !important;
    height: var(--tmpe-control-height) !important;
    min-height: var(--tmpe-control-height) !important;
    max-height: var(--tmpe-control-height) !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 50px !important;
    background: #334CDB !important;
    box-shadow: none !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    font-family: "Neue Frutiger World", "Inter", Arial, sans-serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    text-transform: none !important;
    text-align: center !important;
    color: #FFFFFF !important;
    cursor: pointer !important;
    overflow: hidden !important;
  }

  body.single-product .tmpe-product-page .tmpe-add-button:hover,
  body .tmpe-product-page .tmpe-add-button:hover,
  body.single-product .tmpe-product-page .tmpe-add-button:focus,
  body .tmpe-product-page .tmpe-add-button:focus {
    background: #334CDB !important;
    color: #FFFFFF !important;
    box-shadow: none !important;
    outline: none !important;
  }

  body.single-product .tmpe-product-page .tmpe-add-button span,
  body .tmpe-product-page .tmpe-add-button span,
  body.single-product .tmpe-product-page .tmpe-add-button [data-tmpe-button-price],
  body .tmpe-product-page .tmpe-add-button [data-tmpe-button-price] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: "Neue Frutiger World", "Inter", Arial, sans-serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    color: #FFFFFF !important;
    white-space: nowrap !important;
  }

  body.single-product .tmpe-product-page .tmpe-helper,
  body .tmpe-product-page .tmpe-helper {
    display: block !important;
    box-sizing: border-box !important;
    width: var(--tmpe-purchase-width) !important;
    max-width: var(--tmpe-purchase-width) !important;
    margin: 6px 0 0 10px !important;
    padding: 0 !important;
    font-family: "Neue Frutiger World", "Inter", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 18px !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    color: #A5A5A5 !important;
  }
}


/* =========================================================
   v0.2.22 — Purchase Bar right-edge lock + 3-option-safe geometry
   Rule: if variants increase the control width, the block grows to the LEFT.
   The right edge is locked by JS to 75px from the viewport/page edge.
   ========================================================= */
@media (min-width: 1100px) {
  body.single-product .tmpe-product-page .tmpe-purchase,
  body .tmpe-product-page .tmpe-purchase,
  body.single-product .tmpe-product-page form.tmpe-purchase,
  body .tmpe-product-page form.tmpe-purchase {
    width: 100% !important;
    max-width: none !important;
    margin-top: 40px !important;
    padding: 0 !important;
    display: block !important;
    overflow: visible !important;
  }

  body.single-product .tmpe-product-page .tmpe-purchase-row,
  body .tmpe-product-page .tmpe-purchase-row {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 32px !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  body.single-product .tmpe-product-page .tmpe-action-stack,
  body .tmpe-product-page .tmpe-action-stack {
    --tmpe-purchase-height: 73px;
    --tmpe-purchase-pad: 10px;
    --tmpe-control-height: 53px;
    --tmpe-option-width: var(--tmpe-options-width, 106px);
    --tmpe-buy-width: 186px;
    --tmpe-gap: 37px;
    --tmpe-bar-width: var(--tmpe-combo-width, 349px);

    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    flex: 0 0 var(--tmpe-bar-width) !important;
    width: var(--tmpe-bar-width) !important;
    min-width: var(--tmpe-bar-width) !important;
    max-width: var(--tmpe-bar-width) !important;
    margin-left: auto !important;
    padding: 0 !important;
    overflow: visible !important;
    transform: translateX(var(--tmpe-right-shift, 0px)) !important;
    transition: none !important;
    will-change: transform;
    box-sizing: border-box !important;
  }

  body.single-product .tmpe-product-page .tmpe-action-combo,
  body .tmpe-product-page .tmpe-action-combo {
    position: relative !important;
    display: grid !important;
    grid-template-columns: var(--tmpe-option-width) var(--tmpe-buy-width) !important;
    column-gap: var(--tmpe-gap) !important;
    align-items: center !important;
    justify-content: start !important;
    box-sizing: border-box !important;
    flex: 0 0 var(--tmpe-bar-width) !important;
    width: var(--tmpe-bar-width) !important;
    min-width: var(--tmpe-bar-width) !important;
    max-width: var(--tmpe-bar-width) !important;
    height: var(--tmpe-purchase-height) !important;
    min-height: var(--tmpe-purchase-height) !important;
    max-height: var(--tmpe-purchase-height) !important;
    padding: var(--tmpe-purchase-pad) !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 50px !important;
    background: #D9D9D9 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  body.single-product .tmpe-product-page .tmpe-variant-switch,
  body .tmpe-product-page .tmpe-variant-switch {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    box-sizing: border-box !important;
    flex: 0 0 var(--tmpe-option-width) !important;
    width: var(--tmpe-option-width) !important;
    min-width: var(--tmpe-option-width) !important;
    max-width: var(--tmpe-option-width) !important;
    height: var(--tmpe-control-height) !important;
    min-height: var(--tmpe-control-height) !important;
    max-height: var(--tmpe-control-height) !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 28px !important;
    background: #A1A1A1 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  body.single-product .tmpe-product-page .tmpe-variant-pill,
  body .tmpe-product-page .tmpe-variant-pill,
  body.single-product .tmpe-product-page button.tmpe-variant-pill,
  body .tmpe-product-page button.tmpe-variant-pill {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    flex: 0 0 53px !important;
    width: 53px !important;
    min-width: 53px !important;
    max-width: 53px !important;
    height: var(--tmpe-control-height) !important;
    min-height: var(--tmpe-control-height) !important;
    max-height: var(--tmpe-control-height) !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    font-family: "Neue Frutiger World", "Inter", Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
    text-transform: none !important;
    color: #FFFFFF !important;
    cursor: pointer !important;
    overflow: visible !important;
  }

  body.single-product .tmpe-product-page .tmpe-variant-pill.is-selected,
  body .tmpe-product-page .tmpe-variant-pill.is-selected,
  body.single-product .tmpe-product-page .tmpe-variant-pill.is-active,
  body .tmpe-product-page .tmpe-variant-pill.is-active {
    color: #000000 !important;
    font-weight: 400 !important;
  }

  body.single-product .tmpe-product-page .tmpe-variant-pill.is-selected::before,
  body .tmpe-product-page .tmpe-variant-pill.is-selected::before,
  body.single-product .tmpe-product-page .tmpe-variant-pill.is-active::before,
  body .tmpe-product-page .tmpe-variant-pill.is-active::before {
    content: "" !important;
    position: absolute !important;
    z-index: -1 !important;
    left: 50% !important;
    top: 50% !important;
    width: 57px !important;
    height: 57px !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 200px !important;
    background: #FFFFFF !important;
    box-shadow: none !important;
    pointer-events: none !important;
  }

  body.single-product .tmpe-product-page .tmpe-add-button,
  body .tmpe-product-page .tmpe-add-button,
  body.single-product .tmpe-product-page button.tmpe-add-button,
  body .tmpe-product-page button.tmpe-add-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    flex: 0 0 var(--tmpe-buy-width) !important;
    width: var(--tmpe-buy-width) !important;
    min-width: var(--tmpe-buy-width) !important;
    max-width: var(--tmpe-buy-width) !important;
    height: var(--tmpe-control-height) !important;
    min-height: var(--tmpe-control-height) !important;
    max-height: var(--tmpe-control-height) !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 50px !important;
    background: #334CDB !important;
    box-shadow: none !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    font-family: "Neue Frutiger World", "Inter", Arial, sans-serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    text-transform: none !important;
    text-align: center !important;
    color: #FFFFFF !important;
    cursor: pointer !important;
    overflow: hidden !important;
  }

  body.single-product .tmpe-product-page .tmpe-add-button span,
  body .tmpe-product-page .tmpe-add-button span,
  body.single-product .tmpe-product-page .tmpe-add-button [data-tmpe-button-price],
  body .tmpe-product-page .tmpe-add-button [data-tmpe-button-price] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: "Neue Frutiger World", "Inter", Arial, sans-serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    color: #FFFFFF !important;
    white-space: nowrap !important;
  }

  body.single-product .tmpe-product-page .tmpe-helper,
  body .tmpe-product-page .tmpe-helper {
    display: block !important;
    box-sizing: border-box !important;
    width: var(--tmpe-bar-width) !important;
    max-width: var(--tmpe-bar-width) !important;
    margin: 6px 0 0 10px !important;
    padding: 0 !important;
    font-family: "Neue Frutiger World", "Inter", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 18px !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    color: #A5A5A5 !important;
  }
}


/* =========================================================
   v0.2.23 — Purchase Bar exact 10px inner inset lock
   The combo shell now positions inner controls by inset, not grid flow.
   This keeps top/right/bottom/left padding exactly 10px and prevents
   the blue purchase button from visually drifting inside the grey field.
   ========================================================= */
@media (min-width: 1100px) {
  body.single-product .tmpe-product-page .tmpe-action-combo,
  body .tmpe-product-page .tmpe-action-combo {
    position: relative !important;
    display: block !important;
    grid-template-columns: none !important;
    column-gap: 0 !important;
    align-items: initial !important;
    justify-content: initial !important;
    box-sizing: border-box !important;
    width: var(--tmpe-bar-width) !important;
    min-width: var(--tmpe-bar-width) !important;
    max-width: var(--tmpe-bar-width) !important;
    height: var(--tmpe-purchase-height) !important;
    min-height: var(--tmpe-purchase-height) !important;
    max-height: var(--tmpe-purchase-height) !important;
    padding: var(--tmpe-purchase-pad) !important;
    border-radius: 50px !important;
    background: #D9D9D9 !important;
    overflow: visible !important;
  }

  body.single-product .tmpe-product-page .tmpe-variant-switch,
  body .tmpe-product-page .tmpe-variant-switch {
    position: absolute !important;
    left: var(--tmpe-purchase-pad) !important;
    top: var(--tmpe-purchase-pad) !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: var(--tmpe-option-width) !important;
    min-width: var(--tmpe-option-width) !important;
    max-width: var(--tmpe-option-width) !important;
    height: var(--tmpe-control-height) !important;
    min-height: var(--tmpe-control-height) !important;
    max-height: var(--tmpe-control-height) !important;
    margin: 0 !important;
  }

  body.single-product .tmpe-product-page .tmpe-add-button,
  body .tmpe-product-page .tmpe-add-button,
  body.single-product .tmpe-product-page button.tmpe-add-button,
  body .tmpe-product-page button.tmpe-add-button {
    position: absolute !important;
    right: var(--tmpe-purchase-pad) !important;
    top: var(--tmpe-purchase-pad) !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: var(--tmpe-buy-width) !important;
    min-width: var(--tmpe-buy-width) !important;
    max-width: var(--tmpe-buy-width) !important;
    height: var(--tmpe-control-height) !important;
    min-height: var(--tmpe-control-height) !important;
    max-height: var(--tmpe-control-height) !important;
    margin: 0 !important;
  }

  body.single-product .tmpe-product-page .tmpe-helper,
  body .tmpe-product-page .tmpe-helper {
    width: var(--tmpe-bar-width) !important;
    max-width: var(--tmpe-bar-width) !important;
  }
}


/* =========================================================
   v0.2.26 — Product title Figma lock
   Title is still loaded from the WooCommerce product name.
   Desktop geometry: title starts 50px after the media block and 35px
   from the top of the product page section.
   ========================================================= */
@media (min-width: 1181px) {
  html body.single-product .tmpe-product-page,
  html body .tmpe-product-page {
    --tmpe-desktop-gap: 50px !important;
  }

  html body.single-product .tmpe-product-page .tmpe-hero,
  html body .tmpe-product-page .tmpe-hero {
    column-gap: 50px !important;
    padding-top: 0 !important;
  }

  html body.single-product .tmpe-product-page .tmpe-content,
  html body .tmpe-product-page .tmpe-content {
    padding-top: 35px !important;
  }

  html body.single-product .tmpe-product-page .tmpe-title-row,
  html body .tmpe-product-page .tmpe-title-row {
    margin-top: 0 !important;
    margin-bottom: 28px !important;
    align-items: baseline !important;
  }

  html body.single-product .tmpe-product-page .tmpe-title-row h1,
  html body .tmpe-product-page .tmpe-title-row h1,
  html body.single-product .tmpe-product-page h1,
  html body .tmpe-product-page h1 {
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Neue Frutiger World", "Frutiger", "Inter", Arial, sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    color: #013B9B !important;
    text-transform: none !important;
  }
}


/* =========================================================
   v0.2.27 — Product title + slogan Figma lock
   Title: WooCommerce product name. Slogan: product meta field.
   Desktop: right column starts 50px after media, first text baseline starts
   35px from top. Slogan stays 50px after title and wraps under title when
   there is not enough horizontal room.
   ========================================================= */
@media (min-width: 1181px) {
  html body.single-product .tmpe-product-page,
  html body .tmpe-product-page {
    --tmpe-title-gap: 50px !important;
    --tmpe-page-right-safe: 75px !important;
  }

  html body.single-product .tmpe-product-page .tmpe-hero,
  html body .tmpe-product-page .tmpe-hero {
    column-gap: var(--tmpe-title-gap) !important;
    padding-top: 0 !important;
  }

  html body.single-product .tmpe-product-page .tmpe-content,
  html body .tmpe-product-page .tmpe-content {
    padding-top: 35px !important;
    box-sizing: border-box !important;
  }

  html body.single-product .tmpe-product-page .tmpe-title-row,
  html body .tmpe-product-page .tmpe-title-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: baseline !important;
    justify-content: flex-start !important;
    column-gap: 50px !important;
    row-gap: 6px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 28px 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  html body.single-product .tmpe-product-page .tmpe-title-row h1,
  html body .tmpe-product-page .tmpe-title-row h1,
  html body.single-product .tmpe-product-page .tmpe-title,
  html body .tmpe-product-page .tmpe-title {
    display: block !important;
    flex: 0 1 auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Neue Frutiger World", "Frutiger", "Inter", Arial, sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    color: #013B9B !important;
    text-transform: none !important;
    white-space: nowrap !important;
  }

  html body.single-product .tmpe-product-page .tmpe-slogan,
  html body .tmpe-product-page .tmpe-slogan,
  html body.single-product .tmpe-product-page .tmpe-script,
  html body .tmpe-product-page .tmpe-script,
  html body.single-product .tmpe-product-page .tmpe-tagline,
  html body .tmpe-product-page .tmpe-tagline {
    display: block !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    font-family: "Balneario Script", "Balneario", "Brush Script MT", cursive !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    font-style: normal !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    color: #000000 !important;
    text-transform: none !important;
    white-space: nowrap !important;
    transform: none !important;
  }
}

@media (max-width: 1180px) {
  html body.single-product .tmpe-product-page .tmpe-title-row,
  html body .tmpe-product-page .tmpe-title-row {
    display: flex !important;
    flex-wrap: wrap !important;
    column-gap: 28px !important;
    row-gap: 6px !important;
    align-items: baseline !important;
  }

  html body.single-product .tmpe-product-page .tmpe-title-row h1,
  html body .tmpe-product-page .tmpe-title-row h1,
  html body.single-product .tmpe-product-page .tmpe-title,
  html body .tmpe-product-page .tmpe-title {
    font-family: "Neue Frutiger World", "Frutiger", "Inter", Arial, sans-serif !important;
    color: #013B9B !important;
    text-transform: none !important;
  }

  html body.single-product .tmpe-product-page .tmpe-slogan,
  html body .tmpe-product-page .tmpe-slogan,
  html body.single-product .tmpe-product-page .tmpe-script,
  html body .tmpe-product-page .tmpe-script,
  html body.single-product .tmpe-product-page .tmpe-tagline,
  html body .tmpe-product-page .tmpe-tagline {
    font-family: "Balneario Script", "Balneario", "Brush Script MT", cursive !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    font-style: normal !important;
    line-height: 1 !important;
    color: #000000 !important;
    white-space: nowrap !important;
  }
}


/* =========================================================
   v0.2.28 — Marketing description width + microblocks height lock
   Base: v0.2.23 purchase bar + v0.2.27 title/slogan.
   - Krótki opis marketingowy uses the full remaining right column and wraps
     at the 75px safe area from the right side of the page.
   - 3 mikrobloki produktu are raised: their top sits about 150px from the
     title area for the current product-page composition.
   ========================================================= */
@media (min-width: 1181px) {
  html body.single-product .tmpe-product-page,
  html body .tmpe-product-page {
    --tmpe-desktop-right: 75px !important;
    --tmpe-copy-full-w: calc(100vw - var(--tmpe-desktop-left, 75px) - var(--tmpe-desktop-media-w, 760px) - var(--tmpe-desktop-gap, 50px) - var(--tmpe-desktop-right, 75px)) !important;
  }

  html body.single-product .tmpe-product-page .tmpe-hero,
  html body .tmpe-product-page .tmpe-hero {
    grid-template-columns: var(--tmpe-desktop-media-w, 760px) minmax(0, var(--tmpe-copy-full-w)) !important;
    column-gap: var(--tmpe-desktop-gap, 50px) !important;
  }

  html body.single-product .tmpe-product-page .tmpe-content,
  html body .tmpe-product-page .tmpe-content {
    width: var(--tmpe-copy-full-w) !important;
    max-width: var(--tmpe-copy-full-w) !important;
    min-width: 0 !important;
  }

  html body.single-product .tmpe-product-page .tmpe-title-row,
  html body .tmpe-product-page .tmpe-title-row {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 28px !important;
  }

  html body.single-product .tmpe-product-page .tmpe-intro,
  html body .tmpe-product-page .tmpe-intro {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 50px 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  html body.single-product .tmpe-product-page .tmpe-intro p,
  html body .tmpe-product-page .tmpe-intro p {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
  }

  html body.single-product .tmpe-product-page .tmpe-microblocks,
  html body .tmpe-product-page .tmpe-microblocks {
    margin-top: 0 !important;
    width: 100% !important;
    max-width: 546px !important;
  }
}

/* =========================================================
   v0.2.29 — Body text typography lock
   Required body text areas:
   - Krótki opis marketingowy
   - 3 mikrobloki produktu
   - Dolna sekcja editorial body copy
   - Informacje techniczne body copy
   Headings are not changed here.
   ========================================================= */
html body.single-product .tmpe-product-page .tmpe-intro,
html body.single-product .tmpe-product-page .tmpe-intro p,
html body.single-product .tmpe-product-page .tmpe-microblock p,
html body.single-product .tmpe-product-page .tmpe-microblock__text,
html body.single-product .tmpe-product-page .tmpe-editorial-item p,
html body.single-product .tmpe-product-page .tmpe-info-block p,
html body.single-product .tmpe-product-page .tmpe-info-block li,
html body.single-product .tmpe-product-page .tmpe-info-block pre,
html body.single-product .tmpe-product-page .tmpe-nutrition-table,
html body.single-product .tmpe-product-page .tmpe-nutrition-table th,
html body.single-product .tmpe-product-page .tmpe-nutrition-table td,
html body .tmpe-product-page .tmpe-intro,
html body .tmpe-product-page .tmpe-intro p,
html body .tmpe-product-page .tmpe-microblock p,
html body .tmpe-product-page .tmpe-microblock__text,
html body .tmpe-product-page .tmpe-editorial-item p,
html body .tmpe-product-page .tmpe-info-block p,
html body .tmpe-product-page .tmpe-info-block li,
html body .tmpe-product-page .tmpe-info-block pre,
html body .tmpe-product-page .tmpe-nutrition-table,
html body .tmpe-product-page .tmpe-nutrition-table th,
html body .tmpe-product-page .tmpe-nutrition-table td {
  font-family: "Neue Frutiger World", "Frutiger", "Inter", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 20px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

/* =========================================================
   v0.2.30 — Desktop sticky media + right-column product story
   - Desktop media becomes sticky and visually centered in the viewport.
   - Editorial and technical blocks move into the right column below purchase.
   - Right column scrolls normally; the left media stays in place while the
     product story continues.
   Mobile/tablet remains close to the previous stacked behaviour.
   ========================================================= */
@media (min-width: 1181px) {
  html body.single-product .tmpe-product-page,
  html body .tmpe-product-page {
    --tmpe-sticky-edge: 75px !important;
    --tmpe-sticky-media-top: 35px !important;
    --tmpe-sticky-media-h: calc(100vh - 70px) !important;
    overflow: visible !important;
  }

  html body.admin-bar.single-product .tmpe-product-page,
  html body.admin-bar .tmpe-product-page {
    --tmpe-sticky-media-top: 35px !important;
    --tmpe-sticky-media-h: calc(100vh - 102px) !important;
  }

  html body.single-product .tmpe-product-page .tmpe-hero,
  html body .tmpe-product-page .tmpe-hero {
    align-items: start !important;
    overflow: visible !important;
    min-height: auto !important;
  }

  html body.single-product .tmpe-product-page .tmpe-media-card,
  html body .tmpe-product-page .tmpe-media-card {
    position: sticky !important;
    top: var(--tmpe-sticky-media-top) !important;
    align-self: start !important;
    width: var(--tmpe-desktop-media-w, 760px) !important;
    height: var(--tmpe-sticky-media-h) !important;
    max-height: var(--tmpe-sticky-media-h) !important;
    min-height: 620px !important;
    margin: 0 !important;
    overflow: hidden !important;
    z-index: 1 !important;
    box-sizing: border-box !important;
  }

  html body.single-product .tmpe-product-page .tmpe-media-card img,
  html body.single-product .tmpe-product-page .tmpe-media-card video,
  html body .tmpe-product-page .tmpe-media-card img,
  html body .tmpe-product-page .tmpe-media-card video {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    display: block !important;
  }

  html body.single-product .tmpe-product-page .tmpe-content,
  html body .tmpe-product-page .tmpe-content {
    overflow: visible !important;
    padding-bottom: 90px !important;
  }

  html body.single-product .tmpe-product-page .tmpe-content > .tmpe-details,
  html body .tmpe-product-page .tmpe-content > .tmpe-details {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 82px 0 0 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-sizing: border-box !important;
  }

  html body.single-product .tmpe-product-page .tmpe-content > .tmpe-details .tmpe-editorial,
  html body .tmpe-product-page .tmpe-content > .tmpe-details .tmpe-editorial {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 58px 0 !important;
    padding: 0 !important;
  }

  html body.single-product .tmpe-product-page .tmpe-content > .tmpe-details .tmpe-editorial h2,
  html body .tmpe-product-page .tmpe-content > .tmpe-details .tmpe-editorial h2 {
    max-width: 560px !important;
    margin: 0 0 38px 0 !important;
  }

  html body.single-product .tmpe-product-page .tmpe-content > .tmpe-details .tmpe-editorial-item,
  html body .tmpe-product-page .tmpe-content > .tmpe-details .tmpe-editorial-item {
    max-width: 620px !important;
    margin: 0 0 24px 0 !important;
  }

  html body.single-product .tmpe-product-page .tmpe-content > .tmpe-details .tmpe-info-card,
  html body .tmpe-product-page .tmpe-content > .tmpe-details .tmpe-info-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 1180px) {
  html body.single-product .tmpe-product-page .tmpe-content > .tmpe-details,
  html body .tmpe-product-page .tmpe-content > .tmpe-details {
    margin-top: 48px !important;
  }
}

/* Hide WoodMart sticky/header overlay while the product page is scrolled down.
   The normal top-of-page header returns when the user scrolls back up. */
@media (min-width: 1181px) {
  html body.tmpe-product-scrolled-down.single-product .whb-header,
  html body.tmpe-product-scrolled-down .whb-header,
  html body.tmpe-product-scrolled-down.single-product .site-header,
  html body.tmpe-product-scrolled-down .site-header {
    transform: translateY(-120%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: transform 260ms ease, opacity 220ms ease !important;
  }

  html body.single-product .whb-header,
  html body .whb-header,
  html body.single-product .site-header,
  html body .site-header {
    transition: transform 260ms ease, opacity 220ms ease !important;
  }
}


/* =========================================================
   v0.2.31 — Center sticky media in viewport
   - Keeps the v0.2.30 right-column flow.
   - Does not stretch the media taller; instead centers the sticky media card
     vertically inside the visible viewport on desktop.
   ========================================================= */
@media (min-width: 1181px) {
  html body.single-product .tmpe-product-page,
  html body .tmpe-product-page {
    --tmpe-sticky-media-h: clamp(620px, 78svh, 780px) !important;
    --tmpe-sticky-media-top: max(35px, calc((100svh - var(--tmpe-sticky-media-h)) / 2)) !important;
  }

  html body.admin-bar.single-product .tmpe-product-page,
  html body.admin-bar .tmpe-product-page {
    --tmpe-sticky-media-h: clamp(620px, calc(78svh - 32px), 780px) !important;
    --tmpe-sticky-media-top: max(35px, calc((100svh - 32px - var(--tmpe-sticky-media-h)) / 2 + 32px)) !important;
  }

  html body.single-product .tmpe-product-page .tmpe-media-card,
  html body .tmpe-product-page .tmpe-media-card {
    top: var(--tmpe-sticky-media-top) !important;
    height: var(--tmpe-sticky-media-h) !important;
    max-height: var(--tmpe-sticky-media-h) !important;
    min-height: 620px !important;
  }
}


/* =========================================================
   v0.2.32 — Restore tall sticky media, keep centered fixation
   - Returns media height to the pre-0.2.31 tall viewport size.
   - Keeps the sticky media vertically centered in the visible viewport,
     especially when the WordPress admin bar is present.
   ========================================================= */
@media (min-width: 1181px) {
  html body.single-product .tmpe-product-page,
  html body .tmpe-product-page {
    --tmpe-sticky-media-h: calc(100svh - 70px) !important;
    --tmpe-sticky-media-top: max(35px, calc((100svh - var(--tmpe-sticky-media-h)) / 2)) !important;
  }

  html body.admin-bar.single-product .tmpe-product-page,
  html body.admin-bar .tmpe-product-page {
    --tmpe-sticky-media-h: calc(100svh - 102px) !important;
    --tmpe-sticky-media-top: max(35px, calc((100svh - 32px - var(--tmpe-sticky-media-h)) / 2 + 32px)) !important;
  }

  html body.single-product .tmpe-product-page .tmpe-media-card,
  html body .tmpe-product-page .tmpe-media-card {
    top: var(--tmpe-sticky-media-top) !important;
    height: var(--tmpe-sticky-media-h) !important;
    max-height: var(--tmpe-sticky-media-h) !important;
    min-height: 620px !important;
  }
}


/* =========================================================
   v0.2.33 — Lift right column slightly
   Base: v0.2.32 tall centered sticky media.
   The whole right column starts closer to the top of the media block:
   title remains slightly below media start, but higher than in v0.2.32.
   ========================================================= */
@media (min-width: 1181px) {
  html body.single-product .tmpe-product-page .tmpe-content,
  html body .tmpe-product-page .tmpe-content {
    padding-top: 18px !important;
  }
}

/* v0.2.36 — quantity gap 45px and 16px SVG icons */
@media (min-width: 1181px) {
    body .tmpe-product-page .tmpe-purchase-row {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: flex-start !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: visible !important;
    }

    body .tmpe-product-page .tmpe-purchase-group {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-end !important;
        gap: 28px !important;
        width: max-content !important;
        max-width: none !important;
        min-width: 0 !important;
        margin-left: auto !important;
        transform: translateX(var(--tmpe-purchase-shift, 0px)) !important;
        will-change: transform;
    }

    body .tmpe-product-page .tmpe-purchase-group .tmpe-action-stack {
        flex: 0 0 auto !important;
        margin-left: 0 !important;
        transform: none !important;
    }
}

body .tmpe-product-page .tmpe-qty.tmpe-qty--figma {
    width: 160px !important;
    height: 54px !important;
    min-width: 160px !important;
    max-width: 160px !important;
    flex: 0 0 160px !important;
    display: grid !important;
    grid-template-columns: 55px 50px 55px !important;
    align-items: center !important;
    justify-items: center !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #d6d6d6 !important;
    border-radius: 28px !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

body .tmpe-product-page .tmpe-qty.tmpe-qty--figma button.tmpe-qty__btn,
body .tmpe-product-page .tmpe-qty.tmpe-qty--figma button[data-tmpe-qty-minus],
body .tmpe-product-page .tmpe-qty.tmpe-qty--figma button[data-tmpe-qty-plus] {
    width: 55px !important;
    height: 54px !important;
    min-width: 55px !important;
    max-width: 55px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #000000 !important;
    border-radius: 28px !important;
    cursor: pointer !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

body .tmpe-product-page .tmpe-qty.tmpe-qty--figma .tmpe-qty__icon {
    display: block !important;
    width: 16px !important;
    height: auto !important;
    color: #000000 !important;
    pointer-events: none !important;
}

body .tmpe-product-page .tmpe-qty.tmpe-qty--figma .tmpe-qty__plus .tmpe-qty__icon {
    width: 16px !important;
    height: 16px !important;
}

body .tmpe-product-page .tmpe-qty.tmpe-qty--figma .tmpe-qty__minus .tmpe-qty__icon {
    width: 16px !important;
    height: auto !important;
}

body .tmpe-product-page .tmpe-qty.tmpe-qty--figma input.tmpe-qty__input,
body .tmpe-product-page .tmpe-qty.tmpe-qty--figma input[data-tmpe-qty-input] {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    max-width: 50px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #000000 !important;
    font-family: "Neue Frutiger World", Arial, sans-serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 50px !important;
    text-align: center !important;
    box-shadow: none !important;
    outline: none !important;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
    box-sizing: border-box !important;
}

body .tmpe-product-page .tmpe-qty.tmpe-qty--figma input.tmpe-qty__input::-webkit-outer-spin-button,
body .tmpe-product-page .tmpe-qty.tmpe-qty--figma input.tmpe-qty__input::-webkit-inner-spin-button,
body .tmpe-product-page .tmpe-qty.tmpe-qty--figma input[data-tmpe-qty-input]::-webkit-outer-spin-button,
body .tmpe-product-page .tmpe-qty.tmpe-qty--figma input[data-tmpe-qty-input]::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

@media (max-width: 1180px) {
    body .tmpe-product-page .tmpe-purchase-group {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
    }

    body .tmpe-product-page .tmpe-purchase-group .tmpe-action-stack {
        transform: none !important;
    }
}

/* v0.2.37 — quantity block spacing and true circular quantity value */
body.single-product .tmpe-product-page .tmpe-purchase-group {
  gap: 50px !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

body.single-product .tmpe-product-page .tmpe-qty--figma {
  width: 160px !important;
  min-width: 160px !important;
  max-width: 160px !important;
  height: 54px !important;
  min-height: 54px !important;
  max-height: 54px !important;
  flex: 0 0 160px !important;
  padding: 0 18px !important;
  box-sizing: border-box !important;
  display: grid !important;
  grid-template-columns: 24px 50px 24px !important;
  column-gap: 24px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 28px !important;
  background: #d6d6d6 !important;
}

body.single-product .tmpe-product-page .tmpe-qty--figma .tmpe-qty__btn {
  width: 24px !important;
  height: 54px !important;
  min-width: 24px !important;
  min-height: 54px !important;
  max-width: 24px !important;
  max-height: 54px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  box-shadow: none !important;
  transform: none !important;
}

body.single-product .tmpe-product-page .tmpe-qty--figma .tmpe-qty__icon {
  width: 16px !important;
  height: 16px !important;
  display: block !important;
  flex: 0 0 16px !important;
}

body.single-product .tmpe-product-page .tmpe-qty--figma .tmpe-qty__minus .tmpe-qty__icon {
  height: 4px !important;
  flex-basis: 16px !important;
}

body.single-product .tmpe-product-page .tmpe-qty--figma .tmpe-qty__input,
body.single-product .tmpe-product-page .tmpe-qty--figma input.tmpe-qty__input,
body.single-product .tmpe-product-page .tmpe-purchase-group .tmpe-qty--figma input[type="number"].tmpe-qty__input {
  width: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important;
  height: 50px !important;
  min-height: 50px !important;
  max-height: 50px !important;
  flex: 0 0 50px !important;
  aspect-ratio: 1 / 1 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  box-sizing: border-box !important;
  background: #fff !important;
  color: #000 !important;
  font-family: "Neue Frutiger World", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 50px !important;
  text-align: center !important;
  box-shadow: none !important;
  outline: none !important;
  appearance: textfield !important;
  -moz-appearance: textfield !important;
  -webkit-appearance: none !important;
}

body.single-product .tmpe-product-page .tmpe-qty--figma .tmpe-qty__input::-webkit-outer-spin-button,
body.single-product .tmpe-product-page .tmpe-qty--figma .tmpe-qty__input::-webkit-inner-spin-button {
  margin: 0 !important;
  -webkit-appearance: none !important;
}

@media (max-width: 768px) {
  body.single-product .tmpe-product-page .tmpe-purchase-group {
    gap: 18px !important;
  }
}


/* v0.2.38 — quantity icons centered in their own zones */
body.single-product .tmpe-product-page .tmpe-purchase-group {
  gap: 50px !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

body.single-product .tmpe-product-page .tmpe-qty.tmpe-qty--figma,
body.single-product .tmpe-product-page .tmpe-purchase-group .tmpe-qty.tmpe-qty--figma {
  width: 160px !important;
  min-width: 160px !important;
  max-width: 160px !important;
  height: 54px !important;
  min-height: 54px !important;
  max-height: 54px !important;
  flex: 0 0 160px !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  display: grid !important;
  grid-template-columns: 55px 50px 55px !important;
  column-gap: 0 !important;
  row-gap: 0 !important;
  align-items: center !important;
  justify-items: center !important;
  justify-content: center !important;
  border-radius: 28px !important;
  background: #d6d6d6 !important;
  overflow: visible !important;
}

body.single-product .tmpe-product-page .tmpe-qty.tmpe-qty--figma .tmpe-qty__btn,
body.single-product .tmpe-product-page .tmpe-purchase-group .tmpe-qty.tmpe-qty--figma .tmpe-qty__btn,
body.single-product .tmpe-product-page .tmpe-qty.tmpe-qty--figma button[data-tmpe-qty-minus],
body.single-product .tmpe-product-page .tmpe-qty.tmpe-qty--figma button[data-tmpe-qty-plus] {
  width: 55px !important;
  min-width: 55px !important;
  max-width: 55px !important;
  height: 54px !important;
  min-height: 54px !important;
  max-height: 54px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 28px !important;
  background: transparent !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: center !important;
  align-self: center !important;
  line-height: 1 !important;
  transform: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

body.single-product .tmpe-product-page .tmpe-qty.tmpe-qty--figma .tmpe-qty__minus {
  grid-column: 1 !important;
}

body.single-product .tmpe-product-page .tmpe-qty.tmpe-qty--figma .tmpe-qty__plus {
  grid-column: 3 !important;
}

body.single-product .tmpe-product-page .tmpe-qty.tmpe-qty--figma .tmpe-qty__icon {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
  display: block !important;
  flex: 0 0 16px !important;
  pointer-events: none !important;
  color: #000000 !important;
}

body.single-product .tmpe-product-page .tmpe-qty.tmpe-qty--figma .tmpe-qty__minus .tmpe-qty__icon {
  width: 16px !important;
  height: auto !important;
  min-width: 16px !important;
  max-width: 16px !important;
  flex-basis: 16px !important;
}

body.single-product .tmpe-product-page .tmpe-qty.tmpe-qty--figma .tmpe-qty__input,
body.single-product .tmpe-product-page .tmpe-qty.tmpe-qty--figma input.tmpe-qty__input,
body.single-product .tmpe-product-page .tmpe-purchase-group .tmpe-qty.tmpe-qty--figma input[type="number"].tmpe-qty__input {
  grid-column: 2 !important;
  width: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important;
  height: 50px !important;
  min-height: 50px !important;
  max-height: 50px !important;
  flex: 0 0 50px !important;
  aspect-ratio: 1 / 1 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  display: block !important;
  background: #ffffff !important;
  color: #000000 !important;
  font-family: "Neue Frutiger World", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 50px !important;
  text-align: center !important;
  box-shadow: none !important;
  outline: none !important;
  appearance: textfield !important;
  -moz-appearance: textfield !important;
  -webkit-appearance: none !important;
}

@media (max-width: 768px) {
  body.single-product .tmpe-product-page .tmpe-purchase-group {
    gap: 18px !important;
  }
}


/* v0.2.39 — purchase bar vertical inset correction
   Keep the grey purchase background visually balanced: 10px top / 10px bottom,
   with 53px inner controls centered vertically. */
.tmpe-product-page {
    --tmpe-purchase-pad: 10px;
    --tmpe-control-height: 53px;
    --tmpe-purchase-height: 73px;
}

.tmpe-action-stack .tmpe-action-combo,
.tmpe-product-page .tmpe-action-combo {
    height: var(--tmpe-purchase-height) !important;
    min-height: var(--tmpe-purchase-height) !important;
    max-height: var(--tmpe-purchase-height) !important;
    padding-top: var(--tmpe-purchase-pad) !important;
    padding-bottom: var(--tmpe-purchase-pad) !important;
    box-sizing: border-box !important;
    align-items: center !important;
}

.tmpe-action-stack .tmpe-variant-switch,
.tmpe-product-page .tmpe-variant-switch,
.tmpe-action-stack .tmpe-add-button,
.tmpe-product-page .tmpe-add-button {
    height: var(--tmpe-control-height) !important;
    min-height: var(--tmpe-control-height) !important;
    max-height: var(--tmpe-control-height) !important;
    align-self: center !important;
}

.tmpe-action-stack .tmpe-variant-switch {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.tmpe-action-stack .tmpe-add-button {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

/* v0.2.40 — purchase bar exact 10px vertical inset
   The background container is fixed to 73px. Inner selectable block and buy button are fixed to 53px and pinned at top:10px,
   so bottom inset is exactly 10px too. This avoids center/transform rounding that could make the bottom look 12px. */
.tmpe-product-page .tmpe-action-combo {
    height: 73px !important;
    min-height: 73px !important;
    max-height: 73px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    box-sizing: border-box !important;
}

.tmpe-product-page .tmpe-action-combo .tmpe-variant-switch,
.tmpe-product-page .tmpe-action-combo .tmpe-add-button {
    top: 10px !important;
    bottom: auto !important;
    transform: none !important;
    height: 53px !important;
    min-height: 53px !important;
    max-height: 53px !important;
    box-sizing: border-box !important;
}
