/** Shopify CDN: Minification failed

Line 591:19 Expected identifier but found whitespace
Line 591:21 Unexpected "{"
Line 591:30 Expected ":"
Line 591:67 Expected ":"
Line 592:21 Expected identifier but found whitespace
Line 592:23 Expected identifier but found "%"
Line 592:76 Unexpected "{"
Line 592:77 Unexpected "{"
Line 592:86 Expected ":"
Line 592:126 Expected identifier but found "%"
... and 5 more hidden warnings

**/


/* CSS from section stylesheet tags */
.grv-treatments{max-width:1200px;margin:0 auto;padding:24px}
.grv-treatments__header{display:grid;gap:12px;justify-items:center;margin-bottom:16px}
.grv-treatments__title{font-size:40px;line-height:1.2;text-align:center;margin:0}
.grv-treatments__search{display:flex;align-items:center;width:min(640px,100%);border:1px solid #d9dee3;border-radius:8px;padding:6px 8px}
.grv-treatments__search input[type="search"]{flex:1;border:0;outline:0;padding:10px 8px;font-size:16px}
.grv-treatments__search button{border:0;background:transparent;padding:6px 8px;cursor:pointer}
.grv-treatments__rating{font-size:14px;color:#0a0a0a;margin:8px 0 0}
.grv-stars{letter-spacing:2px;color:#16a34a}
.grv-treatments__group{background:#f2f4fb;border-radius:12px;padding:20px;margin:20px 0}
.grv-treatments__group h2{font-size:28px;margin:0 0 12px}
.grv-card-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:12px}
.grv-card{display:grid;grid-template-columns:84px 1fr;gap:12px;align-items:center;border:1px solid #e3e6ed;border-radius:12px;padding:8px 10px;background:#fff;text-decoration:none;color:inherit}
.grv-card:hover{box-shadow:0 2px 10px rgba(0,0,0,.06)}
.grv-card__media{width:84px;height:64px;overflow:hidden;border-radius:8px}
.grv-card__media img{width:100%;height:100%;object-fit:cover}
.grv-card__body{display:flex;align-items:center;justify-content:space-between}
.grv-card__text{display:flex;flex-direction:column}
.grv-card__title{font-weight:600;font-size:16px}
.grv-card__sub{font-size:14px;color:#5b6470}
.grv-card__chev{font-size:24px;color:#2563eb;margin-left:8px}
@media (min-width: 992px){
  .grv-treatments__header{justify-items:stretch}
  .grv-treatments__title{text-align:left}
}
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
.featured-products {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-background);
  }

  .section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
  }

  .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
  }

  .section-description {
    font-size: var(--font-size-body);
    color: var(--color-text-primary);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
  }

  .products-grid {
    margin-bottom: var(--spacing-2xl);
  }

  .product-card {
    background-color: var(--color-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid var(--color-border);
  }

  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .product-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .product-card__image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--color-secondary);
  }

  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .product-card:hover .product-image {
    transform: scale(1.05);
  }

  .product-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background-color: var(--color-accent);
    color: var(--color-text-secondary);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius-button);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .product-card__content {
    padding: var(--spacing-lg);
  }

  .product-title {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
  }

  .product-description {
    font-size: var(--font-size-small);
    color: var(--color-text-primary);
    opacity: 0.7;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
  }

  .product-price {
    margin-bottom: var(--spacing-lg);
  }

  .price {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
  }

  .price--sale {
    color: var(--color-accent);
  }

  .price--compare {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
    color: var(--color-text-primary);
    opacity: 0.6;
    text-decoration: line-through;
    margin-left: var(--spacing-sm);
  }

  .product-card__button {
    width: 100%;
    justify-content: center;
  }

  .section-footer {
    text-align: center;
  }

  .placeholder-content {
    text-align: center;
    padding: var(--spacing-2xl);
    color: var(--color-text-primary);
    opacity: 0.6;
  }

  /* Tablet adjustments */
  @media screen and (min-width: 768px) {
    .products-grid {
      gap: var(--spacing-xl);
    }
  }

  /* Desktop adjustments */
  @media screen and (min-width: 1024px) {
    .products-grid.grid--desktop-4 {
      grid-template-columns: repeat(4, 1fr);
    }
  }
.features-grid {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-secondary);
  }

  .section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
  }

  .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
  }

  .section-description {
    font-size: var(--font-size-body);
    color: var(--color-text-primary);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
  }

  .features-wrapper {
    gap: var(--spacing-xl);
  }

  .feature-card {
    background-color: var(--color-background);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
  }

  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .feature-card__icon {
    margin-bottom: var(--spacing-lg);
    display: flex;
    justify-content: center;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }

  .feature-title {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
  }

  .feature-description {
    font-size: var(--font-size-body);
    color: var(--color-text-primary);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
  }

  .feature-link {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
  }

  .feature-link:hover {
    color: var(--color-accent);
  }

  /* Mobile stacking adjustments */
  @media screen and (max-width: 767px) {
    .feature-card {
      padding: var(--spacing-lg);
    }

    .feature-icon {
      width: 50px;
      height: 50px;
    }
  }

  /* Desktop 4-column option */
  @media screen and (min-width: 1200px) {
    .features-wrapper.grid--desktop-4 {
      grid-template-columns: repeat(4, 1fr);
    }
  }
