/** Shopify CDN: Minification failed

Line 254:0 Unexpected "("
Line 2370:0 Unexpected "}"

**/
/*
============================================================
ZB MODE — KEEP READING IMAGE ALIGNMENT
============================================================
*/

body.template-product product-recommendations {
  --zb-card-padding: 3%;
}

/*
המעטפת הראשית של שתי התמונות
*/
body.template-product
product-recommendations
.grid-product__image-mask {
  position: relative !important;
  overflow: hidden !important;
  background: #fff !important;
}

/*
נועל את גובה אזור התמונה ליחס המדויק של התמונות: 4:5
*/
body.template-product
product-recommendations
.grid__image-ratio.grid__image-ratio--portrait {
  position: relative !important;

  width: 100% !important;
  height: auto !important;
  padding-bottom: 0 !important;

  aspect-ratio: 4 / 5 !important;

  overflow: hidden !important;
  background: #fff !important;
}

/*
תמונה מספר 2 משתמשת בדיוק באותו שטח
*/
body.template-product
product-recommendations
.grid-product__secondary-image {
  position: absolute !important;
  inset: 0 !important;

  width: 100% !important;
  height: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden !important;
  background: #fff !important;
}

/*
שתי מעטפות התמונות מוצמדות לאותו קו תחתון
*/
body.template-product
product-recommendations
.grid__image-ratio
> image-element,

body.template-product
product-recommendations
.grid-product__secondary-image
> image-element {
  position: absolute !important;
  inset: 0 !important;

  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;

  width: 100% !important;
  height: 100% !important;

  margin: 0 !important;
  padding: var(--zb-card-padding) !important;

  box-sizing: border-box !important;
  transform: none !important;
}

/*
שתי התמונות עצמן מקבלות אותו גודל ואותו יישור
*/
body.template-product
product-recommendations
.grid__image-ratio
img.image-element,

body.template-product
product-recommendations
.grid-product__secondary-image
img.image-element {
  position: static !important;

  display: block !important;

  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  box-sizing: border-box !important;

  object-fit: contain !important;
  object-position: center bottom !important;

  background: #fff !important;
  transform: none !important;
}

/*
לא נוגעים ב-opacity של תמונה 2,
כדי שמעבר ה-Hover המקורי של Motion יישאר פעיל.
*/


/*
============================================================
ZB MODE — HIDE COLOR SELECTOR

מסתיר רק את ממשק בחירת הצבע בעמוד המוצר.
הצבע והווריאנט נשארים במוצר, בהזמנה ובחיבור ל-POD.
============================================================
*/

body.template-product
.variant-wrapper:has([name="Color" i]) {
  display: none !important;
}

/*
============================================================
ZB MODE — HIDE SHOP PAY INSTALLMENTS MESSAGE

מסתיר רק את הודעת:
Pay in 4 interest-free installments...

Shop Pay נשאר זמין כאמצעי תשלום ב-Checkout.
============================================================
*/

body.template-product shopify-payment-terms,
body.template-product .shopify-payment-terms,
body.template-product [data-product-payment-terms] {
  display: none !important;
}


/*
============================================================
ZB MODE — ADD TO CART BUTTON
============================================================
*/

body.template-product button[name="add"],
body.template-product [data-add-to-cart] {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;

  width: 100% !important;
  min-height: 54px !important;

  padding: 14px 24px !important;

  border: 1px solid #e8347d !important;
  background: #e8347d !important;
  color: #ffffff !important;

  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;

  transition:
    background-color 250ms ease,
    border-color 250ms ease,
    color 250ms ease !important;
}

/*
החץ
*/
body.template-product button[name="add"]::after,
body.template-product [data-add-to-cart]::after {
  content: "→";

  display: inline-block;

  font-size: 21px;
  line-height: 1;

  transform: translateX(0) scale(1);

  transition:
    transform 250ms cubic-bezier(.22, 1, .36, 1),
    font-size 250ms cubic-bezier(.22, 1, .36, 1);
}

/*
Hover
*/
body.template-product button[name="add"]:hover,
body.template-product [data-add-to-cart]:hover {
  border-color: #111111 !important;
  background: #111111 !important;
  color: #ffffff !important;
}

body.template-product button[name="add"]:hover::after,
body.template-product [data-add-to-cart]:hover::after {
  transform: translateX(4px) scale(1.18);
}

/*
במצב לא זמין / Sold out
*/
body.template-product button[name="add"]:disabled,
body.template-product [data-add-to-cart]:disabled {
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}

body.template-product button[name="add"]:disabled::after,
body.template-product [data-add-to-cart]:disabled::after {
  display: none;
}



/*
============================================================
ZB MODE — PRODUCT PAGE
CUSTOM ADD TO CART TEXT
============================================================
*/

(function () {
  const ZB_TEXT = 'PUT A ZB ON YOU';

  function getButtonText(button) {
    return button.textContent.trim().toLowerCase();
  }

  function isUnavailable(button) {
    const text = getButtonText(button);

    return (
      button.disabled ||
      text.includes('sold out') ||
      text.includes('unavailable') ||
      text.includes('coming soon')
    );
  }

  function replaceButtonText(button) {
    if (!button || isUnavailable(button)) {
      return;
    }

    const possibleTextElements = [
      button.querySelector('[data-add-to-cart-text]'),
      button.querySelector('.btn__text'),
      button.querySelector('.add-to-cart-text'),
      button.querySelector('.product-form__submit-text'),
      button.querySelector('span')
    ].filter(Boolean);

    if (possibleTextElements.length) {
      const textElement = possibleTextElements[0];

      if (textElement.textContent.trim() !== ZB_TEXT) {
        textElement.textContent = ZB_TEXT;
      }

      return;
    }

    /*
     * אם המלל נמצא ישירות בתוך הכפתור,
     * מחליפים רק את Text Node ולא מוחקים אייקונים.
     */
    const textNode = Array.from(button.childNodes).find(function (node) {
      return (
        node.nodeType === Node.TEXT_NODE &&
        node.textContent.trim().length > 0
      );
    });

    if (textNode) {
      textNode.textContent = ' ' + ZB_TEXT + ' ';
    }
  }

  function updateButtons() {
    const buttons = document.querySelectorAll(
      'body.template-product button[name="add"],' +
      'body.template-product [data-add-to-cart]'
    );

    buttons.forEach(replaceButtonText);
  }

  function start() {
    updateButtons();

    const observer = new MutationObserver(function () {
      window.requestAnimationFrame(updateButtons);
    });

    observer.observe(document.body, {
      childList: true,
      subtree: true,
      characterData: true
    });

    document.addEventListener('change', function (event) {
      if (
        event.target.matches(
          'input[name="Size"], input[type="radio"], select'
        )
      ) {
        window.setTimeout(updateButtons, 50);
      }
    });
  }

  if (document.readyState === 'loading') {
    document.addEventListener('DOMContentLoaded', start);
  } else {
    start();
  }
})();


