/** Shopify CDN: Minification failed

Line 7:0 Unexpected "/"

**/
/* Place any CSS overrides in this file. */
/.h2.text-box-max-width.richtext-block.text-link-animated-custom-color h1 {
    font-size: 150px !important;
}

/* jost --- */

/* Apply Jost font to product titles */
.product-grid--title a {
    font-weight: 500; 
}

/* Apply Jost font to footer headers */
.footer-header {
    font-weight: 500; 
}

/* Apply Jost font to footer links */
.links-footer ul.footer-content li a,
.newsletter-footer .footer-email-input,
.newsletter-footer .footer-email-submit,
.social-media-footer ul#sm-icons li a {
    font-weight: 400;
} 

/* Adjust margin for the title */
.shopify-policy__title {
    margin-top: 50px; /* Adjust as needed */
    margin-bottom: 30px; /* Adjust as needed */
}

/* Adjust font size for the content */
.shopify-policy__body .rte p {
    font-size: 16px; /* Adjust as needed */
}

/*.text-advert-section--header {
    font-family: 'Jost', sans-serif !important;
} */

.collection-main-body-inner .product-grid--title a {
    font-size: 24px !important;
}

/* Hide the pagination and spinner wrapper in the Judge.me review widget */
.jdgm-paginate, 
.jdgm-rev-widg__paginate-spinner-wrapper {
    display: none !important;
}


/* ============================= blog ============= */
body.template-blog {
  /* === PAGE BACKGROUND === */
/* Balanced outer wrapper */
/* Desktop & default */
.wrapper-spacing--v--template {
  background-color: #0A1F1D;
  padding: 52px 16px !important; /* Equal top and bottom */
}

/* Mobile: Adjust for better visual balance */
@media (max-width: 768px) {
  .wrapper-spacing--v--template {
    padding: 36px 16px !important; /* Slightly reduced for small screens */
  }
}

/* Minimal title wrapper */
.template-title--wrapper {
  margin: 0 !important;
  padding: 0 !important;
}

/* H1 spacing */
.template-title--wrapper h1 {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.1;
}


  .width--content {
    max-width: 1080px;
    margin: 0 auto;
  }

  /* === BLOG TITLE === */
  .template-title--wrapper h1 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #E5FF75;
  }

  /* === GRID LAYOUT === */
  .article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 0 auto;
    padding: 40px 16px;
  }

  /* === BLOG CARD === */
  .article--indiv {
    display: flex;
    flex-direction: column;
    background-color: #133632;
    border-radius: 14px; /* ← preserved */
    overflow: hidden;
    min-height: auto;
  }

  .article__featured-image-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  .article__featured-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0; /* don't double radius on image */
  }

  .grid__item--blog-main {
    padding: 16px;
    font-family: 'Inter', sans-serif;
    color: #e8ffc2;
  }

  .blog-main--article-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #E5FF75;
    margin-bottom: 8px;
   /* font-family: 'Jost', sans-serif; */
  }

  .blog-main--article-title a {
    color: inherit;
    text-decoration: none;
  }

  .blog-main--article-title a:hover {
    text-decoration: underline;
  }

  .rte {
    font-size: 14px;
    line-height: 1.5;
    color: #e8ffc2;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;         /* limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-main--article-read-more-link {
    display: none;
  }

  .indiv-post-time {
    font-size: 12px;
    color: #FF6231; /* Relief orange restored */
    margin-bottom: 6px;
    display: block;
    font-weight: 500;
    letter-spacing: 0.3px;
  }



  /* === PAGINATION === */
  .blog-pagination-wrapper {
    margin-top: 60px;
    text-align: center;
  }

  .pagination {
    display: inline-flex;
    gap: 10px;
  }

  .pagination a:hover {
    background-color: #FF6231; /* Your orange */
    color: #ffffff;
  }


  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    .article-grid {
      padding: 32px 12px;
    }

    .blog-main--article-title {
      font-size: 17px;
    }

    .rte {
      font-size: 15px;
    }
  }
}

/* ================= BLOG PAGINATION ================ */

/* All page numbers (non-active) */
.pagination--default .pagination-number a {
  background-color: #E5FF75;
  color: #0A1F1D;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  min-width: 36px;
  text-align: center;
  transition: all 0.2s ease;
}

/* Hover effect for inactive pages */
.pagination--default .pagination-number a:hover {
  background-color: #FF6231;
  color: #FFFFFF;
}

