/** Shopify CDN: Minification failed

Line 949:18 Unexpected "{"
Line 949:27 Expected ":"
Line 955:22 Unexpected "{"
Line 955:31 Expected ":"
Line 960:20 Unexpected "{"
Line 960:29 Expected ":"
Line 965:20 Unexpected "{"
Line 965:29 Expected ":"
Line 972:22 Unexpected "{"
Line 972:31 Expected ":"
... and 76 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custm-article (INDEX:12) */
/* ─── CUSTOM ARTICLE HERO ─── */
  .custm-article {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .custm-article__hero {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Tag / category label */
  .custm-article__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #FF6C01;
    margin-bottom: 10px;
  }

  .custm-article__tag::before {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: #FF6C01;
    border-radius: 1px;
  }

  /* Headline */
  .custm-article__headline {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    color: #1A1200;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }

  /* Subhead / description */
  .custm-article__sub {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: #6B5E4B;
    max-width: 560px;
    margin-bottom: 32px;
  }

  /* Image container */
  .custm-article__image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #FFF3E8;
  }

  .custm-article__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Floating read-time badge on the image */
  .custm-article__read-time {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 100px;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1A1200;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .custm-article__read-time svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
  }

  /* Divider before article body */
  .custm-article__divider {
    width: 100%;
    height: 1px;
    background: rgba(26, 18, 0, 0.08);
    margin: 48px 0 56px;
  }

  /* ─── Fade-in animation ─── */
  .custm-article__tag,
  .custm-article__headline,
  .custm-article__sub,
  .custm-article__image-wrap {
    opacity: 0;
    transform: translateY(16px);
    animation: custmArticleFadeUp 0.6s ease-out forwards;
  }

  .custm-article__tag         { animation-delay: 0.05s; }
  .custm-article__headline    { animation-delay: 0.12s; }
  .custm-article__sub         { animation-delay: 0.2s; }
  .custm-article__image-wrap  { animation-delay: 0.3s; }

  @keyframes custmArticleFadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ─── ARTICLE CONTENT ─── */
  .custm-article__content {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px 0;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #1A1200;
  }

  .custm-article__content h2,
  .custm-article__content h3,
  .custm-article__content h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    color: #1A1200;
    margin-top: 48px;
    margin-bottom: 16px;
    line-height: 1.25;
  }

  .custm-article__content h2 {
    font-size: clamp(24px, 4vw, 32px);
  }

  .custm-article__content h3 {
    font-size: clamp(20px, 3vw, 24px);
  }

  .custm-article__content h4 {
    font-size: 18px;
  }

  .custm-article__content p {
    margin-bottom: 24px;
    color: #1A1200;
  }

  .custm-article__content a {
    color: #FF6C01;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
  }

  .custm-article__content a:hover {
    opacity: 0.8;
  }

  .custm-article__content ul,
  .custm-article__content ol {
    margin-bottom: 24px;
    padding-left: 24px;
  }

  .custm-article__content li {
    margin-bottom: 8px;
  }

  .custm-article__content blockquote {
    border-left: 3px solid #FF6C01;
    margin: 32px 0;
    padding: 16px 24px;
    background: #FFF3E8;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #6B5E4B;
  }

  .custm-article__content img {
    border-radius: 12px;
    margin: 32px 0;
  }

  .custm-article__content figure {
    margin: 32px 0;
  }

  .custm-article__content figcaption {
    font-size: 14px;
    color: #6B5E4B;
    text-align: center;
    margin-top: 12px;
  }

  /* ─── SHARE SECTION ─── */
  .custm-article__share {
    max-width: 720px;
    margin: 48px auto 0;
    padding: 32px 24px;
    border-top: 1px solid rgba(26, 18, 0, 0.08);
  }

  /* ─── CTA SECTION ─── */
  .custm-article__cta {
    max-width: 720px;
    margin: 48px auto;
    padding: 0 24px;
    text-align: center;
  }

  .custm-article__cta-button {
    display: inline-block;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: #FF6C01;
    padding: 16px 48px;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(255, 108, 1, 0.3);
  }

  .custm-article__cta-button:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 108, 1, 0.4);
  }

  /* ─── CTA PRODUCT SECTION ─── */
  .custm-article__cta-product {
    max-width: 720px;
    margin: 48px auto;
    padding: 0 24px;
  }

  .custm-article__cta-product-inner {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    align-items: center;
    background: #ff852b;
    border-radius: 16px;
    padding: 24px;
    border: none;
  }

  .custm-article__cta-product-image {
    width: 140px;
    height: 92%;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
  }

  .custm-article__cta-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .custm-article__cta-product-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .custm-article__cta-product-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: #1A1200;
    margin: 0;
    line-height: 1.25;
    text-align: left;
  }

  .custm-article__cta-product-reviews {
    min-height: 20px;
  }

  .custm-article__cta-product-reviews .jdgm-star,
  .custm-article__cta-product-reviews .jdgm-prev-badge__stars,
  .custm-article__cta-product-reviews [data-jdgm-widget] .jdgm-star {
    color: #FF6C01 !important;
  }

  .custm-article__cta-product-desc {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    color: #6B5E4B;
    margin: 4px 0 0;
    line-height: 1.5;
  }

  .custm-article__cta-product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
  }

  .custm-article__cta-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #6B5E4B;
    background: rgba(255, 255, 255, 0.7);
    padding: 6px 10px;
    border-radius: 100px;
  }

  .custm-article__cta-product-badge svg {
    color: #FF6C01;
    flex-shrink: 0;
  }

  .custm-article__cta-product-button {
    display: inline-block;
    width: fit-content;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: #334fb4;
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    margin-top: 12px;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .custm-article__cta-product-button:hover {
    opacity: 0.95;
    transform: translateY(-1px);
  }

  /* ─── COMMENTS SECTION ─── */
  .custm-article__comments-wrapper {
    border-top: 1px solid rgba(26, 18, 0, 0.08);
    margin-top: 48px;
    padding: 48px 0;
  }

  .custm-article__comments-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .custm-article__comments-container h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    color: #1A1200;
    margin-bottom: 32px;
  }

  .custm-article__comments-container .field__input {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    border: 1px solid rgba(26, 18, 0, 0.15);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 15px;
    transition: border-color 0.2s ease;
  }

  .custm-article__comments-container .field__input:focus {
    border-color: #FF6C01;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 108, 1, 0.1);
  }

  .custm-article__comments-container .button {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    background: #FF6C01;
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .custm-article__comments-container .button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }

  /* ─── Responsive ─── */
  @media (max-width: 600px) {
    .custm-article__hero {
      padding: 0 16px;
    }

    .custm-article__sub {
      font-size: 16px;
      margin-bottom: 24px;
    }

    .custm-article__image-wrap {
      border-radius: 8px;
    }

    .custm-article__content {
      padding: 40px 16px 0;
      font-size: 16px;
    }

    .custm-article__content h2 {
      margin-top: 36px;
    }

    .custm-article__share {
      padding: 24px 16px;
    }

    .custm-article__cta {
      padding: 0 16px;
      margin: 36px auto;
    }

    .custm-article__cta-button {
      padding: 14px 40px;
      font-size: 15px;
    }

    .custm-article__cta-product {
      padding: 0 16px;
      margin: 36px auto;
    }

    .custm-article__cta-product-inner {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 24px;
      gap: 16px;
    }

    .custm-article__cta-product-image {
      width: 120px;
      height: 120px;
      margin: 0 auto;
    }

    .custm-article__cta-product-content {
      align-items: center;
    }

    .custm-article__cta-product-title {
      font-size: 20px;
      text-align: center;
    }

    .custm-article__cta-product-reviews {
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .custm-article__cta-product-badges {
      justify-content: center;
    }

    .custm-article__comments-container {
      padding: 0 16px;
    }
  }
/* END_SECTION:custm-article */

/* START_SECTION:custm-blog (INDEX:13) */
.custm-blog {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Header */
  .custm-blog__header {
    text-align: center;
    margin-bottom: 32px;
  }

  /* Featured Banner */
  .custm-blog__featured {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #FFF3E8 0%, #FFFAF5 100%);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 40px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .custm-blog__featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 18, 0, 0.08);
  }

  .custm-blog__featured-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #FF6C01;
    border-radius: 12px;
    color: #fff;
    flex-shrink: 0;
  }

  .custm-blog__featured-content {
    flex: 1;
  }

  .custm-blog__featured-title {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1A1200;
    margin: 0 0 2px;
  }

  .custm-blog__featured-desc {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    color: #6B5E4B;
    margin: 0;
  }

  .custm-blog__featured-arrow {
    color: #FF6C01;
    transition: transform 0.2s ease;
  }

  .custm-blog__featured:hover .custm-blog__featured-arrow {
    transform: translateX(4px);
  }

  .custm-blog__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    color: #1A1200;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
  }

  .custm-blog__description {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: #6B5E4B;
    max-width: 560px;
    margin: 0 auto;
  }

  /* Grid */
  .custm-blog__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Card */
  .custm-blog__card {
    display: flex;
    flex-direction: column;
  }

  .custm-blog__card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
  }

  .custm-blog__card-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #FFF3E8;
    margin-bottom: 16px;
  }

  .custm-blog__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .custm-blog__card-link:hover .custm-blog__card-image img {
    transform: scale(1.03);
  }

  .custm-blog__read-time {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 5px 12px;
    border-radius: 100px;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #1A1200;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .custm-blog__read-time svg {
    width: 12px;
    height: 12px;
    opacity: 0.5;
  }

  .custm-blog__card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .custm-blog__card-tag {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #FF6C01;
    margin-bottom: 8px;
  }

  .custm-blog__card-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    color: #1A1200;
    margin: 0 0 8px;
    transition: color 0.2s ease;
  }

  .custm-blog__card-link:hover .custm-blog__card-title {
    color: #FF6C01;
  }

  .custm-blog__card-excerpt {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #6B5E4B;
    margin: 0 0 12px;
    flex: 1;
  }

  .custm-blog__card-date {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 13px;
    color: #6B5E4B;
    opacity: 0.7;
  }

  /* Pagination */
  .custm-blog__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(26, 18, 0, 0.08);
  }

  .custm-blog__pagination-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1A1200;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .custm-blog__pagination-link:hover {
    color: #FF6C01;
  }

  .custm-blog__pagination-current {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    color: #6B5E4B;
  }

  /* CTA Product Card */
  .custm-blog__cta-product {
    margin-top: 48px;
  }

  .custm-blog__cta-product-inner {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    align-items: center;
    background: #ff852b;
    border-radius: 16px;
    padding: 24px;
  }

  .custm-blog__cta-product-image {
    width: 140px;
    height: 92%;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
  }

  .custm-blog__cta-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .custm-blog__cta-product-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .custm-blog__cta-product-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: #1A1200;
    margin: 0;
    line-height: 1.25;
    text-align: left;
  }

  .custm-blog__cta-product-reviews {
    min-height: 20px;
  }

  .custm-blog__cta-product-reviews .jdgm-star,
  .custm-blog__cta-product-reviews .jdgm-prev-badge__stars,
  .custm-blog__cta-product-reviews [data-jdgm-widget] .jdgm-star {
    color: #FF6C01 !important;
  }

  .custm-blog__cta-product-desc {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    color: #1A1200;
    margin: 4px 0 0;
    line-height: 1.5;
    opacity: 0.85;
  }

  .custm-blog__cta-product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
  }

  .custm-blog__cta-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #1A1200;
    background: rgba(255, 255, 255, 0.7);
    padding: 6px 10px;
    border-radius: 100px;
  }

  .custm-blog__cta-product-badge svg {
    color: #1A1200;
    flex-shrink: 0;
  }

  .custm-blog__cta-product-button {
    display: inline-block;
    width: fit-content;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: #334fb4;
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    margin-top: 12px;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .custm-blog__cta-product-button:hover {
    opacity: 0.95;
    transform: translateY(-1px);
  }

  /* Responsive */
  @media (max-width: 700px) {
    .custm-blog {
      padding: 32px 16px;
    }

    .custm-blog__header {
      margin-bottom: 32px;
    }

    .custm-blog__grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .custm-blog__card-title {
      font-size: 18px;
    }

    .custm-blog__featured {
      padding: 16px 20px;
      gap: 12px;
    }

    .custm-blog__featured-icon {
      width: 40px;
      height: 40px;
    }

    .custm-blog__featured-icon svg {
      width: 20px;
      height: 20px;
    }

    .custm-blog__featured-title {
      font-size: 15px;
    }

    .custm-blog__featured-desc {
      font-size: 13px;
    }

    .custm-blog__pagination {
      margin-top: 40px;
    }

    .custm-blog__cta-product {
      margin-top: 36px;
    }

    .custm-blog__cta-product-inner {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 24px;
      gap: 16px;
    }

    .custm-blog__cta-product-image {
      width: 120px;
      height: 120px;
      margin: 0 auto;
    }

    .custm-blog__cta-product-content {
      align-items: center;
    }

    .custm-blog__cta-product-title {
      font-size: 20px;
      text-align: center;
    }

    .custm-blog__cta-product-reviews {
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .custm-blog__cta-product-badges {
      justify-content: center;
    }
  }
/* END_SECTION:custm-blog */

/* START_SECTION:custm-faq (INDEX:16) */
#shopify-section-{{ section.id }} .custm-faq__header {
    text-align: center;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    #shopify-section-{{ section.id }} .custm-faq__header {
      margin-bottom: 3rem;
    }
  }

  #shopify-section-{{ section.id }} .custm-faq__heading {
    color: rgb(var(--color-foreground));
    margin-bottom: 1rem;
  }

  #shopify-section-{{ section.id }} .custm-faq__subtitle {
    color: rgb(var(--color-foreground));
    font-weight: 600;
    font-size: 1.25rem;
  }

  @media (min-width: 768px) {
    #shopify-section-{{ section.id }} .custm-faq__subtitle {
      font-size: 1.5rem;
    }
  }

  #shopify-section-{{ section.id }} .custm-faq__container {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    #shopify-section-{{ section.id }} .custm-faq__container {
      gap: 1.5rem;
    }
  }

  #shopify-section-{{ section.id }} .custm-faq__item {
    background-color: rgb(var(--color-background));
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }

  #shopify-section-{{ section.id }} .custm-faq__item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  }

  #shopify-section-{{ section.id }} .custm-faq__button {
    width: 100%;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  @media (min-width: 768px) {
    #shopify-section-{{ section.id }} .custm-faq__button {
      padding: 1.25rem 1.5rem;
    }
  }

  #shopify-section-{{ section.id }} .custm-faq__button:hover {
    background-color: rgba(var(--color-foreground), 0.04);
  }

  #shopify-section-{{ section.id }} .custm-faq__question {
    padding-right: 1rem;
    flex: 1;
    color: rgb(var(--color-foreground));
    font-size: 1.5rem;
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);
    letter-spacing: 0.06rem;
    line-height: 1.6;
  }

  @media screen and (min-width: 750px) {
    #shopify-section-{{ section.id }} .custm-faq__question {
      font-size: 1.6rem;
    }
  }

  #shopify-section-{{ section.id }} .custm-faq__icon {
    flex-shrink: 0;
    color: rgb(var(--color-foreground));
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #shopify-section-{{ section.id }} .custm-faq__item[data-expanded="true"] .custm-faq__icon {
    transform: rotate(180deg);
  }

  #shopify-section-{{ section.id }} .custm-faq__answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  #shopify-section-{{ section.id }} .custm-faq__answer {
    padding: 0 1.25rem 1.25rem 1.25rem;
    color: rgb(var(--color-foreground));
    font-size: 1.5rem;
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);
    letter-spacing: 0.06rem;
    line-height: 1.6;
  }

  @media screen and (min-width: 750px) {
    #shopify-section-{{ section.id }} .custm-faq__answer {
      font-size: 1.6rem;
    }
  }

  @media (min-width: 768px) {
    #shopify-section-{{ section.id }} .custm-faq__answer {
      padding: 0 1.5rem 1.5rem 1.5rem;
    }
  }
