/** Shopify CDN: Minification failed

Line 17:9 Unexpected "{"
Line 17:18 Expected ":"
Line 18:9 Unexpected "{"
Line 18:18 Expected ":"
Line 19:9 Unexpected "{"
Line 19:18 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:key-ingredients (INDEX:17) */
/* ── Scoped reset ── */
#kising-{{ section.id }} *,
#kising-{{ section.id }} *::before,
#kising-{{ section.id }} *::after {
  box-sizing: border-box;
}

/* ── Container ── */
.kising-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header area ── */
.kising-header {
  padding: 2rem 0 2.5rem;
  margin-bottom: 0;
}

/* ── Section heading — inherits theme heading font ── */
.kising-section-heading {
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.2;
  font-family: inherit;
}

/* ── Section subheading — inherits theme body font ── */
.kising-section-subheading {
  text-align: center;
  font-size: 1rem;
  margin: 0;
  line-height: 1.7;
  font-family: inherit;
}

/* ── Blocks list ── */
.kising-blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2rem;
}

/* ── Card: height is driven by image natural height ── */
.kising-card {
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
}

.kising-card--img-right {
  flex-direction: row-reverse;
}

/* ── Image pane: natural height, no crop ── */
.kising-card__image-wrap {
  flex: 0 0 50%;
  display: flex;
  align-items: stretch;
}

.kising-card__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.kising-card:hover .kising-card__img {
  transform: scale(1.03);
}

.kising-card__img-placeholder {
  width: 100%;
  min-height: 280px;
  background: #f2ede8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #aaa;
  font-size: 13px;
}

/* ── Body pane — inherits theme fonts ── */
.kising-card__body {
  flex: 1;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: inherit;
}

/* ── Ingredient heading — font-family from theme, italic via inline style ── */
.kising-card__heading {
  font-weight: 400;
  margin: 0 0 0.9rem;
  line-height: 1.25;
  font-family: inherit;
}

/* ── Description — inherits theme body font ── */
.kising-card__desc {
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
  font-family: inherit;
}

.kising-card__desc p {
  margin: 0 0 0.75em;
}

.kising-card__desc p:last-child {
  margin-bottom: 0;
}

/* ── CTA ── */
.kising-card__cta {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 9px 22px;
  border: 1px solid;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.18s, color 0.18s;
  align-self: flex-start;
  font-family: inherit;
}

.kising-card__cta:hover {
  filter: brightness(0) invert(1);
  background: currentColor;
}

/* ── Empty state ── */
.kising-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #888;
  border: 2px dashed #ddd;
  border-radius: 12px;
  font-size: 14px;
}

/* ── Mobile: stack image on top, then heading, then description ── */
@media (max-width: 767px) {
  .kising-card,
  .kising-card--img-right {
    flex-direction: column;
  }

  .kising-card__image-wrap {
    flex: 0 0 auto;
    width: 100%;
  }

  .kising-card__img {
    width: 100%;
    height: auto;
  }

  .kising-card__body {
    padding: 1.4rem 1.25rem;
  }

  .kising-card__heading {
    font-size: 1.25rem !important;
  }
}
/* END_SECTION:key-ingredients */