/*
============================================================
ZB MODE — SHARE THIS CHAPTER
============================================================
*/

body.template-product .zb-social-sharing {
  margin-top: 26px;
  padding-top: 22px;

  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

body.template-product .zb-social-sharing__heading {
  margin-bottom: 14px;

  color: #111111;

  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.template-product .zb-social-sharing__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 10px 40px;
}

body.template-product .zb-social-sharing__button {
  appearance: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  min-height: 30px;
  margin: 0;
  padding: 0;

  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;

  background: transparent;
  color: #111111;

  cursor: pointer;

  font: inherit;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;

  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    color 220ms ease,
    border-color 220ms ease;
}

body.template-product .zb-social-sharing__button:hover,
body.template-product .zb-social-sharing__button:focus-visible {
  border-bottom-color: #e8347d;
  color: #e8347d;
}

body.template-product .zb-social-sharing__arrow,
body.template-product .zb-social-sharing__copy-icon {
  display: inline-block;

  font-size: 15px;
  font-weight: 400;
  line-height: 1;

  transform: translateX(0) scale(1);

  transition:
    transform 250ms cubic-bezier(.22, 1, .36, 1);
}

body.template-product
.zb-social-sharing__button:hover
.zb-social-sharing__arrow,

body.template-product
.zb-social-sharing__button:focus-visible
.zb-social-sharing__arrow {
  transform: translateX(3px) scale(1.12);
}

body.template-product
.zb-social-sharing__button:hover
.zb-social-sharing__copy-icon,

body.template-product
.zb-social-sharing__button:focus-visible
.zb-social-sharing__copy-icon {
  transform: scale(1.1);
}

body.template-product .zb-social-sharing__status {
  min-height: 17px;
  margin-top: 10px;

  color: #e8347d;

  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;

  letter-spacing: 0.14em;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(3px);
  visibility: hidden;

  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

body.template-product
.zb-social-sharing__status.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

@media screen and (max-width: 749px) {

  body.template-product .zb-social-sharing__heading {
    width: 100%;
    text-align: left !important;
  }

  body.template-product .zb-social-sharing__actions {
    gap: 8px 15px;
  }

  body.template-product .zb-social-sharing__button {
    font-size: 9px;
  }
}

/*
============================================================
END — ZB MODE SHARE THIS CHAPTER
============================================================
*/


/*
============================================================
ZB MODE — SIZE & FIT
============================================================
*/

body.template-product .zb-size-guide {
  width: 100%;
}

body.template-product .zb-size-guide__trigger {
  appearance: none;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-height: 52px;

  margin: 0;
  padding: 15px 0;

  border: 0;
  

  background: transparent;
  color: #111111;

  cursor: pointer;

  body.template-product .zb-size-guide__trigger {
  appearance: none;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-height: 52px;

  margin: 0;
  padding: 15px 0;

  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);

  background: transparent;
  color: #111111;

  cursor: pointer;

  text-align: left;
  text-transform: uppercase;
}

  text-align: left;
  text-transform: uppercase;
}

body.template-product .zb-size-guide__trigger-icon {
  display: inline-block;

  color: #111111;

  font-size: 19px;
  font-weight: 300;
  line-height: 1;

  transform: rotate(0deg);
  transition:
    color 220ms ease,
    transform 300ms cubic-bezier(.22, 1, .36, 1);
}

body.template-product .zb-size-guide__trigger:hover {
  color: #e8347d;
}

body.template-product
.zb-size-guide__trigger:hover
.zb-size-guide__trigger-icon {
  color: #e8347d;
  transform: rotate(90deg);
}

/*
------------------------------------------------------------
DIALOG
------------------------------------------------------------
*/

body.template-product .zb-size-guide__dialog {
  width: min(920px, calc(100vw - 40px));
  max-width: 920px;
  max-height: min(88vh, 900px);

  margin: auto;
  padding: 0;

  border: 0;
  border-radius: 25px;

  background: #ffffff;
  color: #111111;

  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);

  overflow: hidden;
}

body.template-product .zb-size-guide__dialog::backdrop {
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(3px);
}

body.template-product .zb-size-guide__panel {
  max-height: min(88vh, 900px);
  padding: 38px 42px 34px;

  overflow-y: auto;
  overscroll-behavior: contain;
}

/*
------------------------------------------------------------
HEADER
------------------------------------------------------------
*/

body.template-product .zb-size-guide__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 24px;

  margin-bottom: 22px;
}