/* END_SECTION:custm-faq */

/* START_SECTION:custm-features (INDEX:18) */
#shopify-section-{{ section.id }} .custm-features {
    padding: var(--padding-y) 0;
  }

  #shopify-section-{{ section.id }} .custm-features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  #shopify-section-{{ section.id }} .custm-features .content-wrapper {
    max-width: 80rem;
    margin: 0 auto;
  }

  #shopify-section-{{ section.id }} .custm-features .main-heading {
    font-weight: 700;
    font-size: calc(var(--font-heading-scale) * 2.4rem);
    color: rgb(var(--color-foreground));
    text-align: center;
    margin-bottom: 1rem;
  }

  @media only screen and (min-width: 750px) {
    #shopify-section-{{ section.id }} .custm-features .main-heading {
      font-size: calc(var(--font-heading-scale) * 5.2rem);
    }
  }

  @media (min-width: 1024px) {
    #shopify-section-{{ section.id }} .custm-features .main-heading {
      font-size: 3rem;
    }
  }

  #shopify-section-{{ section.id }} .custm-features .sub-heading {
    font-weight: 700;
    color: rgb(var(--color-foreground));
    text-align: center;
    margin-bottom: 3rem;
  }

  #shopify-section-{{ section.id }} .custm-features .product-showcase {
    margin-bottom: 3rem;
    text-align: center;
  }

  #shopify-section-{{ section.id }} .custm-features .product-image-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #shopify-section-{{ section.id }} .custm-features .product-image-wrapper svg {
    color: rgb(var(--color-foreground));
  }

  #shopify-section-{{ section.id }} .custm-features .product-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
  }

  #shopify-section-{{ section.id }} .custm-features .product-description {
    color: rgb(var(--color-foreground));
    line-height: 1.6;
    font-style: italic;
    max-width: 48rem;
    margin: 0 auto;
  }

  #shopify-section-{{ section.id }} .custm-features .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  #shopify-section-{{ section.id }} .custm-features .feature-card {
    background: rgb(var(--color-background));
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }

  #shopify-section-{{ section.id }} .custm-features .feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }

  #shopify-section-{{ section.id }} .custm-features .feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgb(var(--color-button));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: rgb(var(--color-background));
  }

  #shopify-section-{{ section.id }} .custm-features .feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  #shopify-section-{{ section.id }} .custm-features .feature-title {
    font-weight: 700;
    color: rgb(var(--color-foreground));
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: large;
  }

  #shopify-section-{{ section.id }} .custm-features .feature-description {
    color: rgb(var(--color-foreground));
    text-align: center;
    line-height: 1.625;
  }

  @media (min-width: 768px) {
    #shopify-section-{{ section.id }} .custm-features .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    #shopify-section-{{ section.id }} .custm-features .main-heading {
      font-size: 3rem;
    }

    #shopify-section-{{ section.id }} .custm-features .sub-heading {
      font-size: 2.25rem;
    }

    #shopify-section-{{ section.id }} .custm-features .features-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
