/** Shopify CDN: Minification failed

Line 961:68 Expected "}" to go with "{"

**/
/** Critical CSS for the theme. This file is included on every page. */

/* Icon styling to ensure SVGs scale properly */
.icon-container svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* Reset styles inspired by https://www.joshwcomeau.com/css/custom-css-reset/ */
* {
  box-sizing: border-box;
  margin: 0;
}

html {
  overflow-x: clip; /* Prevent horizontal scroll without breaking position: sticky */
  width: 100%;
}

body {
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
  margin: 0;
  min-height: 100svh;
  overflow-x: clip; /* Prevent horizontal scroll without breaking position: sticky */
  width: 100%;
  max-width: 100vw; /* Ensure body never exceeds viewport width */
}

html:has(dialog[scroll-lock][open], details[scroll-lock][open]) {
  overflow: hidden;
}
main {
  flex: 1;
  position: relative;
  width: 100%;
  max-width: 100vw; /* Ensure main never exceeds viewport width */
  overflow-x: hidden; /* Prevent horizontal scroll */
}
footer {
  margin-top: auto;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select {
  font: inherit;
  border-radius: var(--style-border-radius-inputs);
}

select {
  background-color: var(--color-background);
  color: currentcolor;
}

/* System select style – theme input settings (use class input-select for form dropdowns) */
.input-select {
  width: 100%;
  padding: var(--input-padding-vertical, 12px) var(--input-padding-horizontal, 16px);
  padding-right: calc(var(--input-padding-horizontal, 16px) + 1.5em + 0.5rem);
  border: var(--input-border-width, 1px) solid var(--section-border-color, var(--color-border));
  border-radius: var(--input-border-radius, 8px);
  font-size: var(--input-font-size, 16px);
  font-weight: var(--input-font-weight, 400);
  color: var(--section-text-color, var(--color-foreground));
  background-color: var(--section-bg-color, var(--color-background));
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right var(--input-padding-horizontal, 16px) center;
  background-repeat: no-repeat;
  background-size: 1.25em 1.25em;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-select:hover {
  border-color: var(--section-text-color-muted, var(--color-text-muted));
}

.input-select:focus {
  outline: none;
  border-color: var(--color-input-focus-border);
  box-shadow: var(--input-focus-shadow-sm);
}

.input-select--focus-shadow-sm:focus {
  box-shadow: var(--input-focus-shadow-sm);
}

.input-select--focus-shadow-md:focus {
  box-shadow: var(--input-focus-shadow-md);
}

.input-select--focus-shadow-lg:focus {
  box-shadow: var(--input-focus-shadow-lg);
}

/* Dropdown positioning utilities */
.dropdown-above {
  top: auto !important;
  bottom: 100% !important;
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
  transform: translateY(0) !important;
}

.dropdown-below {
  top: 100% !important;
  bottom: auto !important;
  margin-top: 0.5rem !important;
  margin-bottom: 0 !important;
  transform: translateY(0) !important;
}

/* Ensure dropdowns are properly positioned */
[data-dropdown] {
  position: absolute;
  z-index: 50;
}

/* Facet dropdown styles */
.facet-dropdown-trigger {
  position: relative;
}

.facet-dropdown-arrow {
  transition: transform 0.2s ease;
}

.facet-dropdown {
  pointer-events: none;
}

.facet-dropdown.opacity-100 {
  pointer-events: auto;
}

/* Fix for dropdowns in horizontally scrolling containers */
/* The parent needs overflow: visible to allow dropdowns to escape */
.facets-container-wrapper {
  overflow: visible;
  position: relative;
}

/* Create a pseudo-scrolling effect with a wrapper */
.facets-horizontal-wrapper {
  position: relative;
  overflow: visible;
  padding-bottom: 0.5rem;
}

/* Inner scrollable area with extra padding for dropdown space */
.facets-scroll-container {
  overflow-x: auto;
  overflow-y: visible;
  display: flex;
  gap: 0.75rem;
  padding-bottom: 20rem; /* Space for dropdown */
  margin-bottom: -20rem; /* Pull content back up */
}

dialog {
  background-color: var(--color-background);
  color: var(--color-foreground);
}

p {
  text-wrap: pretty;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p:empty {
  display: none;
}

:is(p, h1, h2, h3, h4, h5, h6):first-child,
:empty:first-child + :where(p, h1, h2, h3, h4, h5, h6) {
  margin-block-start: 0;
}

:is(p, h1, h2, h3, h4, h5, h6):last-child,
:where(p, h1, h2, h3, h4, h5, h6) + :has(+ :empty:last-child) {
  margin-block-end: 0;
}

/** Theme styles below */
body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  background-color: var(--color-background);
  color: var(--color-foreground);
}

.svg-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
}

.svg-wrapper > svg {
  height: 100%;
  width: 100%;
}

/** Section layout utilities */

/**
 * Base section styles with layout settings integration
 * CSS variables are defined in css-variables.liquid snippet
 */
.shopify-section {
  /* Center sections */
  width: 100%;
  max-width: 100vw; /* Ensure sections never exceed viewport width */
  display: flex;
  justify-content: center;
  overflow-x: hidden; /* Prevent horizontal scroll from sections */
}

/* Apply section spacing between sections */
.shopify-section + .shopify-section {
  margin-top: var(--section-spacing);
}

/* Direct children of shopify-section should be constrained */
.shopify-section > * {
  width: 100%;
  /* max-width: var(--page-width); */
  /* padding-left: var(--page-margin);
  padding-right: var(--page-margin); */
}

/* Full-width utility removes constraints */
.shopify-section > .full-width {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

/* Section content container */
.shopify-section .section-content {
  width: 100%;
}

/* Block spacing within sections */
.shopify-section .blocks-container {
  display: flex;
  flex-direction: column;
  gap: var(--block-gap);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .shopify-section + .shopify-section {
    margin-top: calc(var(--section-spacing) * 0.75);
  }

  .shopify-section .blocks-container {
    gap: calc(var(--block-gap) * 0.75);
  }

  /* Default heading font sizes on mobile - override section-specific sizes */
  .shopify-section h1,
  .shopify-section h1[class*="heading"],
  .shopify-section h1[class*="title"] {
    font-size: 2em !important;
  }

  .shopify-section h2,
  .shopify-section h2[class*="heading"],
  .shopify-section h2[class*="title"] {
    font-size: 1.5em !important;
  }

  .shopify-section h3,
  .shopify-section h3[class*="heading"],
  .shopify-section h3[class*="title"] {
    font-size: 1em !important;
  }

  /* Exception: Product card titles use their own font-size variable */
  .shopify-section .product-card h3.product-card__title {
    font-size: var(--title-size, 16px) !important;
  }

  .shopify-section h4,
  .shopify-section h4[class*="heading"],
  .shopify-section h4[class*="title"] {
    font-size: 1em !important;
  }

  .shopify-section h5,
  .shopify-section h5[class*="heading"],
  .shopify-section h5[class*="title"] {
    font-size: 0.83em !important;
  }
}

/* Section background and padding utilities */
.shopify-section.section-padded {
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
}

.shopify-section.section-padded-top {
  padding-top: var(--section-spacing);
}

.shopify-section.section-padded-bottom {
  padding-bottom: var(--section-spacing);
}

/* Section content alignment utilities */
.shopify-section .section-content-left {
  text-align: left;
}

.shopify-section .section-content-center {
  text-align: center;
}

.shopify-section .section-content-right {
  text-align: right;
}

/* Section layout utilities for different content types */
.shopify-section .section-grid {
  display: grid;
  gap: var(--block-gap);
}

.shopify-section .section-flex {
  display: flex;
  gap: var(--block-gap);
}

.shopify-section .section-flex-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--block-gap);
}