/* Currently active page */
.pagination--default .pagination-number.active a,
.pagination--default .pagination-number.active {
  background-color: #FF6231;
  color: #FFFFFF;
  pointer-events: none;
  font-weight: 700;
  border-radius: 6px;
}

/* Arrow wrapper */
.pagination--default .pagination-arrow a {
  background: transparent;
  padding: 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #CDFF58 !important;
  transition: all 0.2s ease;
}

/* Arrow icon */
.pagination--default .pagination-arrow a svg {
  stroke: #CDFF58 !important;
  transition: stroke 0.2s ease;
}

/* Hover effect for arrow */
.pagination--default .pagination-arrow a:hover svg {
  stroke: #FF6231;
}



/* === BLOG MOBILE GRID OPTIMIZED === */
@media (max-width: 768px) {
  body.template-blog .article-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    padding: 20px 12px !important;
  }

  body.template-blog .article--indiv {
    border-radius: 10px;
    min-height: unset;
    padding: 0;
  }

  body.template-blog .article__featured-image-wrap {
    aspect-ratio: 4 / 5;
    margin-bottom: 0 !important;
  }

  body.template-blog .article--indiv .grid__item--blog-main {
    padding: 0 8px 10px !important;
    margin-top: 0 !important;
  }

  body.template-blog .blog-main--article-title {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 4px;
  }

  body.template-blog .rte {
    font-size: 12px;
    -webkit-line-clamp: 2;
    line-height: 1.4;
    margin-bottom: 4px;
  }

  body.template-blog .indiv-post-time {
    font-size: 10px;
    margin-top: 2px;
    margin-bottom: 0;
    color: #FF6231;
  }
  
    /* === 💥 Final Fix: Eliminate all vertical gaps below blog images === */
  body.template-blog .article__featured-image-wrap,
  body.template-blog .article__featured-image-wrap > a,
  body.template-blog .article__featured-image-wrap > a > .responsive-image-wrapper,
  body.template-blog .article__featured-image-wrap img.theme-img {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
    vertical-align: top !important;
    border: none !important;
    max-width: 100% !important;
    height: auto !important; /* ← restore image height correctly */
    object-fit: cover !important;
    aspect-ratio: 4 / 5; /* ← enforce shape consistency */
  }
}


/* reduce font size on phone */
@media (max-width: 768px) {
  body.template-article h1,
  body.template-blog h1 {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  body.template-article h2,
  body.template-blog h2 {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }

  body.template-article h3,
  body.template-blog h3 {
    font-size: 20px !important;
    line-height: 1.4 !important;
  }

  body.template-article h4,
  body.template-blog h4 {
    font-size: 18px !important;
  }

  body.template-article h5,
  body.template-blog h5 {
    font-size: 16px !important;
  }

  body.template-article h6,
  body.template-blog h6 {
    font-size: 15px !important;
  }

  body.template-article p,
  body.template-blog p,
  body.template-article li,
  body.template-blog li,
  body.template-article .rte p,
  body.template-blog .rte p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  body.template-blog .blog-main--article-title {
    font-size: 14px !important;
    line-height: 1.3 !important;
  }
}

/* end of blog page styling */

/* === ARTICLE PAGE - Centered Layout === */
html, body {
  max-width: 100vw;
}

body.template-article {
  background-color: #0A1F1D;
  color: #e8ffc2;
  /* font-family: 'Jost', sans-serif; */
}

/* Hero Image Full Width and Centered */
body.template-article .article--image-wrapper {
  width: 100vw;
  max-width: 50%;
  border-radius: 14px;
  margin: 0 auto 40px;
  overflow: hidden;
}

body.template-article .article--image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: none;
  margin: 0 auto;
}

/* Make image wrapper 100% on smaller screens */
@media screen and (max-width: 768px) {
  body.template-article .article--image-wrapper {
    max-width: 100%;
  }
}

/* Title + Date */
.template-title--wrapper {
  text-align: center;
  padding: 80px 24px 40px;
  max-width: 100%;
}
.template-title--wrapper h1 {
  font-size: 46px;
  font-weight: 700;
  color: #E5FF75;
  display: block;
  margin-bottom: 12px; /* This will now work if needed */
}

.template-title--wrapper .blog-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #d3fcbf;
  padding-top: 22px;      /* guaranteed breathing space */
}
.template-title--wrapper time {
  font-size: 13px;
  color: #d3fcbf;
  margin-top: 8px;
  display: block;
}