/* END_SECTION:custm-features */

/* START_SECTION:custm-page (INDEX:20) */
.custm-page {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* ─── HERO ─── */
  .custm-page__hero {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .custm-page__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #FF6C01;
    margin-bottom: 10px;
  }

  .custm-page__tag::before {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: #FF6C01;
    border-radius: 1px;
  }

  .custm-page__headline {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    color: #1A1200;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }

  .custm-page__sub {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: #6B5E4B;
    max-width: 560px;
    margin-bottom: 32px;
  }

  .custm-page__image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #FFF3E8;
  }

  .custm-page__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .custm-page__divider {
    width: 100%;
    height: 1px;
    background: rgba(26, 18, 0, 0.08);
    margin: 48px 0 56px;
  }

  /* ─── CONTENT ─── */
  .custm-page__content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px 48px;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #1A1200;
  }

  .custm-page__content h2,
  .custm-page__content h3,
  .custm-page__content h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    color: #1A1200;
    margin-top: 48px;
    margin-bottom: 16px;
    line-height: 1.25;
  }

  .custm-page__content h2 {
    font-size: clamp(24px, 4vw, 32px);
  }

  .custm-page__content h3 {
    font-size: clamp(20px, 3vw, 24px);
  }

  .custm-page__content h4 {
    font-size: 18px;
  }

  .custm-page__content p {
    margin-bottom: 24px;
    color: #1A1200;
  }

  .custm-page__content a {
    color: #FF6C01;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
  }

  .custm-page__content a:hover {
    opacity: 0.8;
  }

  .custm-page__content ul,
  .custm-page__content ol {
    margin-bottom: 24px;
    padding-left: 24px;
  }

  .custm-page__content li {
    margin-bottom: 8px;
  }

  .custm-page__content blockquote {
    border-left: 3px solid #FF6C01;
    margin: 32px 0;
    padding: 16px 24px;
    background: #FFF3E8;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #6B5E4B;
  }

  .custm-page__content img {
    border-radius: 12px;
    margin: 32px 0;
    max-width: 100%;
    height: auto;
  }

  .custm-page__content figure {
    margin: 32px 0;
  }

  .custm-page__content figcaption {
    font-size: 14px;
    color: #6B5E4B;
    text-align: center;
    margin-top: 12px;
  }

  /* ─── Fade-in animation ─── */
  .custm-page__tag,
  .custm-page__headline,
  .custm-page__sub,
  .custm-page__image-wrap {
    opacity: 0;
    transform: translateY(16px);
    animation: custmPageFadeUp 0.6s ease-out forwards;
  }

  .custm-page__tag         { animation-delay: 0.05s; }
  .custm-page__headline    { animation-delay: 0.12s; }
  .custm-page__sub         { animation-delay: 0.2s; }
  .custm-page__image-wrap  { animation-delay: 0.3s; }

  @keyframes custmPageFadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ─── Responsive ─── */
  @media (max-width: 600px) {
    .custm-page__hero {
      padding: 0 16px;
    }

    .custm-page__sub {
      font-size: 16px;
      margin-bottom: 24px;
    }

    .custm-page__image-wrap {
      border-radius: 8px;
    }

    .custm-page__content {
      padding: 0 16px 36px;
      font-size: 16px;
    }

    .custm-page__content h2 {
      margin-top: 36px;
    }
  }
