/** Shopify CDN: Minification failed

Line 12:18 Unexpected "{"
Line 12:27 Expected ":"

**/
/* ==========================================================================
   PLT Before/After Slider Section
   Namespace: pltbfaf-
   ========================================================================== */

#shopify-section-{{ section.id }} .pltbfaf-section,
.pltbfaf-section {
  width: 100%;
  box-sizing: border-box;
}

.pltbfaf-section * {
  box-sizing: border-box;
}

.pltbfaf-container {
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Header ---- */
.pltbfaf-header {
  margin-bottom: 40px;
  max-width: 760px;
}

.pltbfaf-align-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pltbfaf-align-left {
  text-align: left;
}

.pltbfaf-align-right {
  text-align: right;
  margin-left: auto;
}

.pltbfaf-subheading {
  font-family: var(--pltbfaf-body-font);
  font-weight: var(--pltbfaf-body-weight);
  font-style: var(--pltbfaf-body-style);
  font-size: var(--pltbfaf-subheading-size);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pltbfaf-accent);
  margin: 0 0 12px;
}

.pltbfaf-heading {
  font-family: var(--pltbfaf-heading-font);
  font-weight: var(--pltbfaf-heading-weight);
  font-style: var(--pltbfaf-heading-style);
  font-size: var(--pltbfaf-heading-size);
  line-height: 1.15;
  color: var(--pltbfaf-heading-color);
  margin: 0 0 16px;
}

.pltbfaf-description {
  font-family: var(--pltbfaf-body-font);
  font-weight: var(--pltbfaf-body-weight);
  font-style: var(--pltbfaf-body-style);
  color: var(--pltbfaf-text-color);
  font-size: 16px;
  line-height: 1.6;
}

.pltbfaf-description p {
  margin: 0;
}

/* ---- Grid ---- */
.pltbfaf-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

.pltbfaf-columns-2 {
  grid-template-columns: repeat(1, 1fr);
}

.pltbfaf-columns-3 {
  grid-template-columns: repeat(1, 1fr);
}

@media screen and (min-width: 750px) {
  .pltbfaf-columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .pltbfaf-columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Card ---- */
.pltbfaf-card {
  display: flex;
  flex-direction: column;
}

/* ---- Slider ---- */
.pltbfaf-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--pltbfaf-card-radius);
  cursor: ew-resize;
  user-select: none;
  background: #eee;
}

.pltbfaf-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pltbfaf-before-wrap {
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}

.pltbfaf-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.pltbfaf-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e5e5;
}

.pltbfaf-placeholder-svg {
  width: 60%;
  height: 60%;
  opacity: 0.5;
}

/* ---- Badges ---- */
.pltbfaf-badge {
  position: absolute;
  top: 16px;
  font-family: var(--pltbfaf-body-font);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  z-index: 3;
}

.pltbfaf-badge-before {
  left: 16px;
  background: var(--pltbfaf-badge-before-bg);
  color: var(--pltbfaf-badge-before-text);
}

.pltbfaf-badge-after {
  right: 16px;
  background: var(--pltbfaf-badge-after-bg);
  color: var(--pltbfaf-badge-after-text);
}

/* ---- Handle ---- */
.pltbfaf-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  z-index: 4;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pltbfaf-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: var(--pltbfaf-handle-color);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
}

.pltbfaf-handle-circle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pltbfaf-handle-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #1b1b1b;
}

.pltbfaf-handle-circle svg {
  width: 14px;
  height: 14px;
}

.pltbfaf-dragging {
  cursor: ew-resize;
}

/* ---- Caption ---- */
.pltbfaf-caption {
  font-family: var(--pltbfaf-body-font);
  font-weight: var(--pltbfaf-body-weight);
  font-style: var(--pltbfaf-body-style);
  font-size: var(--pltbfaf-caption-size);
  color: var(--pltbfaf-text-color);
  text-align: center;
  margin: 16px 0 0;
}

/* ---- CTA ---- */
.pltbfaf-cta {
  margin-top: 48px;
}

.pltbfaf-button {
  display: inline-block;
  font-family: var(--pltbfaf-body-font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background: var(--pltbfaf-accent);
  padding: 16px 40px;
  border-radius: 999px;
  transition: opacity 0.2s ease;
}

.pltbfaf-button:hover {
  opacity: 0.85;
}