/* Article Content Wrapper */
.centered-article-wrapper {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .centered-article-wrapper {
    max-width: 780px;
    padding: 60px 24px;
  }
}

/* Article Body */
.relief-blog-post {
  background-color: #0A1F1D;
  padding: 0px;
  border-radius: 14px;
  font-size: 17px;
  line-height: 1.7;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 60px;
}
.relief-blog-post h2 {
  font-size: 26px;
  line-height: 1.4;
  margin-top: 60px;
  margin-bottom: 24px;
  color: #E5FF75;
  font-weight: 600;
}

.relief-blog-post h3 {
  font-size: 22px;
  line-height: 1.4;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #E5FF75;
  font-weight: 500;
}

.relief-blog-post h4 {
  font-size: 20px;   /* 4 px below h3 keeps a clear hierarchy */
  line-height: 1.4;  /* matches your other headings */
  margin-top: 28px;  /* a bit tighter than h3 */
  margin-bottom: 12px;
  color: #E5FF75;
  font-weight: 500;  /* or 400 if you want a lighter feel */
}

.relief-blog-post h5 {
  font-size: 16px;    /* another 2 px drop keeps it distinct yet readable */
  line-height: 1.4;
  margin-top: 24px;   /* a bit tighter again */
  margin-bottom: 8px;
  color: #E5FF75;
  font-weight: 500;   /* or 400 if you’d like it subtler */
}

.relief-blog-post h2,
.relief-blog-post h3 {
  color: #E5FF75;
  font-weight: 600;
  margin: 2em 0 1em;
}


.relief-blog-post a {
  color: #FF6231;
  text-decoration: underline;
}
.relief-blog-post a:hover {
  text-decoration: none;
}

.relief-blog-post p {
  font-size: 20px; /* ← or any size you prefer */
}

/* Author Byline */
.article-author-byline {
  text-align: left;
  font-style: italic;
  font-size: 18px;
  color: #d3fcbf;
  margin: 24px 0 60px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}


/* Author Bio Section */
.author-bio-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  background-color: black;
  padding: 0;
  margin-top: 100px;
  width: 100%;
  min-height: 600px;
}
.author-bio-img {
  width: 50%;
  overflow: hidden;
}
.author-bio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-bio-text {
  width: 50%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: black;
  color: #e8ffc2;
}
.author-bio-text h2 {
  font-size: 28px;
  color: #CCFF49;
  margin-bottom: 20px;
}
.author-bio-text p {
  font-size: 16px;
  line-height: 1.8;
}

.author-title-wrapper {
  margin-bottom: 20px;
}

.author-title {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: #E5FF75;
  display: inline-block; /* ← CHANGED from block */
  line-height: 1.6;
}


.author-bio-divider {
  border: none;
  height: 1px;
  background: #4c695f;
  margin: 20px 0;
}


/* Reference Divider */
.reference-divider {
  border: none;
  height: 1px;
  background: #4c695f;
  margin: 80px 0 60px;
}

/* Prev/Next Article Navigation */
.article-prev-next-wrapper {
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: #E5FF75;
  margin: 30px auto 0;
  max-width: 780px;
}

.article-prev-next-wrapper a {
  color: #E5FF75;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.article-prev-next-wrapper a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.article-prev-next-wrapper svg {
  stroke: #FF6231 !important;
  color: #FF6231 !important;
  fill: none !important;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* Comments Section */
#comments {
  background-color: #133632;
  padding: 30px;
  border-radius: 14px;
  color: #e8ffc2;
  margin: 60px auto;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
#comments input,
#comments textarea {
  width: 100%;
  background-color: #0A1F1D;
  border: 1px solid #4c695f;
  color: #e8ffc2;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 12px;
}
#comments input::placeholder,
#comments textarea::placeholder {
  color: #b7ffc7;
  opacity: 0.8;
}
#comments .btn.article-comment--btn {
  background-color: #FF6231;
  color: white;
  border: none;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
}
#comments .btn.article-comment--btn:hover {
  background-color: #e14e1f;
}

/* Social Sharing */
.social-sharing {
  text-align: center;
  margin: 40px auto;
  width: 100%;
  max-width: 1000px;
}