/* END_SECTION:custm-page */

/* START_SECTION:custm-pillow-compare (INDEX:21) */
.stop-blaming-pillow {
    background-color: #FFF4ED;
    padding: 60px 20px;
    width: 100%;
  }

  .stop-blaming-pillow__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .stop-blaming-pillow__heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D1B12;
    margin: 0 0 12px 0;
    line-height: 1.2;
  }

  .stop-blaming-pillow__subheading {
    font-size: 1.25rem;
    color: #2D1B12;
    margin: 0 0 24px 0;
    font-weight: 400;
  }

  .stop-blaming-pillow__description {
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 20px;
    background-color: #FFE5D1;
    border-radius: 8px;
    color: #2D1B12;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .stop-blaming-pillow__comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 40px auto;
  }

  .comparison-card {
    background-color: #FFE5D1;
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .comparison-card--highlight {
    background-color: #FF6B35;
    color: white;
  }

  .comparison-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    color: #2D1B12;
  }

  .comparison-card--highlight .comparison-card__icon {
    color: white;
  }

  .comparison-card__icon svg {
    width: 100%;
    height: 100%;
  }

  .comparison-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 24px 0;
    color: #2D1B12;
  }

  .comparison-card--highlight .comparison-card__title {
    color: white;
  }

  .comparison-card__stat {
    margin-bottom: 24px;
  }

  .stat-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #FFD4BA;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .stat-circle--large {
    width: 120px;
    height: 120px;
  }

  .comparison-card--highlight .stat-circle {
    background-color: #FF8C5A;
  }

  .stat-circle__inner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #FFE5D1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .stat-circle__inner--large {
    width: 85px;
    height: 85px;
  }

  .comparison-card--highlight .stat-circle__inner {
    background-color: white;
  }

  .stat-circle__text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D1B12;
  }

  .stat-circle__text--large {
    font-size: 1.75rem;
  }

  .comparison-card--highlight .stat-circle__text {
    color: #FF6B35;
  }

  .comparison-card__description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #2D1B12;
    margin: 0;
  }

  .comparison-card--highlight .comparison-card__description {
    color: white;
  }

  .stop-blaming-pillow__cta {
    margin-top: 40px;
  }

  .stop-blaming-pillow__button {
    display: inline-block;
    background-color: #FF6B35;
    color: white;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .stop-blaming-pillow__button:hover {
    background-color: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  }

  @media (max-width: 768px) {
    .stop-blaming-pillow {
      padding: 40px 16px;
    }

    .stop-blaming-pillow__heading {
      font-size: 1.75rem;
    }

    .stop-blaming-pillow__subheading {
      font-size: 1rem;
    }

    .stop-blaming-pillow__comparison {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .stat-circle {
      width: 90px;
      height: 90px;
    }

    .stat-circle--large {
      width: 100px;
      height: 100px;
    }

    .stat-circle__inner {
      width: 65px;
      height: 65px;
    }

    .stat-circle__inner--large {
      width: 75px;
      height: 75px;
    }

    .stop-blaming-pillow__button {
      padding: 16px 32px;
      font-size: 0.95rem;
    }
  }
/* END_SECTION:custm-pillow-compare */

/* START_SECTION:custm-react-app (INDEX:22) */
.custm-react-app-wrapper {
    width: 100%;
    min-height: 100vh;
  }

  #root {
    width: 100%;
  }
/* END_SECTION:custm-react-app */

/* START_SECTION:custm-rich-text (INDEX:23) */
.rich-text__image {
    width: 100%;
  }

  .rich-text__image-wrapper {
    display: block;
    margin: 0 auto;
    width: 100%;
  }

  .rich-text__image--small {
    max-width: 400px;
  }

  .rich-text__image--medium {
    max-width: 700px;
  }

  .rich-text__image--large {
    max-width: 1000px;
  }

  .rich-text__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }

  .rich-text__blocks.left .rich-text__image-wrapper {
    margin-left: 0;
    margin-right: auto;
  }

  .rich-text__blocks.right .rich-text__image-wrapper {
    margin-left: auto;
    margin-right: 0;
  }

  .rich-text__image-wrapper:hover {
    opacity: 0.95;
    transition: opacity 0.2s ease;
  }

  .rich-text__product-price {
    width: 100%;
  }

  .rich-text__product-price .custm-price-wrap {
    display: inline-block;
  }

  .rich-text__blocks.center .custm-price-wrap {
    margin: 0 auto;
  }

  .rich-text__blocks.right .custm-price-wrap {
    margin-left: auto;
    margin-right: 0;
  }

  .rich-text__product-buy {
    width: 100%;
  }