/* Responsive grid utilities */
.shopify-section .section-grid-1 {
  grid-template-columns: 1fr;
}

.shopify-section .section-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.shopify-section .section-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.shopify-section .section-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .shopify-section .section-grid-2,
  .shopify-section .section-grid-3,
  .shopify-section .section-grid-4 {
    grid-template-columns: 1fr;
  }

  .shopify-section .section-flex {
    flex-direction: column;
  }
}

/* Section spacing utilities */
.shopify-section .section-spacing-small {
  --section-spacing: calc(var(--section-spacing) * 0.5);
}

.shopify-section .section-spacing-large {
  --section-spacing: calc(var(--section-spacing) * 1.5);
}

.shopify-section .section-spacing-xlarge {
  --section-spacing: calc(var(--section-spacing) * 2);
}

/* Block spacing utilities */
.shopify-section .block-gap-small {
  --block-gap: calc(var(--block-gap) * 0.5);
}

.shopify-section .block-gap-large {
  --block-gap: calc(var(--block-gap) * 1.5);
}

.shopify-section .block-gap-xlarge {
  --block-gap: calc(var(--block-gap) * 2);
}

/* Section container utilities */
.shopify-section .section-container {
  width: 100%;
  /* max-width: var(--page-width); */
  margin: 0 auto;
  padding-left: var(--page-margin);
  padding-right: var(--page-margin);
}

