/** Shopify CDN: Minification failed

Line 23:19 Expected identifier but found whitespace
Line 23:21 Unexpected "{"
Line 23:30 Expected ":"
Line 38:8 Expected identifier but found whitespace
Line 38:10 Unexpected "{"
Line 38:19 Expected ":"
Line 198:19 Expected identifier but found whitespace
Line 198:21 Unexpected "{"
Line 198:30 Expected ":"
Line 213:8 Expected identifier but found whitespace
... and 17 more hidden warnings

**/


/* CSS from section stylesheet tags */
.service-grid-connected {
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 40px 0 56px;
  background-color: {{ section.settings.bg_color }};
  font-family: inherit;
}

.service-grid-connected__inner {
  max-width: 1364px;
  margin: 0 auto;
  padding: 0 16px;
}

.service-grid-connected__heading {
  font-size: 35px;
  line-height: 1.3;
  margin: 0 0 28px;
  font-weight: 500;
  color: {{ section.settings.heading_color }};
  text-align: center;
  font-family: sans-serif;
}

.service-grid-connected__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* Card base */

.sg-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background-color: #000;
  color: #ffffff;
}

.sg-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.sg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 20%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
}


.sg-card__overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sg-card__eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.9;
}

.sg-card__title {
  font-size: 24px;
  margin: 0 0 6px;
  font-weight: 500;
}

.sg-card__text {
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.9;
}

/* Icon top corner */
.sg-card__icon {
  position: absolute;
  top: 16px;
  left: 22px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(246,241,234,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.sg-card__icon svg {
  width: 16px;
  height: 16px;
  stroke: #000;
}

/* Hover */
.sg-card:hover .sg-card__image {
  transform: scale(1.06);
}

/* Connected outer corners */

.service-grid-connected__grid .sg-card:nth-child(1) {
  border-radius: 22px 0 0 0;
}
.service-grid-connected__grid .sg-card:nth-child(2) {
  border-radius: 0 22px 0 0;
}
.service-grid-connected__grid .sg-card:nth-child(3) {
  border-radius: 0 0 0 22px;
}
.service-grid-connected__grid .sg-card:nth-child(4) {
  border-radius: 0 0 22px 0;
}

/* Text alignment per column */
.service-grid-connected__grid .sg-card:nth-child(odd) .sg-card__overlay {
  text-align: left;
  align-items: flex-start;
}
.service-grid-connected__grid .sg-card:nth-child(even) .sg-card__overlay {
  text-align: right;
  align-items: flex-end;
}

/* Mobile */

@media (max-width: 749px) {
  .service-grid-connected {
    padding: 28px 0 40px;
  }

  .service-grid-connected__heading {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .service-grid-connected__grid {
    grid-template-columns: 1fr;
  }

  /* On mobile, all cards individually rounded */
  .service-grid-connected__grid .sg-card {
    border-radius: 18px !important;
  }

  .sg-card__overlay {
    padding: 20px 18px;
  }

  .sg-card__title {
    font-size: 20px;
  }

  .sg-card__icon {
    left: 16px;
  }
}
.service-grid-invert {
  padding: 40px 0 56px;
  background-color: {{ section.settings.bg_color }};
  font-family: inherit;
}

.service-grid-invert__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

.service-grid-invert__heading {
  font-size: 26px;
  line-height: 1.3;
  margin: 0 0 28px;
  font-weight: 500;
  color: {{ section.settings.heading_color }};
}

.service-grid-invert__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* Card container */

.sgi-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background-color: {{ section.settings.card_bg }};
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}

/* Media area */

.sgi-card__media {
  position: relative;
  min-height: 170px;
  background: #000;
  overflow: hidden;
}

.sgi-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.sgi-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.25) 40%,
    transparent 100%
  );
  z-index: 1;
}

/* Badge in media */
.sgi-card__badge {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: rgba(246,241,234,0.95);
  color: #111;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Text area */

.sgi-card__content {
  padding: 18px 22px 20px;
  color: {{ section.settings.text_color }};
}

.sgi-card__eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.8;
}

.sgi-card__title {
  font-size: 20px;
  margin: 0 0 6px;
  font-weight: 500;
}

.sgi-card__text {
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.9;
}

/* Hover */

.sgi-card:hover .sgi-card__image {
  transform: scale(1.06);
}

/* Desktop row inversion:
   - Cards 1 & 2: media on top (default)
   - Cards 3 & 4: text on top (content then media)
*/

@media (min-width: 750px) {
  .service-grid-invert__grid .sgi-card:nth-child(n+3) {
    flex-direction: column-reverse;
  }
}

/* Text alignment variation:
   left column → left, right column → right
*/

.service-grid-invert__grid .sgi-card:nth-child(odd) .sgi-card__content {
  text-align: left;
}
.service-grid-invert__grid .sgi-card:nth-child(even) .sgi-card__content {
  text-align: right;
}

/* Mobile */

@media (max-width: 749px) {
  .service-grid-invert {
    padding: 28px 0 40px;
  }

  .service-grid-invert__heading {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .service-grid-invert__grid {
    grid-template-columns: 1fr;
  }

  .sgi-card {
    border-radius: 18px;
  }

  .sgi-card__content {
    padding: 16px 16px 18px;
  }

  .sgi-card__title {
    font-size: 18px;
  }
}
.store-locations {
  padding: 20px 0px 20px 0px;
  background-color: {{ section.settings.bg_color }};
  font-family: inherit;
  margin: 50px 0px 50px 0px;
}

.store-locations__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

.store-locations__heading {
  font-size: 35px;
  line-height: 1.3;
  margin: 0 0 28px;
  font-weight: 500;
  color: #222222;
  text-align: center;
  font-family: sans-serif;
}

.store-locations__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.store-card {
  background-color: {{ section.settings.card_bg_color }};
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.store-card__image-wrap {
  position: relative;
  overflow: hidden;
  display: block;
}

.store-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.store-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.05) 60%,
    transparent 100%
  );
}

.store-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  pointer-events: none;
}

.store-card__pin {
  margin-bottom: 6px;
}

.store-card__pin svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.store-card__city {
  color: #ffffff;
  font-size: 30px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.store-card__content {
  padding: 18px 22px 20px;
  color: {{ section.settings.text_color }};
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.store-card__address1 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.store-card__address2 {
  margin: 0;
  font-size: 15px;
  opacity: 0.8;
}

.store-card__footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.store-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #916040;
  background-color: #f6f1ea;
  color: #916040;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

.store-card__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  opacity: 0.95;
}

.store-card__icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.store-card__icon-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  text-decoration: none;
}

.store-card__icon-link svg {
  width: 18px;
  height: 18px;
  stroke: #4a7b5a;
}

.store-card:hover .store-card__image {
  transform: scale(1.04);
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
  .store-locations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-card__city {
    font-size: 24px;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 749px) {
  .store-locations {
    padding: 28px 0 40px;
  }

  .store-locations__heading {
    font-size: 35px;
    margin-bottom: 18px;
  }

  .store-locations__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .store-card__content {
    padding: 14px 16px 16px;
  }

  .store-card__address1 {
    font-size: 16px;
  }

  .store-card__address2 {
    font-size: 14px;
  }

  .store-card__city {
    font-size: 22px;
  }

  .store-card__footer {
    margin-top: 12px;
  }

  .store-card__btn {
    width: 100%;
    justify-content: center;
  }

  .store-card__icons {
    gap: 8px;
  }
}