/* END_SECTION:custm-rich-text */

/* START_SECTION:custm-welcome-popup (INDEX:25) */
.welcome-popup {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    pointer-events: none;
    background: transparent;
  }

  .welcome-popup[open] {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
  }

  .welcome-popup__overlay {
    position: absolute;
    inset: 0;
    transition: opacity 0.4s ease;
  }

  .welcome-popup__card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 580px;
    background-color: rgb(var(--color-background));
    background: var(--gradient-background, rgb(var(--color-background)));
    border-radius: 1.25rem;
    padding: 3.5rem 3rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: bottom right;
    max-height: 90vh;
    overflow-y: auto;
  }

  .welcome-popup[open] .welcome-popup__card {
    transform: translateY(0);
    opacity: 1;
  }

  .welcome-popup__card--minimizing {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    transform: scale(0.05) translateX(40%) translateY(60%);
    opacity: 0;
  }

  .welcome-popup__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: rgba(var(--color-foreground), 0.4);
    cursor: pointer;
    padding: 0.25rem;
    line-height: 0;
    transition: color 0.2s ease;
    z-index: 1;
  }

  .welcome-popup__close:hover {
    color: rgb(var(--color-foreground));
  }

  .welcome-popup__step {
    display: none;
    text-align: center;
    animation: welcomeFadeIn 0.3s ease forwards;
  }

  .welcome-popup__step--active {
    display: block;
  }

  @keyframes welcomeFadeIn {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .welcome-popup__badge {
    display: inline-block;
    background: rgba(var(--color-button), 0.15);
    color: rgb(var(--color-button));
    font-size: 1.0625rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
  }

  .welcome-popup__heading {
    color: rgb(var(--color-foreground));
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1.25rem;
  }

  .welcome-popup__body {
    color: rgba(var(--color-foreground), 0.75);
    font-size: 1.375rem;
    line-height: 1.6;
    margin: 0 0 2rem;
  }

  .welcome-popup__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .welcome-popup__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0.625rem;
    font-size: 1.3125rem;
    font-weight: 600;
    cursor: pointer;
    padding: 1.125rem 2rem;
    transition: opacity 0.2s ease, transform 0.15s ease;
    line-height: 1;
  }

  .welcome-popup__btn:hover {
    opacity: 0.9;
  }

  .welcome-popup__btn:active {
    transform: scale(0.98);
  }

  .welcome-popup__btn--primary {
    background: rgb(var(--color-button));
    color: rgb(var(--color-button-text));
  }

  .welcome-popup__btn--secondary {
    background: transparent;
    color: rgba(var(--color-foreground), 0.45);
    padding: 0.625rem 1rem;
    font-weight: 400;
    font-size: 1.125rem;
  }

  .welcome-popup__btn--secondary:hover {
    color: rgba(var(--color-foreground), 0.7);
    opacity: 1;
  }

  .welcome-popup__btn--submit {
    width: 100%;
    margin-top: 0.75rem;
  }

  .welcome-popup__btn--submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .welcome-popup__btn--done {
    margin-top: 0.75rem;
  }

  .welcome-popup__form-group {
    text-align: left;
  }

  .welcome-popup__input {
    width: 100%;
    padding: 1.125rem 1.25rem;
    border: 2px solid rgba(var(--color-foreground), 0.15);
    border-radius: 0.625rem;
    background: rgba(var(--color-foreground), 0.04);
    color: rgb(var(--color-foreground));
    font-size: 1.25rem;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
  }

  .welcome-popup__input::placeholder {
    color: rgba(var(--color-foreground), 0.4);
  }

  .welcome-popup__input:focus {
    border-color: rgb(var(--color-button));
  }

  .welcome-popup__error {
    color: #c0392b;
    font-size: 1.0625rem;
    margin: 0.5rem 0 0;
    text-align: left;
  }

  .welcome-popup__disclaimer {
    color: rgba(var(--color-foreground), 0.4);
    font-size: 1rem;
    margin: 1rem 0 0;
    text-align: center;
  }

  .welcome-popup__checkmark {
    color: #27ae60;
    margin-bottom: 1.25rem;
  }

  .welcome-popup__checkmark svg {
    display: inline-block;
  }

  .welcome-popup__success-image {
    margin: 1.5rem 0;
    border-radius: 0.75rem;
    overflow: hidden;
  }

  .welcome-popup__success-image img {
    display: block;
    width: 100%;
    height: auto;
  }

  .welcome-popup__tip-heading {
    color: rgb(var(--color-foreground));
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1rem;
  }

  .welcome-popup__tip-body {
    color: rgba(var(--color-foreground), 0.7);
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: left;
  }

  .welcome-popup__tip-body p {
    margin: 0 0 0.75rem;
  }

  .welcome-popup__tip-body p:last-child {
    margin-bottom: 0;
  }

  /* FAB (floating action button) */
  .welcome-popup__fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: rgb(var(--color-button));
    color: rgb(var(--color-button-text));
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    pointer-events: auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: welcomeFabPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .welcome-popup__fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  }

  .welcome-popup__fab:active {
    transform: scale(0.95);
  }

  .welcome-popup__fab[hidden] {
    display: none;
  }

  @keyframes welcomeFabPopIn {
    0% {
      opacity: 0;
      transform: scale(0.5);
    }
    70% {
      transform: scale(1.1);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @media screen and (max-width: 749px) {
    .welcome-popup {
      padding: 1rem;
    }

    .welcome-popup__card {
      max-width: 100%;
      border-radius: 1.25rem;
      padding: 2.5rem 1.5rem 3rem;
      max-height: 90vh;
    }

    .welcome-popup__heading {
      font-size: 2rem;
    }

    .welcome-popup__body {
      font-size: 1.1875rem;
    }
  }
/* END_SECTION:custm-welcome-popup */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:product-media-modal (INDEX:89) */
/* Modal slider layout */
  .product-media-modal .modal-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: block !important;
  }

  .product-media-modal__list {
    display: flex;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    margin: 0;
    list-style: none;
    height: 100%;
    width: 100%;
  }

  .product-media-modal__item {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
    overflow: hidden;
  }

  .product-media-modal__item > * {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    display: block !important;
  }

  .product-media-modal__item img,
  .product-media-modal__item video {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    background: none;
    display: block !important;
  }

  /* Smaller on larger screens */
  @media screen and (min-width: 990px) {
    .product-media-modal__item > * {
      max-width: 75%;
      max-height: 75%;
    }

    .product-media-modal__item img,
    .product-media-modal__item video {
      max-width: 75%;
      max-height: 75%;
      background: none;
    }
  }

  /* Modal slider buttons - positioned on left/right sides */
  .modal-slider-buttons {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 200;
  }

  .modal-slider-buttons .slider-button {
    pointer-events: all;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .modal-slider-buttons .slider-button--prev {
    left: 2rem;
  }

  .modal-slider-buttons .slider-button--next {
    right: 2rem;
  }

  /* Only apply hover effects on devices that support hover */
  @media (hover: hover) {
    .modal-slider-buttons .slider-button:hover:not([disabled]) {
      background: rgba(255, 255, 255, 0.2);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transform: translateY(-50%) scale(1.1);
    }
  }

  /* Ensure no active/focus state persists on mobile */
  .modal-slider-buttons .slider-button:active,
  .modal-slider-buttons .slider-button:focus {
    outline: none;
  }

  .modal-slider-buttons .slider-button[disabled] {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .modal-slider-buttons .slider-button svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: rgb(var(--color-foreground));
  }

  /* Desktop sizing */
  @media screen and (min-width: 990px) {
    .modal-slider-buttons .slider-button {
      width: 5rem;
      height: 5rem;
    }

    .modal-slider-buttons .slider-button--prev {
      left: 3rem;
    }

    .modal-slider-buttons .slider-button--next {
      right: 3rem;
    }

    .modal-slider-buttons .slider-button svg {
      width: 1.8rem;
      height: 1.8rem;
    }
  }

  @media screen and (max-width: 749px) {
    .modal-slider-buttons .slider-button {
      width: 3.5rem;
      height: 3.5rem;
    }

    .modal-slider-buttons .slider-button--prev {
      left: 0.5rem;
    }

    .modal-slider-buttons .slider-button--next {
      right: 0.5rem;
    }

    .modal-slider-buttons .slider-button svg {
      width: 1.3rem;
      height: 1.3rem;
    }

    /* Override Dawn's default hiding of non-active items on mobile */
    .product-media-modal__content .modal-slider,
    .product-media-modal__content .product-media-modal__list,
    .product-media-modal__content .product-media-modal__item {
      display: flex !important;
    }

    /* Ensure all media content is visible in modal on mobile */
    .product-media-modal__item .global-media-settings,
    .product-media-modal__item img,
    .product-media-modal__item video,
    .product-media-modal__item deferred-media,
    .product-media-modal__item product-model {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
    }
  }
/* END_SNIPPET:product-media-modal */