/** Shopify CDN: Minification failed

Line 253: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__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
   ========================================= */

.zb-chapter-quote {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 430px;

  margin: 24px 0 32px;
  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: 400;
  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;
}

@media screen and (max-width: 749px) {
  .zb-chapter-quote {
    max-width: 100%;

    margin: 20px 0 28px;
    padding: 0 24px;

    font-size: 18px;
    line-height: 1.45;
  }

  .zb-chapter-quote::before,
  .zb-chapter-quote::after {
    font-size: 30px;
  }

  .zb-chapter-quote::before {
    top: -5px;
  }

  .zb-chapter-quote::after {
    bottom: -11px;
  }
}