/** Shopify CDN: Minification failed

Line 21:13 Expected identifier but found whitespace
Line 21:15 Unexpected "{"
Line 21:24 Expected ":"
Line 37:8 Expected identifier but found whitespace
Line 37:10 Unexpected "{"
Line 37:19 Expected ":"
Line 43:8 Expected identifier but found whitespace
Line 43:10 Unexpected "{"
Line 43:19 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:treatments (INDEX:87) */
.treatments-section {
  padding: 60px 20px;
  background: {{ section.settings.section_bg }};
}

.treatments-wrapper {
  max-width: 1300px;
  margin: 0 auto;
}

.treatments-heading {
  margin-bottom: 30px;
}

.treatments-heading h2 {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.2;
  color: {{ section.settings.heading_color }};
  font-weight: 700;
}

.treatments-heading p {
  margin: 0;
  color: {{ section.settings.text_color }};
  font-size: 15px;
  line-height: 1.5;
}

.treatments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 18px;
}

.treatment-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 14px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.treatment-image {
  border: 1px solid #dddddd;
  background: #ffffff;
  padding: 12px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.3s ease;
}

.treatment-card:hover img {
  transform: scale(1.04);
}

.treatment-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.treatment-title {
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
  line-height: 1.3;
}

.treatment-price {
  font-size: 14px;
  color: #444444;
  margin-bottom: 18px;
}

.treatment-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  background: #4d3c84;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.treatment-btn:hover {
  opacity: 0.9;
}

@media screen and (max-width: 991px) {
  .treatments-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {

  .treatments-section {
    padding: 40px 15px;
  }

  .treatments-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .treatments-heading {
    margin-bottom: 20px;
  }

  .treatments-heading h2 {
    font-size: 26px;
  }

  .treatments-heading p {
    font-size: 13px;
  }

  .treatment-card {
    padding: 10px;
  }

  .treatment-image {
    height: 140px;
    padding: 8px;
    margin-bottom: 12px;
  }

  .treatment-title {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .treatment-price {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .treatment-btn {
    height: 36px;
    font-size: 12px;
  }
}
/* END_SECTION:treatments */