.newsletter-cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-button-secondary) 100%);
    color: var(--color-text-secondary);
  }

  .newsletter-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    text-align: center;
  }

  .newsletter-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
  }

  .newsletter-description {
    font-size: var(--font-size-body);
    color: var(--color-text-secondary);
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
  }

  .newsletter-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-body);
    color: var(--color-text-secondary);
    opacity: 0.9;
    justify-content: center;
  }

  .benefit-check {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
  }

  .newsletter-form {
    max-width: 500px;
    margin: 0 auto;
  }

  .newsletter-form-wrapper {
    width: 100%;
  }

  .input-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }

  .newsletter-input {
    flex: 1;
    height: var(--button-height);
    padding: 0 var(--spacing-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-button);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    font-size: var(--font-size-body);
    font-family: var(--font-primary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }

  .newsletter-input:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.2);
  }

  .newsletter-submit {
    background-color: var(--color-accent);
    color: var(--color-text-secondary);
    border: none;
    width: 100%;
  }

  .newsletter-submit:hover {
    background-color: var(--color-accent);
    opacity: 0.9;
    transform: translateY(-1px);
  }

  .form-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
  }

  .success-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
  }

  .form-success p {
    margin: 0;
    font-weight: var(--font-weight-semibold);
  }

  .form-errors {
    margin-top: var(--spacing-sm);
  }

  .error-message {
    color: #ff6b6b;
    font-size: var(--font-size-small);
    margin: 0;
  }

  .privacy-text {
    font-size: var(--font-size-small);
    color: var(--color-text-secondary);
    opacity: 0.7;
    text-align: center;
    margin: 0;
    line-height: 1.4;
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* Tablet and Desktop */
  @media screen and (min-width: 768px) {
    .newsletter-content {
      grid-template-columns: 1fr 1fr;
      text-align: left;
      gap: var(--spacing-3xl);
    }

    .newsletter-form {
      margin: 0;
    }

    .input-group {
      flex-direction: row;
      gap: var(--spacing-sm);
    }

    .newsletter-submit {
      width: auto;
      min-width: 140px;
      flex-shrink: 0;
    }

    .benefit-item {
      justify-content: flex-start;
    }

    .privacy-text {
      text-align: left;
    }
  }

  @media screen and (min-width: 1024px) {
    .newsletter-content {
      gap: var(--spacing-3xl);
    }

    .newsletter-input {
      min-width: 300px;
    }
  }
.promise-section { padding: calc(var(--spacing-3xl) * 0.75) 0; background-color: #E2EEF8; }
  .promise-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--spacing-lg); align-items: center; }
  .promise-content { padding: var(--spacing-xl); }

  .promise-heading { font-size: var(--font-size-h2); font-weight: var(--font-weight-bold); color: #11365A; margin-bottom: var(--spacing-lg); line-height: 1.3; }
  .promise-description { font-size: var(--font-size-body); color: #11365A; line-height: 1.6; margin-bottom: var(--spacing-xl); }
  .promise-description p { margin-bottom: var(--spacing-md); }
  .promise-description p:last-child { margin-bottom: 0; }

  /* Bullets */
  .promise-bullets { display: grid; gap: var(--bullet-gap); margin: 0 0 var(--spacing-xl) 0; padding: 0; list-style: none; }
  .promise-bullet { display: grid; grid-template-columns: var(--bullet-circle) 1fr; align-items: center; gap: 12px; }
  .promise-bullet__icon { width: var(--bullet-circle); height: var(--bullet-circle); background: var(--bullet-circle-bg); border: 1px solid var(--bullet-circle-border); border-radius: 9999px; display: grid; place-items: center; }
  .promise-bullet__img, .promise-bullet__svg svg { width: var(--bullet-icon); height: var(--bullet-icon); object-fit: contain; display: block; }
  .promise-bullet__text { color: #11365A; font-weight: 700; }

  /* Cards */
  .promise-cards-container { position: relative; padding: var(--spacing-md); }
  .promise-cards-wrapper { overflow: hidden; border-radius: var(--border-radius); }
  .promise-cards { display: flex; gap: var(--spacing-sm); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding: var(--spacing-sm); }
  .promise-cards::-webkit-scrollbar { display: none; }

  .promise-card {
    flex: 0 0 calc(var(--card-width-mobile) - var(--spacing-sm));
    background-color: #fff; border-radius: var(--border-radius); padding: var(--spacing-lg);
    scroll-snap-align: start; box-shadow: var(--shadow-sm); text-align: left;
    display: flex; flex-direction: column;
    min-height: var(--card-min-h);
    height: var(--card-fixed-h);
  }
  @media (min-width: 768px) {
    .promise-card { flex-basis: calc(var(--card-width-tablet) - var(--spacing-sm)); }
  }
  @media (min-width: 1024px) {
    .promise-cards .promise-card { flex-basis: calc(var(--card-width-desktop) - var(--spacing-sm)); }
  }

  /* Logo box uses CSS var. The image itself takes the full box without forcing a ratio. */
  .promise-card-icon { width: var(--card-logo); height: var(--card-logo); margin-bottom: var(--spacing-md); }
  .promise-icon-image, .promise-icon-svg { width: 100%; height: 100%; display: block; }
  .promise-icon-image { object-fit: contain; image-rendering: auto; }

  .promise-card-heading { font-size: var(--font-size-h4); font-weight: var(--font-weight-semibold); color: #11365A; margin-bottom: var(--spacing-sm); line-height: 1.3; }
  .promise-card-separator { border: none; height: 1px; background-color: #11365A; margin: var(--spacing-sm) 0; opacity: 0.2; }
  .promise-card-description { font-size: var(--font-size-body); color: #11365A; line-height: 1.5; margin-bottom: var(--spacing-lg); opacity: 0.8; }

  .promise-card-button { margin-top: auto; }
  .promise-card-btn { width: auto; padding: var(--spacing-sm) var(--spacing-md); font-size: calc(var(--font-size-body) * 0.9); background-color: transparent !important; border: 2px solid #11365A !important; color: #11365A !important; }
  .promise-card-btn:hover { background-color: #11365A !important; color: #fff !important; }

  .promise-dots { display: none; justify-content: flex-start; gap: var(--spacing-sm); margin-top: var(--spacing-lg); }
  .promise-dot { width: 12px; height: 12px; border-radius: 50%; border: none; background-color: #11365A; opacity: .3; cursor: pointer; transition: opacity .3s; }
  .promise-dot.active, .promise-dot:hover { opacity: 1; }

  /* Mobile overrides: swap in mobile logo size and card heights */
  @media (max-width: 767px) {
    .promise-grid { grid-template-columns: 1fr; gap: var(--spacing-lg); }
    .promise-content, .promise-cards-container { padding: var(--spacing-md); }
    .promise-heading { font-size: var(--font-size-h3); }

    .promise-section {
      --card-min-h: {{ section.settings.card_min_height_mobile }}px;
      --card-fixed-h: {% if section.settings.card_fixed_height_mobile > 0 %}{{ section.settings.card_fixed_height_mobile }}px{% else %}auto{% endif %};
      --card-logo: {{ section.settings.card_logo_size_mobile }}px;
    }
  }
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
.service-grid {
    padding: var(--spacing-2xl) 0;
    background-color: var(--color-primary);
  }

  .services-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  @media (min-width: 768px) {
    .services-wrapper {
      flex-direction: row;
      flex-wrap: wrap;
    }

    .service-box {
      flex: 1;
      min-width: 300px;
    }
  }

  @media (min-width: 1024px) {
    .services-wrapper {
      flex-wrap: nowrap;
    }
  }

  .service-box {
    background-color: var(--color-background);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
  }

  .service-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .service-icon {
    margin-bottom: var(--spacing-lg);
    display: flex;
    justify-content: center;
  }

  .service-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }

  .service-title {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
  }

  .service-description {
    font-size: var(--font-size-body);
    color: var(--color-text-primary);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
  }

  /* Mobile adjustments */
  @media screen and (max-width: 767px) {
    .service-grid {
      padding: var(--spacing-xl) 0;
    }

    .service-box {
      padding: var(--spacing-lg);
    }

    .service-icon-img {
      width: 40px;
      height: 40px;
    }
  }

  /* Desktop adjustments */
  @media screen and (min-width: 1024px) {
    .services-wrapper {
      gap: var(--spacing-xl);
    }

    .service-icon-img {
      width: 60px;
      height: 60px;
    }
  }
.trust-indicators {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-background);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }

  .section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
  }

  .section-title {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
  }

  .section-description {
    font-size: var(--font-size-body);
    color: var(--color-text-primary);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
  }

  .trust-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
  }

  /* Certifications */
  .certifications-row {
    padding: var(--spacing-lg) 0;
  }

  .certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-md);
  }

  .certification-image {
    margin-bottom: var(--spacing-sm);
  }

  .cert-logo {
    width: auto;
    max-width: 80px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
  }

  .certification-item:hover .cert-logo {
    filter: grayscale(0%);
    opacity: 1;
  }

  .certification-title {
    font-size: var(--font-size-small);
    color: var(--color-text-primary);
    opacity: 0.8;
    font-weight: var(--font-weight-medium);
  }

  /* Trust Stats */
  .trust-stats {
    background-color: var(--color-secondary);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl) var(--spacing-lg);
  }

  .stat-item {
    text-align: center;
    padding: var(--spacing-md);
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
  }

  .stat-label {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
  }

  .stat-description {
    font-size: var(--font-size-small);
    color: var(--color-text-primary);
    opacity: 0.7;
  }

  /* Security Badges */
  .security-badges {
    padding: var(--spacing-lg) 0;
  }

  .security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-sm);
  }

  .badge-image {
    margin-bottom: var(--spacing-sm);
  }

  .badge-logo {
    width: auto;
    max-width: 60px;
    height: auto;
    max-height: 40px;
    object-fit: contain;
  }

  .badge-title {
    font-size: var(--font-size-small);
    color: var(--color-text-primary);
    opacity: 0.8;
    font-weight: var(--font-weight-medium);
  }

  /* Mobile adjustments */
  @media screen and (max-width: 767px) {
    .trust-grid {
      gap: var(--spacing-xl);
    }

    .stat-number {
      font-size: 2rem;
    }

    .certifications-grid.grid--mobile-2,
    .badges-grid.grid--mobile-2 {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-md);
    }
  }

  /* Desktop adjustments */
  @media screen and (min-width: 1024px) {
    .stat-number {
      font-size: 3rem;
    }
  }

/* CSS from block stylesheet tags */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }

/* CSS from snippet stylesheet tags */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }