/** Shopify CDN: Minification failed

Line 22:19 Expected identifier but found whitespace
Line 22:21 Unexpected "{"
Line 22:30 Expected ":"
Line 23:14 Expected identifier but found whitespace
Line 23:16 Unexpected "{"
Line 23:25 Expected ":"
Line 24:15 Expected identifier but found whitespace
Line 24:17 Unexpected "{"
Line 24:26 Expected ":"
Line 73:12 Expected identifier but found whitespace
... and 22 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:advanced-features (INDEX:6) */
:root {
  --brand-green-bg: {{ section.settings.background_color }};
  --icon-gold: {{ section.settings.icon_color }};
  --text-white: {{ section.settings.text_color }};
}
.features-section {
  background-color: var(--brand-green-bg);
  padding: 60px 20px 100px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
  color: var(--text-white);
  margin-top: -1px;
}
.features-header {
  max-width: 850px;
  margin: 0 auto 70px auto;
}
.features-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -1px;
  color: var(--text-white) !important;
}
.features-header p {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.6;
  font-weight: 300;
  color: var(--text-white);
}
.features-grid {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat({{ section.settings.columns }}, 1fr);
  gap: 60px 40px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}
.feature-icon-wrapper {
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}
.feature-item:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}
.feature-icon-wrapper i {
  font-size: {{ section.settings.icon_size }}px;
  color: var(--icon-gold);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}
.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: var(--text-white);
}
.feature-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 320px;
  margin: 0;
  color: var(--text-white);
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
  .features-section { padding: 40px 15px 80px 15px; }
  .feature-icon-wrapper i { font-size: calc({{ section.settings.icon_size }}px * 0.7); }
  .feature-item h3 { font-size: 1rem; }
  .feature-item p { font-size: 0.8rem; }
}
/* END_SECTION:advanced-features */