/* Responsive Author Section */
@media screen and (max-width: 767px) {
  .author-bio-section {
    flex-direction: column;
    min-height: auto;
  }
  .author-bio-img,
  .author-bio-text {
    width: 100%;
  }
  .author-bio-text {
    padding: 40px 20px;
  }
}

.blog-section-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 60px auto;
  max-width: 780px;
  width: 100%;
}

.author-social-link {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  color: #E5FF75;
  line-height: 1.6;
  word-break: break-word;
}

.author-social-link a {
  display: inline-block;
  color: #E5FF75;
  text-decoration: none;
  font-weight: 500;
}

.author-social-link a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* === Resize all article images except the hero === */
/* === Standard body image container (desktop) === */
body.template-article .relief-blog-post img {
  width: 700px;
  height: 600px;
  object-fit: cover;
  border-radius: 8px;
  margin: 24px auto;
  display: block;
}

/* Hero image stays full-width */
body.template-article .article--image-wrapper img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
}

/* === Mobile fix: consistent height, cropped fill === */
@media screen and (max-width: 768px) {
  body.template-article .relief-blog-post img {
    width: 100%;
    height: 300px;           /* Fixed height for all */
    object-fit: cover;       /* Crop to fit container */
    border-radius: 8px;
    margin: 16px auto;
    display: block;
  }
}

/* from the blog card */
/* === BLOG PREVIEW CARD STYLING === */
.article-image-wrap img,
.article-image img,
.responsive-image-wrapper img {
  border-radius: 10px !important;
  overflow: hidden;
}

/* Make blog post titles smaller */
.homepage-blog--title {
  font-size: 18px !important;
  line-height: 1.4;
  margin-top: 12px;
}

/* Slightly darker, bright green subtitle/excerpt */
.home-blog-excerpt p {
  color: #a5ff7c !important; /* Slightly darker neon green */
  font-size: 15px;
  line-height: 1.6;
}



/* ------------------------------------------------------ */
/* Ensure the sidebar remains unaffected */
.grid__item--blog-sidebar {
  grid-column: span 1; /* Sidebar takes one column */
}

/* Target only the "Say goodbye to leaks..." paragraph inside the specific homepage hero section */
.template--24624704127241__image_with_text_overlay_8iyURR
.text_HbkitN.image-with-text-overlay__text {
  max-width: 100%;       /* Allow full width */
  width: max-content;    /* Only as wide as the text inside */
  white-space: nowrap;   /* Prevent line breaks */
}

/* bottom footer copyright */
.bottom--footer---copyright ul.bottom--footer---links li:first-child a span {
  font-size: 0; /* Hides original text */
  white-space: nowrap;
  position: relative;
  display: inline-block;
}

.bottom--footer---copyright ul.bottom--footer---links li:first-child a span::before {
  content: "© 2025, RELIEF WEAR LAB LTD";
  font-size: 14px; /* Adjust size as needed */
  color: inherit;
  position: relative;
  white-space: nowrap;
  display: inline-block;
}

/* Hide the second part after the | (the Powered by...) */
.bottom--footer---copyright ul.bottom--footer---links li:nth-child(2) {
  display: none !important;
}

/* ---------------- */
/* ========== FOOTER CONTAINER ========== */
.footer-main {
  background-color: #0e2d29;
  border-top: 1px solid #e5ff7520;
}

/* ========== LAYOUT GRID ========== */
.footer-main--inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 5vw;
  box-sizing: border-box;
}


/* Make sure each column doesn't collapse */
.footer-main .links-footer,
.footer-main .newsletter-footer,
.footer-main .social-media-footer,
.footer-main .content-footer {
  flex: 1 1 0;
  min-width: 0;
}

/* ========== SECTION HEADINGS ========== */
.footer-main .footer-header {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  color: #e5ff75;
  text-transform: uppercase;
}

/* ========== LINKS ========== */
.footer-main ul.footer-content {
  padding: 0;
  list-style: none;
}

.footer-main ul.footer-content li a {
  color: #e5ff75;
  font-size: 13px;
  line-height: 1.7;
  text-decoration: none;
}

.footer-main a:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter-footer--wrapper .input-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
  max-width: 100px; /* match the email input */
}

.footer-email-input {
  padding: 10px 14px;
  font-size: 13px;
  border: 1px solid #e5ff75;
  background: transparent;
  color: #e5ff75;
  border-radius: 4px;
  max-width: 100px;
  width: 100%;
}

