/** Shopify CDN: Minification failed

Line 168:19 Expected identifier but found whitespace
Line 168:21 Unexpected "{"
Line 168:30 Expected ":"

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

:root{
  --color-primary: #00BFFF;
}

/* Reset styles inspired by https://www.joshwcomeau.com/css/custom-css-reset/ */
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100svh;
}

html:has(dialog[scroll-lock][open], details[scroll-lock][open]) {
  overflow: hidden;
}

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;
}

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-primary--family);
  background-color: var(--color-background);
  color: var(--color-foreground);
}

/** Section layout utilities */

/**
 * Setup a grid that enables both full-width and constrained layouts
 * depending on the class of the child elements.
 *
 * By default, a minimum content margin is set on the left and right
 * sides of the section and the content is centered in the viewport to
 * not exceed the maximum page width.
 *
 * When a child element is given the `full-width` class, it will span
 * the entire viewport.
 */
.shopify-section {
  --content-width: min(
    calc(var(--page-width) - var(--page-margin) * 2),
    calc(100% - var(--page-margin) * 2)
  );
  --content-margin: minmax(var(--page-margin), 1fr);
  --content-grid: var(--content-margin) var(--content-width) var(--content-margin);

  /* This is required to make <img> elements work as background images */
  position: relative;
  grid-template-columns: var(--content-grid);
  display: grid;
  width: 100%;
}

/* Child elements, by default, are constrained to the central column of the grid. */
.shopify-section > * {
  grid-column: 2;
}

/* Child elements that use the full-width utility class span the entire viewport. */
.shopify-section > .full-width {
  grid-column: 1 / -1;
}


/* -------------------------- */
.section_container{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.section_container.no_space{
  /* padding-left: 0; */
  /* padding-right: 0; */
}
.product_title_block{
  /* margin-bottom: 2rem; */
}
.section_block{
  padding-top: 50px;
}
.flex_box{
  display: flex;
  gap: 6px;
}
.flex_box_2{
  gap: 15px;
}
.flex_column{
  flex-direction: column
}

.add-to-cart-btn.add-to-cart-btn-rounded,
.add-to-cart-btn-rounded{
  border-radius: 999px !important;
}

/* Custom Cards Grid Style */
.custom_cards_grid {
  width: 100%;
  /* padding: 48px 0; */
  background-color: {{ section.settings.section_bg_color }};
}

.custom_cards_grid_child {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* keeps every card the same height */
  gap: var(--cards-gap, 28px);
}

.custom_card {
  flex: 1 1 calc((100% - (2 * var(--cards-gap, 28px))) / 3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 24px 0;
  border-radius: 8px;
  overflow: hidden;
  min-height: 100%;
}

.custom_card_content {
  margin-bottom: 24px;
}

.custom_card_heading {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 12px;
}

.custom_card_description {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.75;
}

.custom_card_description p {
  margin: 0;
}

.custom_card_image {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: auto;
}

.custom_card_image_tag {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  display: block;
}

.custom_card_image svg.placeholder-svg {
  width: 100%;
  height: auto;
  max-height: 260px;
}

/* Tablet: allow slight wrap breathing room but keep 3-up as long as it fits */
@media screen and (max-width: 989px) {
  .custom_card {
    flex: 1 1 calc((100% - var(--cards-gap, 28px)) / 2);
  }
}

/* Mobile: stack 1 per row */
@media screen and (max-width: 749px) {
  .custom_cards_grid_child {
    flex-direction: column;
  }

  .custom_card {
    flex: 1 1 100%;
    padding: 24px;
  }

  .custom_card_heading {
    font-size: 20px;
  }
}

@media (max-width: 1240px) {
  .section_container{
    padding: 0 20px;
  }
}
@media (max-width: 800px) {
  .section_container{
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .section_container{
    padding: 0 20px;
  }
}



/* ========================================
   Custom Buttons
   ======================================== */

.custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;
  padding: 12px 28px;

  border: 1px solid transparent;
  border-radius: 999px;

  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;

  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.custom-button:hover {
  transform: translateY(-2px);
}


/* Primary */
.custom-button--primary {
  background: #159BDA;
  color: #FFFFFF;
  border-color: #159BDA;
}

.custom-button--primary:hover {
  background: #087FB7;
  color: #FFFFFF;
  border-color: #087FB7;
}


/* White / outlined */
.custom-button--white {
  background: #FFFFFF;
  color: #111111;
  border-color: #E5E5E5;
}

.custom-button--white:hover {
  background: #FFFFFF;
  color: #111111;
  border-color: #111111;
}


/* Outline */
.custom-button--outline {
  background: transparent;
  color: #111111;
  border-color: #111111;
}

.custom-button--outline:hover {
  background: #111111;
  color: #FFFFFF;
  border-color: #111111;
}


/* Text */
.custom-button--text {
  min-height: auto;
  padding: 8px 2px;

  background: transparent;
  color: #111111;

  border: 0;
  border-radius: 0;
}

.custom-button--text:hover {
  color: #159BDA;
}
.custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  text-decoration: none;
}

.custom-button__text {
  display: inline-flex;
  align-items: center;
}

.custom-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.custom-button__icon--arrow {
  font-size: 16px;
  line-height: 1;
}

.custom-button__icon-image {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.shopify-section.shopify-section-group-header-group{
  display: block;
}


@media screen and (max-width: 749px) {
  .custom-button {
    min-height: 44px;
    padding: 11px 20px;
    font-size: 12px;
  }
}

.from_tag{
  font-size: 80%;
  color: #565656;
  font-weight: 500;
}
.filter_group_change{
  padding: 1rem;
  background: linear-gradient(139.69deg, #F8FBFC 0%, #EDF6F8 100%);
  border-radius: 6px;
}

/* .filter_option_new  */


.price-range-slider {
  position: relative;
  height: 20px;
  padding: 9px;
  box-sizing: border-box;
  margin-top: 10px;
  overflow: visible;
}

.slider-track {
  position: absolute;
  top: 50%;
  left: 9px;
  right: 9px;
  height: 4px;
  margin-top: -2px;
  background: #ddd;
  border-radius: 2px;
  z-index: 1;
}

.slider-range {
  position: absolute;
  top: 50%;
  height: 4px;
  margin-top: -2px;
  background: #29abe2;
  border-radius: 2px;
  z-index: 2;
}

.price-slider {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 18px;
  margin: -9px 0 0 0;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  z-index: 3;                 /* both sliders always above track (1) and fill (2) */
  outline: none;               /* remove browser focus ring on the input itself */
}

.price-slider::-webkit-slider-runnable-track,
.price-slider::-moz-range-track {
  background: transparent;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #29abe2;
  cursor: pointer;
  position: relative;
  box-shadow: none;            /* kill any default focus glow Chrome adds */
  outline: none;
}

.price-slider::-moz-range-thumb {
  pointer-events: all;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #29abe2;
  border: none;
  cursor: pointer;
  position: relative;
  box-shadow: none;
  outline: none;
}

/* Firefox draws a dotted focus ring around the thumb specifically — kill it */
.price-slider::-moz-focus-outer {
  border: 0;
}

/* both stay above the bar; active just wins the tie between each other */
.price-slider.active {
  z-index: 4;                  /* only needs to beat the OTHER thumb's 3, not the bar */
}

/* ------------------- */
/* Font Sizes */
.text_title{
  font-size: 1.6rem;
}

.content-text {
    line-height: 1.7;
    color: #334155;
}
.content-text p {
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.full_grid{
  grid-column: 1 / -1;
}