body.template-product .zb-size-guide__eyebrow {
  margin-bottom: 8px;

  color: #e8347d;

  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.template-product .zb-size-guide__title {
  margin: 0;

  color: #111111;

  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.1;

  letter-spacing: -0.01em;
  text-transform: uppercase;
}

body.template-product .zb-size-guide__close {
  appearance: none;

  display: grid;
  place-items: center;

  flex: 0 0 auto;

  width: 40px;
  height: 40px;

  margin: -19px -20px 0 0;
  padding: 0;

  border: 0;
  border-radius: 0;

  background: transparent;
  color: #111111;

  cursor: pointer;

  font: inherit;
  font-size: 27px;
  font-weight: 300;
  line-height: 1;

  transition:
    color 220ms ease,
    transform 220ms ease;
}

body.template-product .zb-size-guide__close:hover {
  background: transparent;
  color: #e8347d;
  transform: rotate(90deg);
}



body.template-product .zb-size-guide__fit-description {
  max-width: 650px;
  margin-bottom: 24px;

  color: rgba(17, 17, 17, 0.74);

  font-size: 14px;
  line-height: 1.65;
}

/*
------------------------------------------------------------
UNIT TOGGLE
------------------------------------------------------------
*/

body.template-product .zb-size-guide__units {
  display: inline-flex;

  margin-bottom: 18px;
  padding: 3px;

  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;

  background: #f5f5f5;
}

body.template-product .zb-size-guide__unit {
  appearance: none;

  min-width: 58px;
  min-height: 34px;

  padding: 7px 15px;

  border: 0;
  border-radius: 999px;

  background: transparent;
  color: #111111;

  cursor: pointer;

  font: inherit;
  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  transition:
    background-color 220ms ease,
    color 220ms ease;
}

body.template-product .zb-size-guide__unit.is-active {
  background: #111111;
  color: #ffffff;
}

/*
------------------------------------------------------------
TABLE
------------------------------------------------------------
*/

body.template-product .zb-size-guide__table-panel[hidden] {
  display: none !important;
}

body.template-product .zb-size-guide__table-scroll {
  width: 100%;

  border: 1px solid rgba(17, 17, 17, 0.13);

  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

body.template-product .zb-size-guide__table {
  width: 100%;
  min-width: 650px;

  border-collapse: collapse;
  table-layout: fixed;

  color: #111111;

  font-size: 13px;
  line-height: 1.35;
}

body.template-product .zb-size-guide__table th,
body.template-product .zb-size-guide__table td {
  padding: 15px 13px;

  border-right: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);

  text-align: center;
  vertical-align: middle;
}

body.template-product .zb-size-guide__table th:last-child,
body.template-product .zb-size-guide__table td:last-child {
  border-right: 0;
}

body.template-product .zb-size-guide__table tbody tr:last-child th,
body.template-product .zb-size-guide__table tbody tr:last-child td {
  border-bottom: 0;
}

body.template-product .zb-size-guide__table thead th {
  background: #f3f3f3;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.template-product .zb-size-guide__table thead th:first-child,
body.template-product .zb-size-guide__table tbody th {
  width: 165px;
}

body.template-product .zb-size-guide__table tbody th {
  background: #fafafa;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.04em;
  text-align: left;
}

/*
------------------------------------------------------------
HOW TO MEASURE
------------------------------------------------------------
*/

body.template-product .zb-size-guide__measurement-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);

  gap: 36px;

  margin-top: 34px;
  padding-top: 30px;

  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

body.template-product .zb-size-guide__measurement-section:has(
  .zb-size-guide__instructions:only-child
) {
  grid-template-columns: 1fr;
}

body.template-product .zb-size-guide__diagram-wrap {
  display: grid;
  place-items: center;

  min-height: 240px;
  padding: 20px;

  background: #f5f5f5;
}

body.template-product .zb-size-guide__diagram {
  display: block;

  width: 100%;
  height: auto;
  max-height: 330px;

  object-fit: contain;
}

body.template-product .zb-size-guide__instructions h3 {
  margin: 0 0 16px;

  color: #111111;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.template-product .zb-size-guide__instructions-text {
  color: rgba(17, 17, 17, 0.78);

  font-size: 13px;
  line-height: 1.9;
}

body.template-product .zb-size-guide__note {
  margin-top: 28px;
  padding: 15px 18px;

  border-left: 2px solid #e8347d;

  background: rgba(232, 52, 125, 0.055);
  color: rgba(17, 17, 17, 0.68);

  font-size: 11px;
  line-height: 1.6;
}

/*
------------------------------------------------------------
MOBILE
------------------------------------------------------------
*/

@media screen and (max-width: 749px) {
  body.template-product .zb-size-guide__dialog {
    width: 100%;
    max-width: none;
    max-height: 92vh;

    margin: auto 0 0;

    border-radius: 14px 14px 0 0;
  }

  body.template-product .zb-size-guide__panel {
    max-height: 92vh;
    padding: 28px 20px 26px;
  }

  body.template-product .zb-size-guide__title {
    font-size: 25px;
  }

  body.template-product .zb-size-guide__table-scroll {
    margin-right: -20px;
    padding-right: 20px;

    border-right: 0;
  }

  body.template-product .zb-size-guide__measurement-section {
    grid-template-columns: 1fr;

    gap: 24px;
  }

  body.template-product .zb-size-guide__table {
    min-width: 600px;
  }

  body.template-product .zb-size-guide__table th,
  body.template-product .zb-size-guide__table td {
    padding: 13px 11px;
  }
}

/*
============================================================
END — ZB MODE SIZE & FIT
============================================================
*/



/*
============================================================
ZB MODE — ASK A QUESTION
============================================================
*/

body.template-product .zb-ask-question {
  width: 100%;
}

body.template-product .zb-ask-question__trigger {
  margin-top: 0px;
}

body.template-product .zb-ask-question__intro {
  max-width: 620px;
  margin-bottom: 22px;

  color: rgba(17, 17, 17, 0.72);

  font-size: 14px;
  line-height: 1.65;
}

body.template-product .zb-ask-question__product {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 28px;
  padding: 14px 16px;

  border-left: 2px solid #e8347d;

  background: rgba(232, 52, 125, 0.055);
}

body.template-product .zb-ask-question__product span {
  color: #e8347d;

  font-size: 9px;
  font-weight: 600;
  line-height: 1.2;

  letter-spacing: 0.16em;
}

body.template-product .zb-ask-question__product strong {
  color: #111111;

  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;

  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* FORM */

body.template-product .zb-ask-question__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 20px;
}

body.template-product .zb-ask-question__field {
  display: flex;
  flex-direction: column;

  gap: 9px;
}

body.template-product .zb-ask-question__field--full {
  grid-column: 1 / -1;
}

body.template-product .zb-ask-question__field label {
  margin: 0;

  color: #111111;

  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.template-product .zb-ask-question__field input,
body.template-product .zb-ask-question__field textarea {
  appearance: none;

  width: 100%;
  margin: 0;
  padding: 14px 15px;

  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 10px;
  outline: none;

  background: #ffffff;
  color: #111111;

  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

body.template-product .zb-ask-question__field textarea {
  min-height: 150px;
  resize: vertical;
}

body.template-product .zb-ask-question__field input:focus,
body.template-product .zb-ask-question__field textarea:focus {
  border-color: #e8347d;
  box-shadow: 0 0 0 2px rgba(232, 52, 125, 0.1);
}

/* SUBMIT */

body.template-product .zb-ask-question__submit {
  appearance: none;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-height: 54px;

  margin-top: 24px;
  padding: 15px 20px;

  border: 1px solid #e8347d;
  border-radius: 10px;

  background: #e8347d;
  color: #ffffff;

  cursor: pointer;

  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;

  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;

  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

body.template-product .zb-ask-question__submit:hover {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

body.template-product .zb-ask-question__submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

body.template-product .zb-ask-question__submit span:last-child {
  font-size: 19px;
  font-weight: 300;
  line-height: 1;

  transition: transform 220ms ease;
}

body.template-product
.zb-ask-question__submit:hover
span:last-child {
  transform: translateX(4px);
}

body.template-product .zb-ask-question__privacy {
  margin-top: 12px;

  color: rgba(17, 17, 17, 0.52);

  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

/* MESSAGES */

body.template-product .zb-ask-question__success,
body.template-product .zb-ask-question__errors {
  padding: 22px;

  border-left: 2px solid #e8347d;

  background: rgba(232, 52, 125, 0.06);
  color: #111111;
}

body.template-product .zb-ask-question__success {
  display: flex;
  flex-direction: column;

  gap: 10px;
}

body.template-product .zb-ask-question__success strong {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
}

body.template-product .zb-ask-question__success span,
body.template-product .zb-ask-question__errors {
  font-size: 13px;
  line-height: 1.6;
}

body.template-product .zb-ask-question__errors {
  margin-bottom: 22px;
}

/* MOBILE */

@media screen and (max-width: 749px) {
  body.template-product .zb-ask-question__fields {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.template-product .zb-ask-question__field--full {
    grid-column: auto;
  }

  body.template-product .zb-ask-question__product {
    align-items: flex-start;
    flex-direction: column;

    gap: 6px;
  }
}



/* =========================================
   ZB PRODUCT — CHAPTER NUMBER + GARMENT TYPE
   ========================================= */

.product-single__meta
[data-product-blocks]
> .product-block:has(> .rte > p > br)
> .rte
> p {
  margin: 0;

  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.01em;

  color: rgba(17, 17, 17, 0.58);
}

/* CHAPTER 04 */
.product-single__meta
[data-product-blocks]
> .product-block:has(> .rte > p > br)
> .rte
> p::first-line {
  color: #e8347d;
  font-weight: 300;
}




/* =========================================
   ZB PRODUCT — CHAPTER QUOTE
   MOBILE
   ========================================= */

@media only screen and (max-width: 768px) {

  .zb-chapter-quote {
    box-sizing: border-box;

    display: block;
    width: 100%;
    max-width: 100%;

    margin: 20px auto 28px;
    padding: 0 30px;

    text-indent: 0;
    text-align: center;

    font-size: 18px;
    line-height: 1.45;
  }

  .zb-chapter-quote::before {
    top: -5px;
    left: 8px;

    font-size: 30px;
  }

  .zb-chapter-quote::after {
    right: 8px;
    bottom: -11px;

    font-size: 30px;
  }

}


/* =========================================
   ZB PRODUCT — CHAPTER QUOTE
   DESKTOP
   ========================================= */

.zb-chapter-quote {
  position: relative;

  display: block;
  width: fit-content;
  max-width: 430px;

  margin: 8px auto;
  padding: 0 28px 0 24px;

  text-indent: -24px;

  font-size: 18px;
  font-weight: 100;
  font-style: italic;
  line-height: 1.45;
  letter-spacing: -0.01em;

  color: #111111;
}

/* Opening quotation mark */
.zb-chapter-quote::before {
  content: "“";

  position: absolute;
  top: -7px;
  left: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;

  color: #e8347d;
}

/* Closing quotation mark */
.zb-chapter-quote::after {
  content: "”";

  position: absolute;
  right: 0;
  bottom: -13px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;

  color: #e8347d;
}








/* =========================================================
   ZB PRODUCT — STORY / TEE EDITORIAL TABS
   ========================================================= */

.zb-story-tabs {
  width: 100%;
  margin: 38px 0 26px;
}

.zb-story-tabs__nav {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
}

/* ---------------------------------------------------------
   TAB NAV
   --------------------------------------------------------- */

.zb-story-tabs__nav {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;

  gap: 8px;
}


/* ---------------------------------------------------------
   TAB BUTTON
   --------------------------------------------------------- */

.zb-story-tabs__tab {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  min-width: 0;
  min-height: 92px;

  margin: 0;
  padding: 18px 20px;

  border: 1px solid #d9d9d9;
  border-bottom-color: #d9d9d9;
  border-radius: 18px 18px 0 0;

  background: #ffffff;

  color: rgba(17, 17, 17, 0.34);

  text-align: left;
  cursor: pointer;

  transform: none;

  transition:
    color 250ms ease,
    border-color 250ms ease;
}


/* Pink underline */
.zb-story-tabs__tab::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: -1px;

  height: 2px;

  background: #e8347d;

  transform: scaleX(0);
  transform-origin: right center;

  transition:
    transform 320ms cubic-bezier(.22, 1, .36, 1);

  z-index: 5;
}


/* Hover — pink line enters from the right */
.zb-story-tabs__tab:hover::after {
  transform: scaleX(1);
}


/* Active tab */
.zb-story-tabs__tab.is-active {
  z-index: 3;

  background: #ffffff;
  color: #111111;

  border-color: #d9d9d9;
  border-bottom-color: transparent;

  transform: none;
}


/* Active pink line stays visible */
.zb-story-tabs__tab.is-active::after {
  transform: scaleX(1);
}


/* Keyboard focus */
.zb-story-tabs__tab:focus-visible {
  outline: 4px solid #e8347d;
  outline-offset: 3px;
}


/* ---------------------------------------------------------
   TAB TYPOGRAPHY
   --------------------------------------------------------- */

.zb-story-tabs__tab-title {
  display: block;

  color: rgba(17, 17, 17, 0.36);

  font-size: 13px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.055em;

  text-transform: uppercase;

  transition: color 250ms ease;
}

.zb-story-tabs__tab-subtitle {
  display: block;

  margin-top: 7px;

  color: rgba(17, 17, 17, 0.32);

  font-size: 12px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0;

  text-transform: none;

  transition: color 250ms ease;
}


/* Hover typography */
.zb-story-tabs__tab:hover .zb-story-tabs__tab-title {
  color: rgba(17, 17, 17, 0.7);
}

.zb-story-tabs__tab:hover .zb-story-tabs__tab-subtitle {
  color: rgba(17, 17, 17, 0.58);
}


/* Active typography */
.zb-story-tabs__tab.is-active .zb-story-tabs__tab-title {
  color: #e8347d;
}

.zb-story-tabs__tab.is-active .zb-story-tabs__tab-subtitle {
  color: #111111;
}


/* ---------------------------------------------------------
   CONTENT AREA
   --------------------------------------------------------- */

.zb-story-tabs__content {
  position: relative;
  z-index: 2;

  min-height: 180px;
  margin-top: -1px;
  padding: 30px;

  border: 1px solid #d9d9d9;
  border-radius: 0 0 20px 20px;

  background: #ffffff;
}

.zb-story-tabs__panel[hidden] {
  display: none !important;
}

.zb-story-tabs__panel.is-active {
  animation: zb-story-tab-in 0.28s ease both;
}

@keyframes zb-story-tab-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------------------------------------------------------
   STORY CONTENT
   --------------------------------------------------------- */

.zb-story-tabs__story {
  max-width: 650px;

  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;

  color: #111111;
}

.zb-story-tabs__story > :first-child {
  margin-top: 0;
}

.zb-story-tabs__story > :last-child {
  margin-bottom: 0;
}

.zb-story-tabs__story p {
  margin: 0 0 18px;
}

/* ---------------------------------------------------------
   TECHNICAL CONTENT
   --------------------------------------------------------- */

.zb-story-tabs__technical {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 26px;
}

.zb-story-tabs__detail {
  min-width: 0;
}

.zb-story-tabs__detail-title {
  margin: 0 0 8px;

  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.07em;

  color: #e8347d;
  text-transform: uppercase;
}

.zb-story-tabs__detail-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;

  color: #111111;
}

/* ---------------------------------------------------------
   TEMPORARY EMPTY STATE
   --------------------------------------------------------- */

.zb-story-tabs__empty {
  margin: 0;

  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  font-style: italic;

  color: rgba(17, 17, 17, 0.52);
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media only screen and (max-width: 768px) {
  .zb-story-tabs {
    margin: 24px 0 22px;
  }

  .zb-story-tabs__nav {
    gap: 5px;
  }

  .zb-story-tabs__tab {
    min-height: 88px;
    padding: 15px 12px;

    border-radius: 14px 14px 0 0;

  }

  .zb-story-tabs__tab.is-active {
  }

  .zb-story-tabs__tab-title {
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .zb-story-tabs__tab-subtitle {
    margin-top: 6px;

    font-size: 10px;
    line-height: 1.3;
  }

  .zb-story-tabs__content {
    min-height: 160px;
    padding: 24px 20px;

    border-radius: 0 0 16px 16px;
  }

  .zb-story-tabs__story {
    font-size: 15px;
    line-height: 1.7;
  }

  .zb-story-tabs__technical {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .zb-story-tabs__detail-text {
    font-size: 14px;
  }
}

/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .zb-story-tabs__tab {
    transition: none;
  }

  .zb-story-tabs__panel.is-active {
    animation: none;
  }
}


/* =========================================================
   ZB PRODUCT — SIZE SELECTOR HEADING + INLINE GUIDE
   ========================================================= */

.zb-size-selector-heading {
  display: block;
  margin: 0 0 14px;
  padding: 0;
}

/* CHOOSE YOUR ZB SIZE */
.zb-size-selector-heading__title {
  margin: 0 0 3px;
  padding: 0;

  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;

  color: #111111;
}

/* SIZE AND FIT GUIDE */
.zb-size-selector-heading__guide {
  appearance: none !important;
  -webkit-appearance: none !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 4px !important;

  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;

  font-family: inherit !important;
  font-size: 10px !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.04em !important;

  color: rgba(17, 17, 17, 0.58) !important;
  text-transform: uppercase !important;
  text-decoration: none !important;

  cursor: pointer;
}

/* Tiny ruler — approximately the size of a lowercase character */
.zb-size-selector-heading__icon {
  display: block !important;

  width: 20px !important;
  height: 20px !important;
  min-width: 16px !important;
  max-width: 16px !important;

  flex: 0 0 10px !important;

  margin: 0 !important;
  padding: 0 !important;

  color: currentColor;
}

/* Hover */
.zb-size-selector-heading__guide:hover {
  color: #e8347d !important;
}

/* Keyboard accessibility */
.zb-size-selector-heading__guide:focus-visible {
  color: #e8347d !important;
  outline: 1px solid #e8347d !important;
  outline-offset: 3px;
}

/* Remove Motion's normal product-block spacing around this tiny block */
.product-block:has(.zb-size-selector-heading) {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
}

@media only screen and (max-width: 768px) {
  .zb-size-selector-heading {
    margin-bottom: 12px;
  }

  .zb-size-selector-heading__title {
    margin-bottom: 6px;
    font-size: 15px;
  }

  .zb-size-selector-heading__guide {
    font-size: 10px !important;
  }

  .zb-size-selector-heading__icon {
    width: 9px !important;
    height: 9px !important;
    min-width: 9px !important;
    max-width: 9px !important;
    flex-basis: 9px !important;
  }
}


/* =========================================================
   ZB SIZE GUIDE — INTERACTIVE MEASUREMENT SYSTEM
   ========================================================= */


/* ---------------------------------------------------------
   FIT DESCRIPTION + UNIT SWITCH
   --------------------------------------------------------- */

.zb-size-guide__fit-row {
  display: flex;
  align-items: center;

  gap: 24px;

  margin: 6px 0 10px;
}


.zb-size-guide__fit-row .zb-size-guide__units {
  flex: 0 0 auto;

  margin: 0 !important;
  padding: 0 !important;
}


.zb-size-guide__fit-row .zb-size-guide__fit-description {
  flex: 1 1 auto;
  min-width: 0;

  margin: 0 !important;
  padding: 0 !important;

  font-size: 13px;
  line-height: 1.35;
}


/* ---------------------------------------------------------
   MEASUREMENT AREA
   LEFT = HOW TO MEASURE
   RIGHT = T-SHIRT
   --------------------------------------------------------- */

.zb-size-guide__measurement-section {
  display: grid !important;

  grid-template-columns:
    minmax(0, 1.3fr)
    minmax(190px, 0.7fr) !important;

  gap: 28px !important;

  align-items: center !important;

  /* No unnecessary divider below table */
  border-top: 0 !important;

  margin-top: 10px !important;
  padding-top: 0 !important;
}


/* ---------------------------------------------------------
   HOW TO MEASURE
   --------------------------------------------------------- */

.zb-size-guide__instructions {
  min-width: 0;
  order: 1;
}


.zb-size-guide__instruction-row {
  position: relative;

  margin: 0 0 6px;
  padding: 1px 0;

  color: #555555;

  cursor: pointer;

  transition:
    color 0.18s ease;
}


.zb-size-guide__instruction-row:last-child {
  margin-bottom: 0;
}


/* ACTIVE INSTRUCTION */

.zb-size-guide__instruction-row.is-zb-measure-active {
  color: #e8347d !important;
}


/* ---------------------------------------------------------
   T-SHIRT VECTOR
   --------------------------------------------------------- */

.zb-size-guide__interactive-diagram {
  width: 100%;
  min-width: 0;

  order: 2;
}


.zb-measurement-shirt-wrap {
  position: relative;

  width: 100%;
  max-width: 260px;

  margin: 0 auto;
}


/* Uploaded black SVG */

.zb-measurement-shirt-art {
  display: block;

  width: 100%;
  height: auto;

  margin: 0;
  padding: 0;

  border: 0;

  background: transparent;
}


/* Interactive overlay */

.zb-measurement-overlay {
  position: absolute;

  inset: 0;

  display: block;

  width: 100%;
  height: 100%;

  overflow: visible;

  pointer-events: none;
}


/* ---------------------------------------------------------
   MEASUREMENT LINES
   --------------------------------------------------------- */

.zb-measurement-line {
  cursor: pointer;
  outline: none;

  pointer-events: all;
}


/*
  Invisible large hit-area.
*/

.zb-measurement-line__hit {
  stroke: transparent;

  stroke-width: 38;
  stroke-linecap: round;

  pointer-events: stroke;
}


/*
  Visible measurement line
*/

.zb-measurement-line__visual {
  fill: none;

  stroke: #999999;
  stroke-width: 4;

  stroke-linecap: round;

  stroke-dasharray: 18 14;

  pointer-events: none;

  transition:
    stroke 0.18s ease,
    stroke-width 0.18s ease;
}


/* ACTIVE LINE */

.zb-measurement-line.is-zb-measure-active
.zb-measurement-line__visual {
  stroke: #e8347d;

  stroke-width: 5;
}


/* ---------------------------------------------------------
   SIZE TABLE INTERACTION
   --------------------------------------------------------- */

.zb-size-guide__table
tbody
tr[data-zb-measure] {
  cursor: pointer;
}


.zb-size-guide__table
tbody
tr[data-zb-measure]
th,

.zb-size-guide__table
tbody
tr[data-zb-measure]
td {
  transition:
    color 0.18s ease,
    background-color 0.18s ease;
}


/* ACTIVE TABLE ROW */

.zb-size-guide__table
tbody
tr.is-zb-measure-active
th,

.zb-size-guide__table
tbody
tr.is-zb-measure-active
td {
  color: #e8347d !important;

  background-color:
    rgba(254, 244, 248, 1) !important;
}


/* ---------------------------------------------------------
   KEYBOARD FOCUS
   --------------------------------------------------------- */

.zb-measurement-line:focus-visible
.zb-measurement-line__visual {
  stroke: #e8347d;
}


.zb-size-guide__instruction-row:focus-visible {
  outline: 1px solid #e8347d;
  outline-offset: 3px;
}


.zb-size-guide__table
tbody
tr[data-zb-measure]:focus-visible {
  outline: 1px solid #e8347d;
  outline-offset: -2px;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media only screen and (max-width: 768px) {

  .zb-size-guide__fit-row {
    display: flex;
    align-items: center;

    gap: 16px;

    margin: 5px 0 9px;
  }


  .zb-size-guide__fit-row
  .zb-size-guide__fit-description {
    font-size: 11px;
    line-height: 1.3;
  }


  .zb-size-guide__measurement-section {
    grid-template-columns: 1fr !important;

    gap: 18px !important;

    margin-top: 10px !important;
    padding-top: 0 !important;
  }


  .zb-size-guide__instructions {
    order: 1;
  }


  .zb-size-guide__interactive-diagram {
    order: 2;
  }


  .zb-measurement-shirt-wrap {
    max-width: 260px;
  }


  .zb-measurement-line__hit {
    stroke-width: 52;
  }


  .zb-measurement-line__visual {
    stroke-width: 5;

    stroke-dasharray: 20 15;
  }


  .zb-measurement-line.is-zb-measure-active
  .zb-measurement-line__visual {
    stroke-width: 6;
  }

}


/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  .zb-measurement-line__visual,
  .zb-size-guide__instruction-row,

  .zb-size-guide__table
  tbody
  tr[data-zb-measure]
  th,

  .zb-size-guide__table
  tbody
  tr[data-zb-measure]
  td {
    transition: none;
  }

}

/* Remove divider between size table and measurement area */
.zb-size-guide__measurement-section {
  border-top: 0 !important;
  margin-top: 24px !important;
  padding-top: 0 !important;
}


/* =========================================================
   ZB SIZE GUIDE — HOW TO MEASURE INTRO
   ========================================================= */

/* Intro: "Lay the garment flat..." */
.zb-size-guide__measure-intro {
  margin: 0 0 10px;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;

  color: #555555;
}

/* Measurement rows underneath */
.zb-size-guide__instruction-row {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {
  .zb-size-guide__measure-intro {
    margin-bottom: 9px;

    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
  }

  .zb-size-guide__instruction-row {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.45;
  }
}

/* =========================================================
   ZB SIZE GUIDE — COMPACT IN / CM SWITCH
   Active tab stays wide, inactive tab becomes narrower
   ========================================================= */

.zb-size-guide__units {
  display: inline-flex !important;
  width: auto !important;
  min-width: 0 !important;
}

/* Keep selected black tab at current visual width */
.zb-size-guide__unit.is-active {
  flex: 0 0 58px !important;
  width: 58px !important;
  min-width: 58px !important;
}

/* Make the unselected side narrower */
.zb-size-guide__unit:not(.is-active) {
  flex: 0 0 46px !important;
  width: 46px !important;
  min-width: 46px !important;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

/* ZB SIZE GUIDE — MEASUREMENT DASHES */

.zb-measurement-line__visual {
  stroke-width: 1.5px !important;
  stroke-dasharray: 5 3 !important;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.zb-measurement-line.is-zb-measure-active
.zb-measurement-line__visual {
  stroke-width: 1.5px !important;
}


/* ==========================
 SIZE GUIDE MEASUREMENT LINES
   ========================== */



  /* -------------------------------------------------------
     SIZE GUIDE — MEASUREMENT DASHES
     Thicker + slightly larger dash pattern on mobile
     ------------------------------------------------------- */

  .zb-measurement-line__visual {
    stroke-width: 3px !important;

    stroke-dasharray: 12 8 !important;

    vector-effect: non-scaling-stroke;
  }

  .zb-measurement-line.is-zb-measure-active
  .zb-measurement-line__visual {
    stroke-width: 3px !important;
  }

}



/* =========================================================
   ZB PRODUCT — MOBILE MEDIA LAYOUT
   Main media on top / thumbnails underneath
   MOBILE ONLY
   ========================================================= */

@media only screen and (max-width: 768px) {

  /* -------------------------------------------------------
     PRODUCT MEDIA WRAPPER
     Motion places main photos + thumbs as siblings
     ------------------------------------------------------- */

  .product__photos.product__photos--beside {
    display: flex !important;
    flex-direction: column !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
  }


  /* -------------------------------------------------------
     MAIN MEDIA — TOP
     ------------------------------------------------------- */

  .product__photos.product__photos--beside
  > .product__main-photos {
    order: 1 !important;

    width: 100% !important;
    max-width: 100% !important;

    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;

    flex: 0 0 100% !important;
  }


  .product__photos.product__photos--beside
  > .product__main-photos
  .product-slideshow {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
  }


  /* -------------------------------------------------------
     THUMBNAILS — BELOW MAIN MEDIA
     ------------------------------------------------------- */

  .product__photos.product__photos--beside
  > .product__thumbs--beside {
    order: 2 !important;

    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    width: 100% !important;
    max-width: 100% !important;

    height: auto !important;
    max-height: none !important;

    margin: 12px 0 0 !important;
    padding: 0 !important;

    transform: none !important;

    overflow: visible !important;
  }


  /* -------------------------------------------------------
     HORIZONTAL THUMBNAIL STRIP
     ------------------------------------------------------- */

  .product__thumbs--beside
  .product__thumbs--scroller {
    position: relative !important;
    top: auto !important;
    left: auto !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;

    gap: 8px !important;

    width: 100% !important;
    max-width: 100% !important;

    height: auto !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 0 6px !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;

    transform: none !important;
  }


  .product__thumbs--beside
  .product__thumbs--scroller::-webkit-scrollbar {
    display: none;
  }


  /* -------------------------------------------------------
     THUMBNAIL SIZE
     ------------------------------------------------------- */

  .product__thumbs--beside
  .product__thumb-item {
    display: block !important;

    flex: 0 0 62px !important;

    width: 62px !important;
    min-width: 62px !important;
    max-width: 62px !important;

    margin: 0 !important;
    padding: 0 !important;

    float: none !important;
  }


  .product__thumbs--beside
  .product__thumb {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    opacity: 0.55;

    transition:
      opacity 0.2s ease;
  }


  .product__thumbs--beside
  .product__thumb.is-active {
    opacity: 1;
  }


  /* -------------------------------------------------------
     THUMBNAIL IMAGE
     Keep ZB 4:5 ratio
     ------------------------------------------------------- */

  .product__thumbs--beside
  .image-wrap__thumbnail {
    position: relative !important;

    width: 100% !important;
    height: 0 !important;

    padding-bottom: 125% !important;

    overflow: hidden !important;
  }


  .product__thumbs--beside
  .image-wrap__thumbnail img {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
  }


  /* -------------------------------------------------------
     ACTIVE ZB INDICATOR
     ------------------------------------------------------- */

  .product__thumbs--beside
  .product__thumb.is-active::after {
    content: "";

    display: block;

    width: 100%;
    height: 2px;

    margin-top: 4px;

    background: #e8347d;
  }

}


.product__photos.product__photos--beside {
  margin-top: -24px !important;
}



/* =========================================================
   ZB PRODUCT — DESKTOP PRODUCT INFO TOP SPACING
   ========================================================= */

@media only screen and (min-width: 769px) {
  .product-single__meta {
    margin-top: 0px !important;
  }
}



/* =========================================================
   ZB SIZE GUIDE — INTERACTION HINT
   Pulsing pink point on measurement diagram
   ========================================================= */

.zb-measurement-hint {
  cursor: pointer;
  pointer-events: all;

  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}


/* Solid center point */

.zb-measurement-hint__dot {
  fill: #e8347d;

  pointer-events: none;
}


/* Soft pulsing halo */

.zb-measurement-hint__pulse {
  fill: rgba(232, 52, 125, 0.20);

  pointer-events: none;

  transform-box: fill-box;
  transform-origin: center;

  animation: zbMeasurementHintPulse 1.6s ease-out infinite;
}


/* Pulse animation */

@keyframes zbMeasurementHintPulse {

  0% {
    transform: scale(0.4);
    opacity: 0.85;
  }

  65% {
    transform: scale(1);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }

}


/* JS will add this class once the user interacts */

.zb-measurement-hint.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {

  .zb-measurement-hint__pulse {
    animation: none;
    opacity: 0.2;
  }

}


/* =========================================================
   ZB SIZE GUIDE — HINT SIZE
   ========================================================= */

.zb-measurement-hint {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(3);
}


/* =========================================================
   ZB PRODUCT PAGE — TOP SPACING / DESKTOP
   ========================================================= */

@media only screen and (min-width: 769px) {

  /* Header → Breadcrumbs */
  .template-product .page-content {
    padding-top: 24px;
  }

  /* Breadcrumbs → Product area */
  .template-product .breadcrumb {
    margin-bottom: 24px;
  }

  /* Remove previous media offset */
  .template-product .product__photos.product__photos--beside {
    margin-top: 0 !important;
  }

  /* Left media: no upward movement anymore */
  .template-product .grid__item.product-single__sticky {
    transform: none;
  }

  /* Right column: align with top of main product image */
  .template-product .product-single__meta {
    margin-top: 28px;
  }

}



/* =========================================================
   ZB SIZE GUIDE — DESKTOP MEASUREMENT DASHES
   ========================================================= */

@media only screen and (min-width: 769px) {

  .zb-measurement-line__visual {
    stroke-width: 1.5px !important;
    stroke-dasharray: 5 3 !important;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
  }

  .zb-measurement-line.is-zb-measure-active
  .zb-measurement-line__visual {
    stroke-width: 1.5px !important;
  }

}



/* =========================================================
   ZB PRODUCT — SIZE REQUIRED BEFORE ADD TO CART
   ========================================================= */

body.template-product
[data-add-to-cart].zb-size-required,
body.template-product
button[name="add"].zb-size-required {
  border-color: #e5e5e5 !important;
  background: #e5e5e5 !important;
  color: rgba(17, 17, 17, 0.42) !important;

  cursor: not-allowed !important;
}


/* Keep locked button grey on hover */

body.template-product
[data-add-to-cart].zb-size-required:hover,
body.template-product
button[name="add"].zb-size-required:hover {
  border-color: #e5e5e5 !important;
  background: #e5e5e5 !important;
  color: rgba(17, 17, 17, 0.42) !important;
}


/* No arrow movement while locked */

body.template-product
[data-add-to-cart].zb-size-required::after,
body.template-product
button[name="add"].zb-size-required::after {
  transform: none !important;
}


/* =========================================================
   ZB PRODUCT — SIZE REQUIRED BEFORE ADD TO CART
   ========================================================= */

body.template-product
[data-add-to-cart].zb-size-required,
body.template-product
button[name="add"].zb-size-required {
  border-color: #e5e5e5 !important;
  background: #e5e5e5 !important;
  color: rgba(17, 17, 17, 0.42) !important;

  cursor: not-allowed !important;
}


/* Keep locked button grey on hover */

body.template-product
[data-add-to-cart].zb-size-required:hover,
body.template-product
button[name="add"].zb-size-required:hover {
  border-color: #e5e5e5 !important;
  background: #e5e5e5 !important;
  color: rgba(17, 17, 17, 0.42) !important;
}


/* No arrow movement while locked */

body.template-product
[data-add-to-cart].zb-size-required::after,
body.template-product
button[name="add"].zb-size-required::after {
  transform: none !important;
}



/* =========================================================
   ZB PRODUCT — SIZE GATE
   ========================================================= */

.zb-size-gate-button-wrap {
  position: relative;
  width: 100%;
}


/* Invisible layer catches click while real button is disabled */

.zb-size-gate-blocker {
  display: none;

  position: absolute;
  inset: 0;

  z-index: 5;

  cursor: not-allowed;
}

.zb-size-gate-button-wrap.is-zb-size-locked
.zb-size-gate-blocker {
  display: block;
}


/* Locked Add To Cart */

body.template-product
button[name="add"].zb-size-required,
body.template-product
[data-add-to-cart].zb-size-required {
  border-color: #e5e5e5 !important;
  background: #e5e5e5 !important;
  color: rgba(17, 17, 17, 0.42) !important;

  cursor: not-allowed !important;
  opacity: 1 !important;
}


/* Do not animate arrow while locked */

body.template-product
button[name="add"].zb-size-required::after,
body.template-product
[data-add-to-cart].zb-size-required::after {
  transform: none !important;
}


/* Message */

body.template-product
.zb-size-required-message {
  margin-top: 9px;

  color: #e8347d;

  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;

  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(-3px);

  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

body.template-product
.zb-size-required-message.is-visible {
  opacity: 1;
  transform: translateY(0);
}