/* START_SECTION:custom-checkout (INDEX:30) */
.custom-checkout-section {
        position: relative;
        background: var(--custom-checkout-page);
        padding: 24px 0 48px;
        color: rgb(var(--color-foreground-rgb));
      }

      .custom-checkout__backdrop {
        position: absolute;
        inset: 0;
        background: radial-gradient(
            circle at top left,
            color-mix(in srgb, var(--custom-checkout-accent) 10%, transparent),
            transparent 32%
          ),
          linear-gradient(180deg, color-mix(in srgb, var(--custom-checkout-accent) 4%, transparent), transparent 30%);
        pointer-events: none;
      }

      .custom-checkout__page {
        position: relative;
        z-index: 1;
        width: min(1100px, calc(100% - 32px));
        margin: 0 auto;
      }

      .custom-checkout__breadcrumbs {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
        font-size: 1.1rem;
        color: var(--custom-checkout-muted);
      }

      .custom-checkout__breadcrumbs a {
        color: inherit;
        text-decoration: none;
      }

      .custom-checkout__intro {
        margin-bottom: 18px;
      }

      .custom-checkout__title {
        margin: 0;
        font-size: clamp(1.9rem, 3.2vw, 2.9rem);
        line-height: 1.1;
      }

      .custom-checkout__subtitle {
        margin: 8px 0 0;
        max-width: 58rem;
        font-size: 1.25rem;
        color: var(--custom-checkout-muted);
      }

      .custom-checkout__grid {
        display: grid;
        gap: 16px;
      }

      .custom-checkout__main,
      .custom-checkout__sidebar {
        display: grid;
        gap: 16px;
        align-content: start;
      }

      .custom-checkout__card {
        background: var(--custom-checkout-surface);
        border: 1px solid var(--custom-checkout-border);
        border-radius: var(--custom-checkout-radius);
        box-shadow: 0 16px 32px rgba(15, 23, 42, 0.05);
        padding: 18px;
      }

      .custom-checkout__card-head {
        display: flex;
        align-items: center;
        margin-bottom: 14px;
      }

      .custom-checkout__card-head h2 {
        position: relative;
        margin: 0;
        padding-left: 12px;
        font-size: 1.45rem;
        line-height: 1.2;
      }

      .custom-checkout__card-head h2::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.15em;
        bottom: 0.15em;
        width: 3px;
        border-radius: 999px;
        background: var(--custom-checkout-accent);
      }

      .custom-checkout__items {
        display: grid;
        gap: 14px;
      }

      .custom-checkout__item {
        display: grid;
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 14px;
        align-items: center;
      }

      .custom-checkout__item-image,
      .custom-checkout__item-image img,
      .custom-checkout__item-image-placeholder {
        width: 78px;
        height: 78px;
        border-radius: calc(var(--custom-checkout-radius) - 6px);
      }

      .custom-checkout__item-image {
        overflow: hidden;
        background: #f4f4f5;
      }

      .custom-checkout__item-image img {
        display: block;
        object-fit: cover;
      }

      .custom-checkout__item-image-placeholder {
        display: grid;
        place-items: center;
        font-size: 2rem;
        font-weight: 700;
        background: color-mix(in srgb, var(--custom-checkout-accent) 12%, white);
        color: var(--custom-checkout-accent-strong);
      }

      .custom-checkout__item-content {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        min-width: 0;
      }

      .custom-checkout__item-copy h3,
      .custom-checkout__empty h3 {
        margin: 0 0 4px;
        font-size: 1.35rem;
        line-height: 1.25;
      }

      .custom-checkout__item-copy p,
      .custom-checkout__empty p {
        margin: 0;
        font-size: 1.15rem;
        color: var(--custom-checkout-muted);
      }

      .custom-checkout__item-copy strong {
        display: inline-block;
        margin-top: 8px;
        font-size: 1.35rem;
      }

      .custom-checkout__item-actions {
        display: flex;
        gap: 8px;
        justify-items: end;
      }

      .custom-checkout__quantity {
        display: inline-grid;
        grid-template-columns: 34px 52px 34px;
        align-items: center;
        border: 1px solid var(--custom-checkout-border);
        border-radius: 999px;
        height: 44px;
        overflow: hidden;
        background: #fff;
      }

      .custom-checkout__quantity button,
      .custom-checkout__remove,
      .custom-checkout__payment,
      .custom-checkout__submit,
      .custom-continue_shopping__submit {
        border: 0;
        background: none;
        cursor: pointer;
        font: inherit;
      }

      .custom-checkout__quantity button {
        font-size: 1.35rem;
        color: var(--custom-checkout-accent-strong);
      }

      .custom-checkout__quantity input {
        width: 100%;
        border: 0;
        text-align: center;
        background: transparent;
        appearance: textfield;
      }

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

      .custom-checkout__remove {
        color: #ef4444;
        font-size: 1.1rem;
        font-weight: 600;
        height: 44px;
      }

      .custom-checkout__fields,
      .custom-checkout__payments {
        display: grid;
        gap: 12px;
      }

      .custom-checkout__fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .custom-checkout__field {
        display: grid;
        gap: 6px;
      }

      .custom-checkout__fields > *:last-child {
        grid-column: span 2;
      }

      .custom-checkout__field span {
        font-size: 1.12rem;
      }

      .custom-checkout__field input,
      .custom-checkout__field select,
      .custom-checkout__field textarea {
        width: 100%;
        min-height: 46px;
        border: 1px solid var(--custom-checkout-border);
        border-radius: 12px;
        background: #fff;
        padding: 10px 13px;
        font: inherit;
        color: inherit;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
      }

      .custom-checkout__field textarea {
        resize: vertical;
      }

        .power-link {
            font-size: 0.6rem;
            font-weight: 600;
          }
          .power-link:hover {
            color: #f7981d;
          }

      .custom-checkout__field input:focus,
      .custom-checkout__field select:focus,
      .custom-checkout__field textarea:focus {
        outline: none;
        border-color: var(--custom-checkout-accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--custom-checkout-accent) 16%, transparent);
      }

      .custom-checkout__field [aria-invalid='true'] {
        border-color: #ef4444;
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
      }

      .custom-checkout__payment {
      display: flex;
      align-items: center;
      gap: 20px;
      min-height: 50px;
      border: 1px solid var(--custom-checkout-border);
      border-radius: 14px;
      padding: 0 14px;
      text-align: left;
      transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  }

      .custom-checkout__payment::before {
        content: '';
        width: 14px;
        height: 14px;
        border-radius: 999px;
        border: 2px solid currentColor;
        opacity: 0.35;
      }

      .custom-checkout__payment.is-active {
        background: color-mix(in srgb, var(--custom-checkout-accent) 10%, white);
        border-color: var(--custom-checkout-accent);
        color: var(--custom-checkout-accent-strong);
      }

      .custom-checkout__payment.is-active::before {
        background: var(--custom-checkout-accent);
        border-color: var(--custom-checkout-accent);
        opacity: 1;
      }

      .custom-checkout__totals {
        display: grid;
        gap: 12px;
      }

      .custom-checkout__totals > div {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        font-size: 1.25rem;
      }

      .custom-checkout__totals-row--grand {
        padding-top: 12px;
        border-top: 1px solid var(--custom-checkout-border);
        font-size: 1.45rem;
      }

      .custom-checkout__submit-wrap {
        bottom: 12px;
        display: grid;
        gap: 12px;
      }

      .custom-checkout__discount-row {
        color: red;
      }

      .custom-checkout__coupon {
        border: 1px solid var(--custom-checkout-border);
        border-radius: 14px;
        background: #f3f4f6;
        overflow: hidden;
      }

      .custom-checkout__coupon-toggle {
        width: 100%;
        border: 0;
        background: transparent;
        margin: 0;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        font: inherit;
        font-size: 1.05rem;
        font-weight: 600;
        text-align: left;
        cursor: pointer;
        border-bottom: 1px solid var(--custom-checkout-border);
      }

      .custom-checkout__coupon-toggle-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 999px;
        background: rgba(17, 24, 39, 0.08);
        transition: transform 0.2s ease;
      }

      .custom-checkout__coupon-toggle[aria-expanded='true'] .custom-checkout__coupon-toggle-icon {
        transform: rotate(180deg);
      }

      .custom-checkout__coupon-toggle-icon i {
        font-size: 0.9rem;
        color: #111827;
      }

      .custom-checkout__coupon-form {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 10px;
        padding: 14px;
      }

      .custom-checkout__coupon-form input {
        min-height: 46px;
        border: 1px solid var(--custom-checkout-border);
        border-radius: 10px;
        padding: 0 12px;
        font: inherit;
        background: #fff;
      }

      .custom-checkout__coupon-form button {
       height: 44px;
        border: 0;
        border-radius: 8px;
        padding: 0 16px;
        background: #f58220;
        color: #fff;
        font: inherit;
        font-weight: 600;
        cursor: pointer;
      }

      .custom-checkout__coupon-form button:disabled {
        opacity: 0.65;
        cursor: wait;
      }

      .custom-checkout__quantity-offers {
        display: grid;
        gap: 10px;
        margin-top: 10px;
      }

      .custom-checkout__offer-card {
        position: relative;
        border: 1px solid var(--offer-border, #d1d5db);
        background: var(--offer-bg, #fff);
        border-radius: var(--offer-radius, 10px);
        width: 100%;
        text-align: left;
        padding: 12px;
        min-height: 70px;
        cursor: pointer;
      }

      .custom-checkout__offer-card.is-selected {
        box-shadow: 0 0 0 1px var(--offer-border, #ef4444) inset;
      }

      .custom-checkout__offer-main {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }

      .custom-checkout__offer-copy {
        display: grid;
        gap: 6px;
      }

      .custom-checkout__offer-copy strong {
        font-size: 1.1rem;
      }

      .custom-checkout__offer-tag {
        display: inline-block;
        background: #fb923c;
        color: #fff;
        padding: 2px 8px;
        border-radius: 6px;
        font-size: 0.92rem;
        font-weight: 700;
      }

      .custom-checkout__offer-label {
        position: absolute;
        top: -10px;
        right: 10px;
        background: #f43f5e;
        color: #fff;
        border-radius: 999px;
        padding: 2px 10px;
        font-size: 0.82rem;
        font-weight: 700;
      }

      .custom-checkout__offer-prices {
        display: grid;
        justify-items: end;
        gap: 2px;
      }

      .custom-checkout__offer-prices del {
        color: #6b7280;
        font-size: 0.95rem;
      }

      .custom-checkout__offer-prices strong {
        font-size: 1.4rem;
        line-height: 1;
      }

      .custom-checkout__submit {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 52px;
        border-radius: 16px;
        background: var(--custom-checkout-accent);
        color: #fff;
        font-weight: 700;
        font-size: 1.15rem;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        box-shadow: 0 18px 36px color-mix(in srgb, var(--custom-checkout-accent) 28%, transparent);
        transition: transform 0.2s ease, background-color 0.2s ease;
      }

      .custom-continue_shopping__submit {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 52px;
        border-radius: 16px;
        background: var(--custom-checkout-continue-bg);
        color: var(--custom-checkout-continue-text);
        font-size: calc(var(--custom-checkout-continue-font-size) * 1px);
        font-weight: var(--custom-checkout-continue-font-weight);
        transition: transform 0.2s ease, filter 0.2s ease;
      }

      .custom-continue_shopping__submit:hover {
        filter: brightness(0.95);
        transform: translateY(-1px);
      }

      .custom-continue_shopping__submit:disabled {
        opacity: 0.6;
        cursor: wait;
        transform: none;
      }

      .custom-checkout__submit:hover {
        background: var(--custom-checkout-accent-strong);
        transform: translateY(-1px);
      }

      .custom-checkout__submit:disabled {
        opacity: 0.6;
        cursor: wait;
        transform: none;
      }

      .custom-checkout__submit-label {
        white-space: nowrap;
      }

      .custom-checkout__submit-dots {
        display: inline-flex;
        align-items: flex-end;
        gap: 4px;
        min-width: 20px;
      }

      .custom-checkout__submit-dots span {
        width: 5px;
        height: 5px;
        border-radius: 999px;
        background: currentColor;
        animation: custom-checkout-submit-wave 0.9s ease-in-out infinite;
      }

      .custom-checkout__submit-dots span:nth-child(2) {
        animation-delay: 0.15s;
      }

      .custom-checkout__submit-dots span:nth-child(3) {
        animation-delay: 0.3s;
      }

      .custom-checkout__alert {
        margin: 0;
        font-size: 1.1rem;
      }

      .custom-checkout__alert {
        margin-bottom: 14px;
        border-radius: 12px;
        background: rgba(239, 68, 68, 0.08);
        color: #b91c1c;
        padding: 12px 14px;
      }

      .custom-checkout__empty {
        border: 1px dashed var(--custom-checkout-border);
        border-radius: calc(var(--custom-checkout-radius) - 6px);
        padding: 20px;
        text-align: center;
      }

      .hidden {
        display: none;
      }

      @keyframes custom-checkout-submit-wave {
        0%,
        60%,
        100% {
          transform: translateY(0);
          opacity: 0.45;
        }

        30% {
          transform: translateY(-4px);
          opacity: 1;
        }
      }

      @media screen and (min-width: 990px) {
        .custom-checkout__grid {
          grid-template-columns: minmax(0, 1.3fr) minmax(32rem, 0.82fr);
          align-items: start;
        }
      }

      @media screen and (max-width: 989px) {
        .custom-checkout-section {
          padding: 18px 0 36px;
        }

        .custom-checkout__fields {
          grid-template-columns: 1fr;
        }

        .custom-checkout__page {
          width: min(100%, calc(100% - 24px));
        }

        .custom-checkout__item {
          grid-template-columns: 64px minmax(0, 1fr);
          gap: 10px;
        }

        .custom-checkout__item-image,
        .custom-checkout__item-image img,
        .custom-checkout__item-image-placeholder {
          width: 64px;
          height: 64px;
        }

        .custom-checkout__item-content {
          flex-direction: column;
        }

        .custom-checkout__item-actions {
          justify-items: start;
        }

        .custom-checkout__submit-wrap {
          padding-inline: 0;
        }
      }

      /* ===== FULL MOBILE CHECKOUT CSS FIX ===== */

    @media screen and (max-width: 749px) {
      .custom-checkout-section {
        padding: 16px 0 130px;
        background: var(--custom-checkout-page);
      }

      .custom-checkout__page {
        width: 100%;
        padding: 0 12px;
        margin: 0 auto;
      }

      .custom-checkout__breadcrumbs {
        font-size: 16px;
        gap: 6px;
        margin-bottom: 10px;
        color: var(--custom-checkout-muted);
      }

      .custom-checkout__title {
        font-size: 28px;
        line-height: 1.1;
        font-weight: 700;
      }

      .custom-checkout__subtitle {
        font-size: 18px;
        line-height: 1.45;
        margin-top: 8px;
      }

      .custom-checkout__grid,
      .custom-checkout__main,
      .custom-checkout__sidebar {
        display: grid;
        gap: 12px;
      }

      .custom-checkout__card {
        width: 100%;
        padding: 16px;
        border-radius: 14px;
        border: 1px solid #d9dee8;
        background: #fff;
        box-shadow: none;
        overflow: hidden;
      }

      .custom-checkout__card-head {
        margin-bottom: 14px;
      }

      .custom-checkout__card-head h2 {
        font-size: 18px;
        line-height: 1.2;
        font-weight: 700;
        color: #111;
        padding-left: 0;
      }

      .custom-checkout__card-head h2::before {
        display: none;
      }

      .custom-checkout__items {
        gap: 14px;
      }

      .custom-checkout__item {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
      }

      .custom-checkout__item-image,
      .custom-checkout__item-image img,
      .custom-checkout__item-image-placeholder {
        width: 64px;
        height: 64px;
        border-radius: 10px;
      }

      .custom-checkout__item-content {
        flex-direction: column;
        gap: 10px;
        min-width: 0;
      }

      .custom-checkout__item-copy h3 {
        font-size: 14px;
        line-height: 1.25;
        font-weight: 700;
        color: #111;
        margin: 0 0 6px;
        word-break: break-word;
      }

      .custom-checkout__item-copy p {
        font-size: 12px;
        color: #667085;
        margin: 0;
      }

      .custom-checkout__item-copy strong {
        font-size: 14px;
        font-weight: 700;
        margin-top: 10px;
        color: #111;
      }

      .custom-checkout__item-actions {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .custom-checkout__quantity {
        height: 42px;
        grid-template-columns: 36px 52px 36px;
        border-radius: 999px;
        background: #fff;
      }

      .custom-checkout__quantity button {
        font-size: 16px;
      }

      .custom-checkout__quantity input {
        font-size: 15px;
        font-weight: 500;
      }

      .custom-checkout__remove {
        height: 42px;
        font-size: 15px;
      }

      .custom-checkout__fields {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .custom-checkout__fields > * {
        grid-column: auto !important;
      }

      .custom-checkout__field {
        display: grid;
        gap: 10px;
      }

      .custom-checkout__field span {
        font-size: 14px;
        line-height: 1.2;
        font-weight: 700;
        color: #111;
      }

      .custom-checkout__field input,
      .custom-checkout__field select,
      .custom-checkout__field textarea {
        width: 100%;
        min-height: 50px;
        border: 1px solid #d9dee8;
        border-radius: 14px;
        background-color: #fff;
        padding: 0 16px;
        font-size: 14px;
        font-weight: 600;
        color: #111;
        box-shadow: none;
        outline: none;
      }

      .custom-checkout__field textarea {
        min-height: 50px;
        padding-top: 14px;
        resize: vertical;
      }

      .custom-checkout__field input::placeholder,
      .custom-checkout__field textarea::placeholder {
        color: #8b8b8b;
        font-weight: 600;
      }

      .custom-checkout__field select {
        appearance: none;
        -webkit-appearance: none;
        padding-right: 44px;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='18' height='18' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 16px;
      }

      .custom-checkout__field input:focus,
      .custom-checkout__field select:focus,
      .custom-checkout__field textarea:focus {
        border-color: var(--custom-checkout-accent);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
      }

      .custom-checkout__payment {
        min-height: 50px;
        border-radius: 10px;
        padding: 0 14px;
        font-size: 12px;
        color: var(--custom-checkout-accent);
      }

    .custom-checkout__payment.is-active {
      background: color-mix(in srgb, var(--custom-checkout-accent) 10%, white);
      border-color: var(--custom-checkout-accent);
      color: var(--custom-checkout-accent-strong);
    }

      .custom-checkout__payment::after {
        width: 14px;
        height: 14px;
      }

      .custom-checkout__totals {
        gap: 14px;
      }

      .custom-checkout__totals > div {
        font-size: 15px;
        line-height: 1.2;
        color: #111;
      }

      .custom-checkout__totals strong {
        font-size: 15px;
        font-weight: 800;
        color: #111;
      }

      .custom-checkout__totals-row--grand {
        padding-top: 0;
        border-top: 0;
      }

      .custom-checkout__coupon {
        border-radius: 14px;
        background: #f6f8fb;
      }

      .custom-checkout__coupon-toggle {
        min-height: 54px;
        padding: 14px 16px;
        font-size: 16px;
        font-weight: 700;
      }

      .custom-checkout__coupon-form {
        grid-template-columns: 1fr 76px;
        gap: 10px;
        padding: 14px;
      }

      .custom-checkout__coupon-form input {
        min-height: 46px;
        border-radius: 12px;
        padding: 0 14px;
        font-size: 14px;
      }

      .custom-checkout__coupon-form button {
        min-height: 46px;
        border-radius: 9px;
        background: #000;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
      }

      .custom-checkout__submit-wrap {
        padding: 0;
        margin-top: 0;
        gap: 12px;
      }

      .custom-checkout__submit {
        position: static;
        width: 100%;
        min-height: 50px;
        border-radius: 8px;
        margin: 0;
        background: var(--custom-checkout-accent);
        color: #fff;
        font-size: 16px;
        font-weight: 800;
        box-shadow: none;
      }

      .custom-checkout__submit:hover {
        background: var(--custom-checkout-accent-strong);
      }

      .custom-continue_shopping__submit {
        width: 100%;
        min-height: 50px;
        border-radius: 8px;
      }

      .power-link {
        margin-top: 42px;
        font-size: 10px;
        font-weight: 700;
      }

      .custom-checkout__alert {
        font-size: 14px;
        border-radius: 10px;
      }
    }

      /* ===== Mobile layout fix: prevents field/button/card overflow on small screens ===== */
      .custom-checkout-section,
      .custom-checkout-section *,
      .custom-checkout-section *::before,
      .custom-checkout-section *::after {
        box-sizing: border-box;
      }

      .custom-checkout__field--full {
        grid-column: 1 / -1;
      }

      .custom-checkout-section {
        overflow-x: hidden;
      }

      @media screen and (max-width: 749px) {
        .custom-checkout-section {
          padding-top: 18px;
          padding-bottom: 130px;
        }

        .custom-checkout__page {
          width: 100%;
          max-width: 100%;
          padding-left: 12px;
          padding-right: 12px;
          margin-left: auto;
          margin-right: auto;
        }

        .custom-checkout__breadcrumbs,
        .custom-checkout__intro,
        .custom-checkout__grid,
        .custom-checkout__main,
        .custom-checkout__sidebar,
        .custom-checkout__card,
        .custom-checkout__items,
        .custom-checkout__fields,
        .custom-checkout__field,
        .custom-checkout__field input,
        .custom-checkout__field select,
        .custom-checkout__field textarea,
        .custom-checkout__payment,
        .custom-checkout__coupon,
        .custom-checkout__coupon-toggle,
        .custom-checkout__coupon-form,
        .custom-checkout__totals,
        .custom-checkout__submit-wrap {
          min-width: 0;
          max-width: 100%;
        }

        .custom-checkout__grid,
        .custom-checkout__main,
        .custom-checkout__sidebar {
          display: grid;
          grid-template-columns: 1fr;
          gap: 12px;
        }

        .custom-checkout__card {
          width: 100%;
          padding: 14px !important;
          border-radius: 16px;
          overflow: hidden;
        }

        .custom-checkout__fields {
          grid-template-columns: 1fr !important;
          gap: 12px;
        }

        .custom-checkout__fields > *,
        .custom-checkout__fields > *:last-child,
        .custom-checkout__field--full {
          grid-column: 1 / -1 !important;
        }

        .custom-checkout__field input,
        .custom-checkout__field select,
        .custom-checkout__field textarea {
          width: 100%;
          min-height: 48px;
          padding: 11px 12px;
          border-radius: 12px;
          font-size: 16px;
          line-height: 1.35;
        }

        .custom-checkout__field textarea {

          max-height: 120px;
          resize: vertical;
        }

        .custom-checkout__item {
          grid-template-columns: 58px minmax(0, 1fr);
          gap: 12px;
          align-items: start;
        }

        .custom-checkout__item-image,
        .custom-checkout__item-image img,
        .custom-checkout__item-image-placeholder {
          width: 58px;
          height: 58px;
          border-radius: 12px;
        }

        .custom-checkout__item-content {
          width: 100%;
          min-width: 0;
          display: grid;
          gap: 10px;
        }

        .custom-checkout__item-copy {
          min-width: 0;
        }

        .custom-checkout__item-copy h3 {
          font-size: 1.14rem;
          line-height: 1.25;
          word-break: normal;
          overflow-wrap: anywhere;
        }

        .custom-checkout__item-actions {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          gap: 10px;
          width: 100%;
        }

        .custom-checkout__quantity {
          flex: 0 0 auto;
          width: 112px;
          grid-template-columns: 32px 48px 32px;
          height: 40px;
        }

        .custom-checkout__remove {
          flex: 0 0 auto;
          width: 40px;
          display: inline-flex;
          align-items: center;
          justify-content: center;
        }

        .custom-checkout__payment {
          width: 100%;
          padding: 10px 12px;
          min-height: 50px;
          gap: 10px;
        }

        .custom-checkout__payment span {
          min-width: 0;
          overflow-wrap: anywhere;
        }

        .custom-checkout__payment::after {
          flex: 0 0 14px;
        }

        .custom-checkout__totals > div {
          align-items: center;
          gap: 10px;
        }

        .custom-checkout__totals strong {
          white-space: nowrap;
          text-align: right;
        }

        .custom-checkout__coupon-form {
          grid-template-columns: 1fr;
        }

        .custom-checkout__coupon-form button {
          width: 100%;
        }

        .power-link {
          width: 100%;
          margin: 4px 0 12px;
          font-size: 0.62rem;
          text-align: center;
        }

        .custom-checkout__submit {
          position: fixed;
          left: 10px;
          right: 10px;
          bottom: 72px;
          width: calc(100% - 20px);
          min-height: 56px;
          margin: 0;
          border-radius: 0;
          z-index: 9999999;
          font-size: 1.05rem;
          box-shadow: 0 -8px 28px rgba(15, 23, 42, 0.12);
        }
      }
/* END_SECTION:custom-checkout */

/* START_SECTION:imapact-section (INDEX:56) */
:root {
  --purixa-green: {{ section.settings.brand_green }};
  --purixa-black: {{ section.settings.brand_black }};
  --purixa-white: {{ section.settings.brand_white }};
}
.purixa-impact-section {
  padding: {{ section.settings.section_padding | default: 80 }}px 0;
  background-image: linear-gradient(rgba(11, 11, 11, 0.92), rgba(117, 158, 91, 0.15)) {% if section.settings.background_image != blank %}, url({{ section.settings.background_image | img_url: '2000x' }}){% endif %};
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--purixa-black);
  color: var(--purixa-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
}
.purixa-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.purixa-left { flex: 1; min-width: 320px; }
.purixa-left .kicker {
  color: var(--purixa-green);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}
.purixa-left h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 25px 0;
  letter-spacing: -2px;
  color: var(--purixa-white);
}
.purixa-left p {
  font-size: 18px;
  color: #CBD5E0;
  line-height: 1.6;
  max-width: 500px;
  border-left: 4px solid var(--purixa-green);
  padding-left: 20px;
}
.purixa-right { flex: 1; min-width: 100%; position: relative; }
@media (min-width: 992px) {
  .purixa-right { min-width: 400px; }
  .purixa-container { flex-direction: row; }
}
.medical-label {
  background: var(--purixa-white);
  color: #000;
  padding: 30px;
  border-radius: 2px;
  box-shadow: 20px 20px 0px var(--purixa-green);
  max-width: 480px;
  margin: 40px auto;
}
.label-header { border-bottom: 6px solid #000; margin-bottom: 15px; }
.label-header h3 { font-size: 34px; font-weight: 900; margin: 0; }
.label-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #000; font-weight: 700; }
.label-row.main { border-bottom: 4px solid #000; font-size: 18px; }
.prop-blend-box { margin-top: 15px; border: 2px solid #000; padding: 15px; background: #f9fdf7; }
.prop-blend-box h4 { margin: 0 0 5px 0; font-weight: 900; font-size: 12px; }
.prop-blend-box p { font-size: 11px; color: #000 !important; border: none; padding: 0; margin: 0; }
.floating-badge {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 90px;
  height: 90px;
  background: var(--purixa-green);
  color: var(--purixa-white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transform: rotate(10deg);
  z-index: 5;
  border: 3px solid var(--purixa-black);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
/* END_SECTION:imapact-section */

/* START_SECTION:review-carousel-section (INDEX:94) */
.ecom-carousel-text .ecom-per-heading {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        font-size: 1.3rem;
    }

    .ecom-carousel-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }

    .ecom-carousel {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .ecom-carousel-track {
        display: flex;
        transition: transform 0.5s ease;
    }

    .ecom-carousel-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        flex-shrink: 0;
        padding: 5px 60px;
        box-sizing: border-box;
        text-align: center;

    }

    .ecom-carousel-slide img {
        width: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    .ecom-carousel-text {
        margin-top: 1rem;
    }

    .ecom-carousel-text h3 {
        font-size: 1.2rem;
        color: #111;
        margin-bottom: 0.5rem;
    }

    .ecom-carousel-text p {
        font-size: 1rem;
        color: #444;
    }

    .ecom-carousel button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #38bdf8;
        color: #fff;
        border: none;
        font-size: 28px;
        padding: 0px 15px;
        cursor: pointer;
        z-index: 2;
        border-radius: 55%;
    }

    .ecom-carousel-prev {
        left: 10px;
    }

    .ecom-carousel-next {
        right: 10px;
    }

    .ecom-carousel-dots {
        text-align: center;
        margin-top: 10px;
        position: absolute;
        bottom: 10px;
        width: 100%;
    }

    .ecom-carousel-dots span {
        display: inline-block;
        height: 10px;
        width: 10px;
        background: #ccc;
        border-radius: 50%;
        margin: 0 4px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .ecom-carousel-dots span.active {
        background: #38bdf8;
    }

    .ecom-per-heading img {
        width: 80px;
    }

    @media (min-width: 768px) {
        .ecom-carousel-slide {
            flex-direction: row;
            justify-content: center;
            text-align: left;
        }

        .ecom-carousel-slide img {
            max-width: 50%;
        }

        .ecom-per-heading img {
            width: 80px;
        }

        .ecom-carousel-text {
            max-width: 50%;
        }
    }

    .points .main-point {
        display: flex;
        flex-direction: row;
        align-items: center;
        font-size: 1rem;
    }

    .main-point img {
        width: 25px;
    }

    .clinical-box {
        padding: 10px;
        border: 1px solid #38bdf8;
        border-radius: 8px 0 8px 8px;
        font-size: 14px;
        margin-left: 10px;
    }

    .clinical-box a {
        display: none;
        font-size: .7rem;
        margin-top: 5px;
        color: #333;
        text-decoration: underline;
    }

    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .modal-content {
        background-color: #fff;
        margin: 10% auto;
        padding: 20px;
        border-radius: 8px;
        width: 80%;
        max-width: 500px;
        position: relative;
    }

    .close {
        color: #aaa;
        float: right;
        font-size: 24px;
        font-weight: bold;
        position: absolute;
        right: 20px;
        top: 10px;
        cursor: pointer;
    }

    .close:hover {
        color: #000;
    }

    .ss_c_title {
        background: #38bdf8;
        border-radius: 8px 8px 0 0;
        margin: 0 0 0 auto;
        width: 203px;
        height: 26.78px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
        padding: 15px 0;
    }

.modal.active {
  display: block;
}

    @media(max-width:1024px) {
        .points {
            font-size: 16px !important;
        }

        .ecom-carousel-text .ecom-per-heading {
            font-size: 1.2rem;
            text-align: left;
        }

        .points .main-point {
            text-align: left;
            gap: 5px;
        }

        .ecom-carousel-dots {
            bottom: 0px;
        }

        .ecom-carousel button {
            top: 24%;
        }

        .ecom-carousel-slide {
            padding: 20px 10px;
        }
    }
/* END_SECTION:review-carousel-section */

/* START_SECTION:thankyou (INDEX:105) */
.custom-checkout-thankyou {
    --thankyou-accent: #16a34a;
    --thankyou-ink: #111827;
    --thankyou-muted: #667085;
    --thankyou-border: #e5e7eb;
  }

  .custom-checkout-thankyou-is-open {
    overflow: hidden;
  }

  .custom-checkout-thankyou__overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(17, 24, 39, 0.58);
  }

  .custom-checkout-thankyou__overlay[hidden] {
    display: none;
  }

  .custom-checkout-thankyou__dialog {
    position: relative;
    width: min(620px, 100%);
    max-height: min(720px, calc(100vh - 36px));
    overflow: auto;
    border-radius: 18px;
    background: #fff;
    color: var(--thankyou-ink);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
  }

  .custom-checkout-thankyou__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.08);
    color: var(--thankyou-ink);
    cursor: pointer;
  }

  .custom-checkout-thankyou__hero {
    padding: 34px 52px 22px;
    text-align: center;
    border-bottom: 1px solid var(--thankyou-border);
  }

  .custom-checkout-thankyou__icon {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.12);
    color: var(--thankyou-accent);
    font-size: 26px;
  }

  .custom-checkout-thankyou__hero p {
    margin: 0 0 8px;
    color: var(--thankyou-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .custom-checkout-thankyou__hero h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.15;
  }

  .custom-checkout-thankyou__subheading {
    margin-top: 10px;
    color: var(--thankyou-muted);
    font-size: 15px;
    line-height: 1.55;
  }

  .custom-checkout-thankyou__body {
    display: grid;
    gap: 18px;
    padding: 22px;
  }

  .custom-checkout-thankyou__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .custom-checkout-thankyou__meta div,
  .custom-checkout-thankyou__totals {
    border: 1px solid var(--thankyou-border);
    border-radius: 12px;
    background: #f9fafb;
  }

  .custom-checkout-thankyou__meta div {
    display: grid;
    gap: 5px;
    padding: 12px;
  }

  .custom-checkout-thankyou__meta span,
  .custom-checkout-thankyou__totals span,
  .custom-checkout-thankyou__item-copy span,
  .custom-checkout-thankyou__item-copy p {
    color: var(--thankyou-muted);
    font-size: 13px;
  }

  .custom-checkout-thankyou__meta strong {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 14px;
  }

  .custom-checkout-thankyou__products h3 {
    margin: 0 0 12px;
    font-size: 18px;
  }

  .custom-checkout-thankyou__item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid var(--thankyou-border);
  }

  .custom-checkout-thankyou__item:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .custom-checkout-thankyou__image,
  .custom-checkout-thankyou__image img,
  .custom-checkout-thankyou__image-placeholder {
    width: 58px;
    height: 58px;
    border-radius: 10px;
  }

  .custom-checkout-thankyou__image {
    overflow: hidden;
    background: #f3f4f6;
  }

  .custom-checkout-thankyou__image img {
    display: block;
    object-fit: cover;
  }

  .custom-checkout-thankyou__image-placeholder {
    display: grid;
    place-items: center;
    color: var(--thankyou-accent);
    font-weight: 800;
  }

  .custom-checkout-thankyou__item-copy h4 {
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.25;
  }

  .custom-checkout-thankyou__item-copy p {
    margin: 0 0 4px;
  }

  .custom-checkout-thankyou__item > strong {
    white-space: nowrap;
    font-size: 14px;
  }

  .custom-checkout-thankyou__totals {
    display: grid;
    gap: 10px;
    padding: 14px;
  }

  .custom-checkout-thankyou__totals > div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
  }

  .custom-checkout-thankyou__grand-total {
    padding-top: 10px;
    border-top: 1px solid var(--thankyou-border);
    font-size: 18px;
  }

  .custom-checkout-thankyou__discount-row strong {
    color: #dc2626;
  }

  .custom-checkout-thankyou__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .custom-checkout-thankyou__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 10px;
    padding: 0 16px;
    text-decoration: none;
    font-weight: 800;
  }

  .custom-checkout-thankyou__button--primary {
    background: var(--thankyou-accent);
    color: #fff;
  }

  .custom-checkout-thankyou__button--secondary {
    border: 1px solid var(--thankyou-border);
    background: #fff;
    color: var(--thankyou-ink);
  }

  .custom-checkout-thankyou__empty {
    margin: 0;
    color: var(--thankyou-muted);
  }

  @media screen and (max-width: 640px) {
    .custom-checkout-thankyou__overlay {
      align-items: end;
      padding: 10px;
    }

    .custom-checkout-thankyou__dialog {
      max-height: calc(100vh - 20px);
      border-radius: 16px;
    }

    .custom-checkout-thankyou__hero {
      padding: 30px 44px 20px;
    }

    .custom-checkout-thankyou__hero h2 {
      font-size: 23px;
    }

    .custom-checkout-thankyou__body {
      padding: 16px;
    }

    .custom-checkout-thankyou__meta,
    .custom-checkout-thankyou__actions {
      grid-template-columns: 1fr;
    }

    .custom-checkout-thankyou__item {
      grid-template-columns: 52px minmax(0, 1fr);
    }

    .custom-checkout-thankyou__item > strong {
      grid-column: 2;
      justify-self: start;
    }

    .custom-checkout-thankyou__image,
    .custom-checkout-thankyou__image img,
    .custom-checkout-thankyou__image-placeholder {
      width: 52px;
      height: 52px;
    }
  }
/* END_SECTION:thankyou */