.footer-email-submit {
  padding: 10px 20px;
  font-size: 13px;
  border: none;
  border-radius: 24px;
  background-color: #e5ff75;
  color: #0e2d29;
  font-weight: 600;
  min-width: 160px;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-email-submit:hover {
  background-color: #FF6231;
  color: #e5ff75;
}

.newsletter-footer::after {
  content: "We design underwear for every flow — gentle on you and the planet.";
  display: block;
  font-size: 12px;
  color: #e5ff75aa;
  margin-top: 20px;
  line-height: 1.4;
  max-width: 280px;
}

/* ========== SOCIAL ICONS ========== */
.social-media-footer ul#sm-icons {
  display: flex;
  gap: 16px;
  padding: 0;
  margin-top: 16px;
  list-style: none;
}

.social-media-footer li {
  display: inline-block;
}

/* Custom footer grid balancing */
.custom-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr auto;
  gap: 48px;
  align-items: start;
}


/* ========== RESPONSIVE: MOBILE ========== */
@media (max-width: 768px) {
  .footer-main--inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start;
    padding: 32px 24px !important;
    gap: 40px;
    flex-wrap: nowrap;
  }

  .footer-main .links-footer {
    flex: 1;
  }

  /* Hide newsletter and socials on mobile */
  .newsletter-footer,
  .social-media-footer {
    display: none !important;
  }

  .footer-main .footer-header,
  .footer-main ul.footer-content {
    text-align: left !important;
  }
}

/* === Footer Payment Icons Layout === */
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
  list-style: none;
}

/* === Icon Container: Rounded, Clean Look === */
.payment-icons li {
  background-color: transparent;
  padding: 1px;
  border-radius: 22px;       /* Rounded corners */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-icons li:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(229, 255, 117, 0.2);  /* Subtle glow */
}

/* === SVG Icon Size === */
.payment-icon {
  width: 40px !important;
  height: auto;
  border-radius: 0px;       /* Optional: round the SVG itself */
  display: block;
  background: transparent !important;
}

/* === Mobile: Smaller Payment Icons === */
@media (max-width: 768px) {
  .payment-icon {
    width: 28px !important;  /* Smaller icon for mobile */
    border-radius: 8px;
  }

  .payment-icons {
    justify-content: flex-start;
    gap: 10px;
    padding-top: 10px;
  }

  .payment-icons li {
    padding: 2px;
  }
}

/* === Thin footer-style line above scrolling banner === */
#shopify-section-sections--24624704192777__scrolling_banner_bKxPQA::before {
  content: "";
  display: block;
  height: 1px;
  background-color: #0e2d29;
  border-top: 1px solid #e5ff7520;
}


/* Shrink Shopify chat icon */
#ShopifyChat {
  transform: scale(0.8); /* Adjust to 0.7 or 0.6 for even smaller */
  transform-origin: bottom left;
}

/* Adjust position on mobile */
@media screen and (max-width: 768px) {
  #ShopifyChat {
    position: fixed !important;
    bottom: px !important; /* Lower than default */
    left: 10px !important;   /* Move to the left */
    right: auto !important;  /* Cancel any default right positioning */
  }
}

/* ============================================================
  CUSTOM HEADING OVERRIDE - Hero Section Heading Line Break
  Target: .heading_DA8Mhy (from image-with-text-overlay)
  Purpose: Simulate a line break in Shopify theme editor without <br>
  Method: Hide original text, inject new two-line heading using ::after
============================================================ */

/* .heading_DA8Mhy {
  font-size: 0 !important;
  position: relative;
}

.heading_DA8Mhy::after {
  content: "Period Underwear\A You Actually\A Want to Wear"; 
  font-size: 28px;
  white-space: pre;
  display: block;
  font-family: inherit;
  font-weight: 500;
  color: #133632;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .heading_DA8Mhy::after {
    font-size: 80px;
  }
} */

/* ======================------------------======= scrolling banner speed */
/* Default (desktop and up): Slow down the scrolling banner animation */
scrolling-banner.animation-direction-normal {
  --scrolling-banner-animation-speed: 25s !important;
}

/* Mobile view: Even slower for better readability on smaller screens */
@media (max-width: 767px) {
  scrolling-banner.animation-direction-normal {
    --scrolling-banner-animation-speed: 35s !important;
  }
}

/* ====================================== Make Mega Menu titles (Absorbency, Style, Feature) bold and unclickable */
/* 1. Turn first-level menu titles into bold non-links */
.mega-menu-link--title a[href="#"] {
  pointer-events: none;
  cursor: default;
  font-weight: bold;
  color: #000; /* Optional: make it darker for visibility */
}

