/** Shopify CDN: Minification failed

Line 131:14 Expected identifier but found whitespace
Line 131:16 Unexpected "{"
Line 131:25 Expected ":"
Line 131:49 Expected ":"
Line 179:18 Expected identifier but found whitespace
Line 179:20 Unexpected "{"
Line 179:29 Expected ":"
Line 179:57 Expected ":"
Line 264:10 Expected identifier but found whitespace
Line 264:12 Unexpected "{"
... and 15 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:behind-the-design (INDEX:3) */
.behind-the-design {
    padding: var(--btd-padding-y, 4rem) var(--btd-padding-x, 2rem);
    background-color: var(--btd-bg, #f6f3ee);
  }

  .behind-the-design__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: var(--btd-max-width, 1100px);
    margin: 0 auto;
    align-items: center;
  }

  @media (min-width: 750px) {
    .behind-the-design__inner {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* Image */
  .behind-the-design__image-link {
    display: block;
    overflow: hidden;
    border-radius: var(--btd-image-radius, 4px);
  }

  .behind-the-design__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.4s ease;
  }

  .behind-the-design__image-link:hover .behind-the-design__image,
  .behind-the-design__image-link:focus-visible .behind-the-design__image {
    transform: scale(1.03);
  }

  /* Text content */
  .behind-the-design__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .behind-the-design__label {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--btd-label-color, currentColor);
    opacity: 0.6;
  }

  .behind-the-design__title {
    margin: 0;
    font-size: var(--btd-title-size, clamp(1.25rem, 2.5vw, 1.75rem));
    font-weight: var(--btd-title-weight, 500);
    line-height: 1.25;
  }

  .behind-the-design__title-link {
    color: inherit;
    text-decoration: none;
  }

  .behind-the-design__title-link:hover,
  .behind-the-design__title-link:focus-visible {
    text-decoration: underline;
  }

  .behind-the-design__excerpt {
    margin: 0;
    font-size: var(--btd-excerpt-size, 0.9375rem);
    line-height: 1.6;
    color: var(--btd-excerpt-color, currentColor);
    opacity: 0.8;
  }

  .behind-the-design__cta {
    display: inline-flex;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--btd-cta-color, currentColor);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    width: fit-content;
    transition: opacity 0.2s ease;
  }

  .behind-the-design__cta:hover,
  .behind-the-design__cta:focus-visible {
    opacity: 0.65;
  }
/* END_SECTION:behind-the-design */

/* START_SECTION:product-comparison-slider (INDEX:55) */
.comparison-slider-section {
    width: 100%;
    box-sizing: border-box;
  }

  .comparison-slider-inner {
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .comparison-slider__heading {
    text-align: center;
    margin-bottom: 8px;
    font-size: clamp(1.4rem, 3vw, 2rem);
  }

  .comparison-slider__subheading {
    text-align: center;
    color: #666;
    margin-bottom: 16px;
    font-size: 1rem;
  }

  .comparison-slider__labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
  }

  .comparison-slider__label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
  }

  .comparison-slider__label--before {
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
  }

  .comparison-slider__label--after {
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
  }

  /* ── Main wrapper ── */
  .comparison-slider__wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: {{ section.settings.border_radius }}px;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  }

  /* ── Images ── */
  .comparison-slider__image {
    display: block;
    width: 100%;
    line-height: 0;
  }

  .comparison-slider__image img {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
  }

  /* "After" sits at the base */
  .comparison-slider__image--after {
    position: relative;
    z-index: 1;
  }

  /* "Before" overlays and is clipped — starts at 50% */
  .comparison-slider__image--before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 50%;
    overflow: hidden;
    height: 100%;
  }

  .comparison-slider__image--before img {
    width: auto;
    height: 100%;
    max-width: none;
  }

  /* Placeholder when no image uploaded */
  .comparison-slider__placeholder {
    position: relative;
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 20px;
  }

  .comparison-slider__placeholder .placeholder-svg {
    width: 60%;
    max-width: 200px;
    opacity: 0.4;
  }

  .comparison-slider__placeholder span {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #999;
  }

  /* ── Handle ── */
  .comparison-slider__handle {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .comparison-slider__handle-line {
    flex: 1;
    width: {{ section.settings.handle_line_width }}px;
    background: {{ section.settings.handle_color }};
    opacity: 0.9;
  }

  .comparison-slider__handle-circle {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: {{ section.settings.handle_color }};
    color: {{ section.settings.handle_icon_color }};
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    pointer-events: all;
    cursor: col-resize;
  }

  .comparison-slider__handle-circle svg {
    width: 28px;
    height: 28px;
  }

  /* Focus ring for keyboard accessibility */
  .comparison-slider__wrapper:focus-within .comparison-slider__handle-circle {
    outline: 3px solid {{ section.settings.handle_color }};
    outline-offset: 3px;
  }

  .comparison-slider__caption {
    text-align: center;
    margin-top: 12px;
    font-size: 0.85rem;
    color: #888;
  }
/* END_SECTION:product-comparison-slider */