/** Shopify CDN: Minification failed

Line 15:37 Unterminated string token

**/
/* ── GLOWING SKIN SECTION ── */
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300..700&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Space+Grotesk:wght@300..700&display=swap');

.skin-section-wrapper { display: block; }

.skin-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--skin-padding-top, 80px) 40px var(--skin-padding-bottom, 80px);
  font-family: ''Newsreader', serif ;
}

/* Header */
.skin-header {
  text-align: center;
  margin-bottom: 64px;
}

.skin-heading {
  font-family: 'Newsreader', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 237;
  letter-spacing: -0.01em;
  color: var(--skin-heading-color, #1a1a1a);
  line-height: 1.3;
}

.skin-heading em {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.15em;
  color: #5a5a5a;
}

.skin-subheading {
  margin-top: 14px;
  font-size: 0.95rem;
  color: #9a9a9a;
  font-weight: 300;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* Layout */
.skin-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Image Panel */
.skin-image-panel {
  position: sticky;
  top: 40px;
  height: var(--skin-image-height, 680px);
  border-radius: 4px;
  overflow: hidden;
  background: #f0ebe3;
}

.skin-image-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.skin-image-slide.active { opacity: 1; }

.skin-image-slide .skin-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.skin-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #e8ddd0 0%, #d4c4aa 100%);
}

/* Steps Panel */
.skin-steps-panel {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
}

.skin-step {
  border-bottom: 1px solid #e5e0d8;
  padding: 28px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.skin-step:first-child { border-top: 1px solid #e5e0d8; }

.skin-step-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.skin-step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e5e0d8;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.skin-step.active .skin-step-dot,
.skin-step:hover .skin-step-dot {
  background: #1a1a1a;
}

.skin-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.skin-step-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 237;
  letter-spacing: -0.01em;
  color: var(--skin-heading-color, #1a1a1a);
  line-height: 1.2;
}

.skin-step-thumb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0ebe3;
  border: 1px solid #e5e0d8;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.skin-step:hover .skin-step-thumb,
.skin-step.active .skin-step-thumb {
  transform: scale(1.06);
  border-color: #5a5a5a;
}

.skin-step-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.skin-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8ddd0, #c4b49a);
}

/* Step Body (accordion) */
.skin-step-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.skin-step.active .skin-step-body {
  max-height: 200px;
  opacity: 1;
}

.skin-step-desc {
  font-size: 0.875rem;
  color: var(--skin-text-color, #5a5a5a);
  line-height: 1.7;
  margin-top: 14px;
  font-weight: 300;
}

.skin-step-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 11px 28px;
  background: var(--skin-btn-bg, #1a1a1a);
  color: var(--skin-btn-text, #ffffff);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.2s ease;
}

.skin-step-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .skin-section { padding-left: 20px; padding-right: 20px; }
  .skin-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .skin-image-panel {
    position: relative;
    top: 0;
    height: 360px;
  }
}
