/** Shopify CDN: Minification failed

Line 397:0 Unexpected "}"

**/
/* =========================================================
   POOL & SPA WORLD TASMANIA
   GLOBAL COLLECTION PAGE REFRESH
   Loaded only on collection pages
   ========================================================= */

:root {
  --psw-navy: #0b3a53;
  --psw-blue: #168bc0;
  --psw-blue-dark: #0f79a7;
  --psw-text: #26343c;
  --psw-muted: #66747c;
  --psw-border: #dce8ee;
  --psw-soft: #f6fafc;
  --psw-white: #ffffff;
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

#product-grid {
  row-gap: 28px;
}


/* =========================================================
   PRODUCT CARDS
   ========================================================= */

#product-grid .card-wrapper {
  height: 100%;
}

#product-grid .card {
  height: 100%;
  background: var(--psw-white);
  border: 1px solid var(--psw-border);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

#product-grid .card-wrapper:hover .card {
  transform: translateY(-3px);
  border-color: #c5dce6;
  box-shadow: 0 10px 24px rgba(11, 58, 83, 0.08);
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

#product-grid .card__inner {
  background: var(--psw-white);
  border-radius: 0;
}

#product-grid .card__media {
  margin: 0;
}

#product-grid .card__media .media {
  background: var(--psw-white);
}

#product-grid .card__media img {
  object-fit: contain !important;
  padding: 18px;
}


/* =========================================================
   PRODUCT INFORMATION
   ========================================================= */
/* Only style the main information area BELOW the image */
#product-grid .card > .card__content {
  padding: 0 !important;
}

#product-grid .card > .card__content > .card__information {
  padding: 18px 18px 20px !important;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Prevent Dawn's internal image-layer information from appearing */
#product-grid .card__inner .card__information {
  display: none !important;
}

#product-grid .card__heading {
  color: var(--psw-navy);
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 650;
  margin: 0 0 10px;
}

#product-grid .card__heading a {
  color: inherit;
  text-decoration: none;
}

#product-grid .card-information {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}


/* =========================================================
   PRICE
   ========================================================= */

#product-grid .price {
  color: var(--psw-navy);
  font-size: 1.45rem;
  font-weight: 700;
}

#product-grid .price-item--regular {
  color: var(--psw-navy);
}

#product-grid .price--on-sale .price-item--regular {
  color: var(--psw-muted);
}


/* =========================================================
   SALE / SOLD OUT BADGES
   ========================================================= */

#product-grid .badge {
  border: 0;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 1.15rem;
  font-weight: 700;
}

#product-grid .card__badge .badge {
  background: var(--psw-blue);
  color: var(--psw-white);
}


/* =========================================================
   SORTING AREA
   ========================================================= */

.facets-container {
  margin-bottom: 24px;
}

.facet-filters__label,
.product-count__text {
  color: var(--psw-muted);
}

.facet-filters__field .select__select {
  border-radius: 10px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {
  #product-grid {
    row-gap: 18px;
  }

  #product-grid .card {
    border-radius: 12px;
  }

  #product-grid .card__media img {
    padding: 12px;
  }

 #product-grid .card > .card__content > .card__information {
  padding: 14px 14px 16px !important;
}

  #product-grid .card__heading {
    font-size: 1.3rem;
  }

  #product-grid .price {
    font-size: 1.3rem;
  }
}
/* =========================================================
   COLLECTION CARD - FINAL ALIGNMENT
   ========================================================= */

/* Let the lower card area use the full available height */
#product-grid .card > .card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#product-grid .card > .card__content > .card__information {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Keep enough title space for two lines */
#product-grid .card__heading {
  min-height: 2.7em;
}

/* Let price sit consistently toward the bottom */
#product-grid .card-information {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#product-grid .card-information > .price {
  margin-top: auto;
  padding-top: 6px;
}

/* Keep product images centred consistently */
#product-grid .card__media img {
  object-position: center center;
}

/* Mobile doesn't need forced title height */
@media screen and (max-width: 749px) {
  #product-grid .card__heading {
    min-height: 0;
  }
}
/* =========================================================
   COLLECTION SORTING / PRODUCT COUNT
   ========================================================= */

