/** Shopify CDN: Minification failed

Line 14:11 Unexpected "{"
Line 14:20 Expected ":"
Line 14:27 Unexpected "{"

**/
/* Compatible Products Section Stylesheet */
.m-compatible-products-section {
  position: relative;
  background-color: var(--section-bg-color, #f4f4f6);
}

#m-custom-{{ section.id }} {
  --section-padding-top: 50px;
  --section-padding-bottom: 50px;
}

.m-compatible-products {
  display: block;
  width: 100%;
}

.m-compatible-products__header {
  margin-bottom: 1.75rem;
}

.m-compatible-products__subheading {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 0.35rem;
  font-weight: 400;
  line-height: 1.4;
}

.m-compatible-products__heading {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* Cards Wrapper */
.m-compatible-products__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

/* Featured Card */
.m-compatible-products__card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2.25rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.m-compatible-products__card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .m-compatible-products__card {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}

/* Media / Image Column */
.m-compatible-products__media-col {
  position: relative;
  flex: 0 0 220px;
  max-width: 220px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .m-compatible-products__media-col {
    margin: 0;
  }
}

.m-compatible-products__image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-compatible-products__image-wrapper img,
.m-compatible-products__image-wrapper svg {
  max-width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  display: block;
}

/* Overlay Badge */
.m-compatible-products__badge {
  position: absolute;
  bottom: 0px;
  right: -10px;
  width: 90px;
  height: 90px;
  z-index: 2;
  pointer-events: none;
}

.m-compatible-products__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Info Column */
.m-compatible-products__info-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.m-compatible-products__tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.m-compatible-products__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.65rem 0;
  line-height: 1.3;
}

.m-compatible-products__title a {
  color: inherit;
  text-decoration: none;
}

.m-compatible-products__title a:hover {
  text-decoration: underline;
}

.m-compatible-products__desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
  /* max-width: 650px; */
}

/* Price Row */
.m-compatible-products__price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.m-compatible-products__price-compare {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 0.95rem;
}

.m-compatible-products__price-sale {
  background-color: var(--price-pill-bg, #fde8e8);
  color: var(--price-pill-color, #d93838);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  line-height: 1.3;
}

/* Link Button */
.m-compatible-products__link {
  color: #334155;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
  display: inline-block;
  width: fit-content;
}

.m-compatible-products__link:hover {
  color: #0f172a;
}
