/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 42:0 Unexpected "<"
Line 92:13 Unexpected "{"
Line 92:22 Expected ":"
Line 92:29 Unexpected "{"

**/
<style>
  /* Stock Indicator Styles */
  .stock-indicator {
    font-weight: bold;
    padding: 5px;
    border-radius: 5px;
    display: inline-block;
    margin: 10px 0;
  }

  .in-stock {
    color: green;
  }

  .out-of-stock {
    color: red;
  }

  .live-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: green;
    animation: blink-animation 1s infinite;
  }

  @keyframes blink-animation {
    50% {
      opacity: 0;
    }
  }
</style>

/* Fade-in Scroll Animation */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure the Progress Bar is Visible */
#scrollProgress {
    position: fixed;
    top: -5px; /* Start slightly behind the header */
    left: 0;
    width: 8px;
    height: 0;
    background: linear-gradient(to bottom, #e5f1e8, #cad7ce); /* Retained gradient but updated colors */
    z-index: 9999;
    pointer-events: none;
    transition: height 0.2s ease-out, top 0.3s ease-out;
    opacity: 1 !important; /* Forces visibility */
}



/* Ensure Lazy Loaded Images Are Visible */
img.lazyload,
img.lazyload--manual {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  max-width: 100% !important;
  height: auto !important;
}

/* Reset Image Visibility */
img {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  max-width: 100% !important;
  height: auto !important;
}

/* Ensure Image with Text Overlay is visible */
#section-id-{{ section.id }} {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Blog-Specific Styling */
.template-article .blog-newsletter {
    background-color: #f4f4f4;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    margin-top: 40px;
}

/* Keep Reading Section - Grid Layout */
.keep-reading__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 40px auto;
  padding: 20px;
  max-width: 1200px;
}

/* Blog Card Styling */
.blog-post {
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Blog Image Styling */
.blog-post__image-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.blog-post__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Feature Line Hover Effect */
.blog-post__feature-line {
  width: 0%;
  height: 10px;
  background-color: #e5f1e8;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.4s ease-in-out;
}
.blog-post:hover .blog-post__feature-line {
  width: 100%;
}

/* Blog Content Layout */
.blog-post__content {
  padding: 15px 10px;
  text-align: center;
}

/* Blog Category Styling */
.blog-post__category {
  font-size: 14px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #9da9a0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Blog Title Styling */
.blog-post__title {
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  color: #686464;
  line-height: 1.3;
  margin: 5px 0;
}

/* Read Time Styling */
.blog-post__read-time {
  font-size: 14px;
  font-family: 'Quicksand', sans-serif;
  color: #9da9a0;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Hover Effect - Subtle lift */
.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile Optimization */
@media (max-width: 767px) {
  .keep-reading__container {
    grid-template-columns: 1fr;
  }
}

.keep-reading__title {
  text-align: center !important;
  display: block;
  width: 100%;
  margin: 0 auto 30px auto; /* Centers and adds spacing */
}

/* Ensure Keep Reading Blog Titles Match Blog Landing Page */
.keep-reading .blog-post__title {
  font-family: 'futur', sans-serif !important; /* Matches Blog Landing Page */
  font-size: 20px !important;
  font-weight: bold !important;
  color: #686464 !important;
}

.see-more-link {
  font-weight: 500;
  text-decoration: underline;
  color: #555;
  display: inline-block;
  margin-top: 0.5rem;
  cursor: pointer;
}

.video-container__fallback,
.video-container__cover,
.video__overlay,
.video__play-button {
  display: none !important;
}

.edit-link-top {
  font-size: 14px;
  color: #9da9a0;
  margin-left: 1rem;
  margin-right: 1.2rem;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  top: 2px;
  white-space: nowrap;
}

.edit-link-top:hover {
  color: #7b867d;
}

@media screen and (max-width: 768px) {
  .edit-link-top {
    display: none;
  }
}