@media screen and (min-width: 750px) {
  .facets-container {
    background: #f6fafc;
    border: 1px solid #dce8ee;
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 28px;
  }

  .facets-container .facets__form {
    margin-bottom: 0;
    align-items: center;
  }

  .facet-filters {
    padding-left: 0;
  }

  .facet-filters__label {
    color: #66747c;
    font-weight: 600;
    margin-right: 10px;
  }

  .facet-filters__field {
    align-items: center;
  }

  .facet-filters__field .select {
    min-width: 170px;
  }

  .facet-filters__field .select__select {
    min-height: 42px;
    padding: 0 38px 0 14px;
    background: #ffffff;
    color: #0b3a53;
    border: 1px solid #c8d8df;
    border-radius: 10px;
    font-weight: 600;
  }

  .facet-filters__field .select::after,
  .facet-filters__field .select::before {
    box-shadow: none;
  }

  .product-count {
    align-self: center;
  }

  .product-count__text {
    color: #66747c;
    font-weight: 600;
  }

  .product-count__text.loading {
    visibility: hidden;
  }
}


/* =========================================================
   COLLECTION SORT BAR ALIGNMENT
   ========================================================= */

@media screen and (min-width: 750px) {

  /*
    When filtering is NOT present, use a simple balanced layout:
    Sort on the left, product count on the right.
  */
  .facets-container .facets__form:not(:has(.facets__wrapper)) {
    grid-template-columns: max-content 1fr max-content;
    width: 100%;
  }

  .facets-container
    .facets__form:not(:has(.facets__wrapper))
    .facet-filters {
    grid-column: 1;
    padding-left: 0;
  }

  .facets-container
    .facets__form:not(:has(.facets__wrapper))
    .product-count {
    grid-column: 3;
    justify-self: end;
  }

  /*
    When filtering IS enabled, allow Dawn to retain
    the extra grid space it needs for filters + sorting.
  */
  .facets-container .facets__form:has(.facets__wrapper) {
    width: 100%;
  }
}
/* =========================================================
   COLLECTION CARDS - MOBILE POLISH
   ========================================================= */

@media screen and (max-width: 749px) {

  /* Slightly tighter gap between cards */
  #product-grid {
  --grid-mobile-horizontal-spacing: 10px;
  row-gap: 14px;
}
  }

  /* More efficient image space */
  #product-grid .card__media img {
    padding: 8px;
  }

  /* Tighter content padding */
  #product-grid .card > .card__content > .card__information {
    padding: 12px 12px 14px !important;
  }

  /* Product titles */
  #product-grid .card__heading {
    font-size: 1.2rem;
    line-height: 1.35;
    min-height: 5.4em;
    margin-bottom: 8px;
  }

  /* Prices */
  #product-grid .price {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  /* Smaller mobile badges */
  #product-grid .badge {
    padding: 5px 9px;
    font-size: 1.05rem;
  }
}
/* =========================================================
   MOBILE FILTER & SORT DRAWER
   ========================================================= */

@media screen and (max-width: 749px) {

  /* Main drawer */
  .mobile-facets__inner {
    background: #ffffff;
  }

  /* Header */
  .mobile-facets__header {
    padding: 18px 20px;
    border-bottom: 1px solid #dce8ee;
    background: #ffffff;
  }

  .mobile-facets__heading {
    color: #0b3a53;
    font-weight: 700;
    font-size: 1.8rem;
  }

  .mobile-facets__count {
    color: #66747c;
    font-size: 1.2rem;
  }

  /* Filter body */
  .mobile-facets__main {
    background: #f6fafc;
  }

  /* Availability / Price rows */
  .mobile-facets__summary {
    padding: 18px 20px;
    color: #0b3a53;
    font-weight: 650;
    border-bottom: 1px solid #dce8ee;
    background: #ffffff;
  }

  .mobile-facets__summary:hover {
    background: #f6fafc;
  }

  /* Sort area */
  .mobile-facets__sort {
    padding: 18px 20px;
    background: #ffffff;
    border-bottom: 1px solid #dce8ee;
  }

  .mobile-facets__sort label {
    color: #0b3a53;
    font-weight: 650;
  }

  .mobile-facets__sort .select {
    margin-left: auto;
  }

  .mobile-facets__sort .select__select {
    min-height: 42px;
    padding: 0 36px 0 12px;
    border: 1px solid #c8d8df;
    border-radius: 10px;
    background: #ffffff;
    color: #0b3a53;
    font-weight: 600;
  }

  .mobile-facets__sort .select::before,
  .mobile-facets__sort .select::after {
    box-shadow: none;
  }

  /* Footer */
  .mobile-facets__footer {
    padding: 14px 16px;
    border-top: 1px solid #dce8ee;
    background: #ffffff;
    gap: 10px;
  }

  .mobile-facets__footer .button {
    min-height: 48px;
    border-radius: 10px;
    font-weight: 700;
  }

  /* Primary apply button */
  .mobile-facets__footer .button--primary {
    background: #168bc0;
    color: #ffffff;
  }

  .mobile-facets__footer .button--primary:hover {
    background: #0f79a7;
  }

  /* Close icon */
  .mobile-facets__close {
    color: #0b3a53;
  }
}