/* 2. Style section titles (title headings inside mega menu) */
.mega-menu-link--title a {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  display: inline-block;
}

/* 3. Add spacing between menu columns */
.mega-menu--links {
  gap: 40px; /* horizontal gap between sections */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* responsive layout */
}

/* 4. Add hover effect to individual menu links */
.mega-menu--links a.animated-link--item {
  transition: all 0.2s ease;
}
.mega-menu--links a.animated-link--item:hover {
  color: #e94f64;
  transform: translateX(4px);
}

/* 5. Beautify the dropdown itself */
.mega-menu-dropdown {
  /*background-color: #ffffff;*/
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  padding: 20px 40px;
  border-radius: 8px;
}

/* 6. Highlight "Shop All" link with precise text-size fit */
.mega-menu--links a[href="/collections/all"] {
  font-weight: bold;
  background-color: #fbeff2;
  border-radius: 4px;
  display: inline-block;
  padding: 2px 4px; /* minimal padding to hug text */
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

/* Optional: hover color change */
.mega-menu--links a[href="/collections/all"]:hover {
  background-color: #e94f64;
  color: #fff;
}


/* ============================================= Disable clickability for image links in info-columns sections */
info-columns .info-cols--image-is-link {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

/* bUTTON sIZE 
@media (min-width: 769px) {
  body.template-index a.dynamic-section-button--template--24624704127241__image_with_text_CdHdQL.btn,
  body.template-index a.dynamic-section-button--button_h4pEgP.btn,
  body.template-index a.dynamic-section-button--view-all--template--24624704127241__featured_collection_mjELQg.btn,
  body.template-index a.dynamic-section-button--button_xdc46Q.btn {
    font-size: 22px !important;
    line-height: 1.3 !important;
  }
} */

/* Force white text for the hero headings and subheadline */
@media screen and (max-width: 767px) {
  .template--24624704127241__image_with_text_overlay_wwpbF4 
  .image-with-text-overlay__caption h2,
  .template--24624704127241__image_with_text_overlay_wwpbF4 
  .image-with-text-overlay__caption .image-with-text-overlay__text {
    color: #ffffff !important;
  }

  /* Optional: update link colors if needed */
  .template--24624704127241__image_with_text_overlay_wwpbF4 
  .image-with-text-overlay__caption a {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
}

/* Size chart page background color change */
.template-page#size-chart {
  background-color: #133632;
}

/* Alternative targeting if the above doesn't work */
body.template-page[data-page-handle="size-chart"] {
  background-color: #133632;
}

/* Target the main content wrapper on size chart page */
.template-page#size-chart .main-content,
.template-page#size-chart #MainContent {
  background-color: #133632;
}

/* Adjust font sizes for better readability */
.template-page#size-chart .page--title {
  font-size: 4.5rem; /* Larger title */
}

.template-page#size-chart .rte,
.template-page#size-chart p {
  font-size: 2.5rem - /* slightly larger body text */
  line-height: 1.6;
}

/* Mobile responsive font sizes */
@media (max-width: 768px) {
  .template-page#size-chart .page--title {
    font-size: 2rem; /* Smaller title on mobile */
  }
  
  .template-page#size-chart .rte,
  .template-page#size-chart p {
    font-size: 1rem; /* 16px on mobile */
  }
}

/* Target size chart drawer/popup specifically */
.drawer.drawer--right.drawer--cart {
  background-color: #133632 !important;
}

/* Target the PageContainer inside the drawer */
.drawer--right #PageContainer {
  background-color: #133632 !important;
}

/* Target the main content wrapper inside drawer */
.drawer--right #MainContent {
  background-color: #133632 !important;
}

/* Target the specific wrapper inside drawer */
.drawer--right .wrapper-spacing--v--template {
  background-color: #133632 !important;
}

/* Make sure header area matches */
.drawer--right .drawer__header {
  background-color: #133632 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Ensure the .sr-only utility can’t be overridden */
.sr-only{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  clip-path:inset(50%)!important;
  border:0!important;
  white-space:nowrap!important;
}

/* about us page h2 bigger */
#shopify-section-template--24624703668489__rich_text_BYRqkx 
  .featured-row__subtext h2 {
    font-size: 46px;
    line-height: 1.3;
  }