.shopify-section .section-container-fluid {
  width: 100%;
  padding-left: var(--page-margin);
  padding-right: var(--page-margin);
}

/* Section background utilities */
.shopify-section .section-bg-primary {
  background-color: var(--color-background);
  color: var(--color-foreground);
}

.shopify-section .section-bg-secondary {
  background-color: var(--color-footer-background, #f8f8f8);
  color: var(--color-footer-text, #666666);
}

/* Section border utilities */
.shopify-section .section-border-top {
  border-top: 1px solid var(--color-border, #e5e5e5);
}

.shopify-section .section-border-bottom {
  border-bottom: 1px solid var(--color-border, #e5e5e5);
}

.shopify-section .section-border-y {
  border-top: 1px solid var(--color-border, #e5e5e5);
  border-bottom: 1px solid var(--color-border, #e5e5e5);
}

/** Button styles - Global theme buttons */
.btn-primary {
  background-color: var(--color-btn-primary-bg);
  color: var(--color-btn-primary-text);
  border: 2px solid var(--color-btn-primary-bg);
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(
    --color-btn-primary-hover-bg,
    var(--color-btn-primary-bg)
  );
  color: var(--color-btn-primary-hover-text, var(--color-btn-primary-text));
  border-color: var(--color-btn-primary-hover-bg, var(--color-btn-primary-bg));
}

.btn-secondary {
  background-color: var(--color-btn-secondary-bg);
  color: var(--color-btn-secondary-text);
  border: 2px solid var(--color-btn-secondary-text);
}

.btn-secondary:hover {
  background-color: var(
    --color-btn-secondary-hover-bg,
    var(--color-btn-secondary-bg)
  );
  color: var(--color-btn-secondary-hover-text, var(--color-btn-secondary-text));
  border-color: var(
    --color-btn-secondary-hover-bg,
    var(--color-btn-secondary-bg)
  );
}

.btn-outline {
  background-color: transparent;
  color: var(--color-btn-outline-border);
  border: 2px solid var(--color-btn-outline-border);
}

.btn-outline:hover {
  background-color: var(--color-btn-outline-hover-bg);
  color: var(--color-btn-outline-hover-text);
  border-color: var(--color-btn-outline-hover-bg);
}

/** Product Card Styles */
/* Hover effects removed */

/* Reusable utilities */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  padding: 0.625rem 1.25rem;
}
.button--primary {
  background: var(--color-primary, #2563eb);
  color: #fff;
}
.button--primary:hover {
  background: color-mix(in srgb, var(--color-primary, #2563eb), #000 10%);
}

.icon-16 {
  width: 16px;
  height: 16px;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rounded {
  border-radius: var(--border-radius, 8px);
}

/** Global Swiper Pagination Styles */
.swiper-pagination {
  margin-top: 10px;
  position: relative;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 0.35;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.15);
}

/** Scroll Animation Styles */
/* 
 * Prevent scrollbars during animations
 * Apply overflow: clip to sections/containers to prevent scrollbars
 * during transform animations. Using 'clip' instead of 'hidden' prevents
 * scrollbars without creating a new scroll container that affects position: sticky
 */
section:has(.scroll-trigger),
section:has(.animate--fade-in),
section:has(.animate--slide-in),
section:has(.animate--zoom-in),
section:has(.animate--fade-up),
.shopify-section:has(.scroll-trigger),
.shopify-section:has(.animate--fade-in),
.shopify-section:has(.animate--slide-in),
.shopify-section:has(.animate--zoom-in),
.shopify-section:has(.animate--fade-up) {
  overflow-x: clip;
  overflow-y: clip;
}

/* Fallback for browsers that don't support :has() or overflow: clip */
@supports not (overflow: clip) {
  section:has(.scroll-trigger),
  section:has(.animate--fade-in),
  section:has(.animate--slide-in),
  section:has(.animate--zoom-in),
  section:has(.animate--fade-up),
  .shopify-section:has(.scroll-trigger),
  .shopify-section:has(.animate--fade-in),
  .shopify-section:has(.animate--slide-in),
  .shopify-section:has(.animate--zoom-in),
  .shopify-section:has(.animate--fade-up) {
    overflow: hidden;
  }
}

/* 
 * Base scroll-trigger animation (fade up)
 * Elements start hidden and will animate in when they enter viewport
 */
.scroll-trigger {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

/* When offscreen class is removed (element enters viewport), animate in */
.scroll-trigger:not(.scroll-trigger--offscreen):not(
    .scroll-trigger--design-mode
  ) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Offscreen state - explicitly hidden */
.scroll-trigger--offscreen {
  opacity: 0 !important;
  transform: translate3d(0, 30px, 0) !important;
}

/* 
 * Animate--* classes (alternative animation types)
 * These classes can be used independently or combined with scroll-trigger
 */

/* Fade in animation (opacity only) */
.animate--fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-out;
  will-change: opacity;
}

.animate--fade-in.scroll-trigger--offscreen {
  opacity: 0 !important;
}

.animate--fade-in:not(.scroll-trigger--offscreen):not(.scroll-trigger--design-mode) {
  opacity: 1;
}

/* Slide in animation (from left) */
.animate--slide-in {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.animate--slide-in.scroll-trigger--offscreen {
  opacity: 0 !important;
  transform: translateX(-30px) !important;
}

.animate--slide-in:not(.scroll-trigger--offscreen):not(.scroll-trigger--design-mode) {
  opacity: 1;
  transform: translateX(0);
}

/* Zoom in animation (scale + fade) */
.animate--zoom-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.animate--zoom-in.scroll-trigger--offscreen {
  opacity: 0 !important;
  transform: scale(0.95) !important;
}

.animate--zoom-in:not(.scroll-trigger--offscreen):not(.scroll-trigger--design-mode) {
  opacity: 1;
  transform: scale(1);
}

/* Parallax zoom effect (uses --zoom-in-ratio CSS variable from JS) */
.animate--zoom-in[style*="--zoom-in-ratio"] {
  transform: scale(var(--zoom-in-ratio, 1));
  transition: opacity 0.6s ease-out;
}

/* In design mode (theme editor), show immediately without animation */
.scroll-trigger--design-mode,
.animate--fade-in.scroll-trigger--design-mode,
.animate--slide-in.scroll-trigger--design-mode,
.animate--zoom-in.scroll-trigger--design-mode,
.animate--fade-up.scroll-trigger--design-mode {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .scroll-trigger,
  .scroll-trigger--offscreen,
  .animate--fade-in,
  .animate--fade-in.scroll-trigger--offscreen,
  .animate--slide-in,
  .animate--slide-in.scroll-trigger--offscreen,
  .animate--zoom-in,
  .animate--zoom-in.scroll-trigger--offscreen,
  .animate--fade-up,
  .animate--fade-up.scroll-trigger--offscreen {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Cascade animation support (staggered animations) */
.scroll-trigger[style*="--animation-order"],
.animate--fade-in[style*="--animation-order"],
.animate--slide-in[style*="--animation-order"],
.animate--zoom-in[style*="--animation-order"],
.animate--fade-up[style*="--animation-order"] {
  transition-delay: calc(
    (var(--animation-order, 0) * 0.1s) + var(--animation-delay, 0ms)
  );
}

/* Fade up animation (fade + translateY) - from bottom to top */
.animate--fade-up {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.animate--fade-up.scroll-trigger--offscreen {
  opacity: 0 !important;
  transform: translate3d(0, 40px, 0) !important;
}

.animate--fade-up:not(.scroll-trigger--offscreen):not(.scroll-trigger--design-mode) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* In design mode (theme editor), show immediately without animation */
.animate--fade-up.scroll-trigger--design-mode {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .animate--fade-up,
  .animate--fade-up.scroll-trigger--offscreen {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Cascade animation support (staggered animations) */
.animate--fade-up[style*="--animation-order"] {
  transition-delay: calc(
    (var(--animation-order, 0) * 0.1s) + var(--animation-delay, 0ms)
  );
}

/* Custom animation delay support */
[style*="--animation-delay"] {
  transition-delay: calc(
    var(--animation-delay, 0ms) + 
    (var(--animation-order, 0) * 0.1s)
  );
}


.shopify-policy__body h1, .shopify-policy__body h2, .shopify-policy__body h3, .shopify-policy__body h4, .shopify-policy__body h5, .shopify-policy__body h6, .shopify-policy__body p, .shopify-policy__body ul, .shopify-policy__body ol, .shopify-policy__body li, .shopify-policy__body blockquote, .shopify-policy__body hr, .shopify-policy__body table, .shopify-policy__body code, .shopify-policy__body   pre {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}


h1{
  font-weight: 500;
}

.button {
  font-size: 0.85rem;
  padding: 8px 16px;
  letter-spacing: 0.02em;

  
  .button--primary {
  background: transparent;
  border: 1px solid #1FA6A0;
  color: #1FA6A0;
  transition: all 0.2s ease;
}

.button--primary:hover {
  background: rgba(31, 166, 160, 0.08);
  color: #1FA6A0;
}

.footer .button,
.footer a.button,
.footer .button--secondary {
  background: transparent !important;
  border: 1px solid #1FA6A0 !important;
  color: #1FA6A0 !important;
}

.footer a,
.footer__content a,
.footer a:visited {
  color: #1FA6A0 !important;
}

.footer a:hover {
  color: rgba(31, 166, 160, 0.7) !important;
}

.button--primary:hover {
  background: rgba(31, 166, 160, 0.08) !important;
  color: #1FA6A0 !important;
}


.footer button,
.footer .button,
.footer input[type="submit"],
.footer .newsletter-form__button,
.footer .field__button {
  background: transparent !important;
  border: 1px solid #1FA6A0 !important;
  color: #1FA6A0 !important;
}

.footer button:hover,
.footer .button:hover,
.footer input[type="submit"]:hover,
.footer .newsletter-form__button:hover,
.footer .field__button:hover {
  background: rgba(31, 166, 160, 0.08) !important;
  color: #1FA6A0 !important;
}

.footer * {
  color: #1FA6A0 !important;
}

.footer button,
.footer input[type="submit"] {
  background: transparent !important;
  border: 1px solid #1FA6A0 !important;
  color: #1FA6A0 !important;
}

.footer button:hover,
.footer input[type="submit"]:hover {
  background: rgba(31, 166, 160, 0.08) !important;
  color: #1FA6A0 !important;
}

.footer button:hover,
.footer input[type="submit"]:hover,
.footer .newsletter-form__button:hover,
.footer .field__button:hover {
  border-color: #c0e758 !important;
  color: #c0e758 !important;
  background: rgba(192, 231, 88, 0.08) !important;
}

/* GLOBAL BUTTON HOVER RESET */
.button:hover,
button:hover,
input[type="submit"]:hover {
  border-color: #c0e758 !important;
  color: #c0e758 !important;
  background: rgba(192, 231, 88, 0.08) !important;
}

/* EXTRA FOOTER FORCE (just in case) */
.footer button:hover,
.footer input[type="submit"]:hover {
  border-color: #c0e758 !important;
  color: #c0e758 !important;
  background: rgba(192, 231, 88, 0.08) !important;
}

/* HEADER NAV HOVER OVERRIDE */
.header__menu-item,
.header__menu-item a {
  transition: color 0.2s ease;
}

.header__menu-item:hover,
.header__menu-item:hover a,
.header a:hover {
  color: #D5F477 !important;
}

.header__menu-item:hover {
  color: #D5F477 !important;
  opacity: 0.9;
}

/* FORCE HEADER NAV COLOR */
.header__menu-item {
  color: inherit !important;
}

.header__menu-item:hover {
  color: #D5F477 !important;
}

/* ALSO TARGET LINK INSIDE */
.header__menu-item a {
  color: inherit !important;
}

.header__menu-item a:hover {
  color: #D5F477 !important;
}

/* KILL ANY THEME OVERLAY / UNDERLINE COLOR */
.header__active-menu-item,
.header__menu-item span {
  color: inherit !important;
}

.header__inline-menu .list-menu__item > a:hover {
  color: #D5F477 !important;
}

.header__menu-item::after,
.header__active-menu-item::after {
  background-color: #D5F477 !important;
}

.badge {
  border: 1px solid #D5F477 !important;
  color: #D5F477 !important;
  background: transparent !important;
}

.article-template__tags { display: none !important; }


/* Hide blog tags */ .article__tags, .article-tag { display: none; }