/** Shopify CDN: Minification failed

Line 16:18 Unexpected "{"
Line 16:27 Expected ":"
Line 16:34 Unexpected "{"
Line 17:13 Expected identifier but found whitespace
Line 17:15 Unexpected "{"
Line 17:29 Expected ":"
Line 18:19 Expected identifier but found whitespace
Line 18:21 Unexpected "{"
Line 18:35 Expected ":"
Line 19:18 Expected identifier but found whitespace
... and 163 more hidden warnings

**/
#shopify-section-{{ section.id }} {
    --accent: {{ accent_color }};
    --accent-hover: {{ accent_color | color_lighten: 8 }};
    --overlay-rgb: {{ overlay_color | color_to_rgb | remove: 'rgb(' | remove: ')' }};
    --overlay-alpha: {{ overlay_opacity }};
  }

  #shopify-section-{{ section.id }} .cabinet-hero {
    position: relative;
    min-height: 800px;
    overflow: hidden;
    background-color: #0a0a0a;
  }

  #shopify-section-{{ section.id }} .cabinet-hero__poster {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  #shopify-section-{{ section.id }} .cabinet-hero__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  #shopify-section-{{ section.id }} .cabinet-hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.6s ease;
  }

  #shopify-section-{{ section.id }} .cabinet-hero__video-wrap.video-hidden {
    opacity: 0;
    pointer-events: none;
  }

  #shopify-section-{{ section.id }} .cabinet-hero__video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  #shopify-section-{{ section.id }} .cabinet-hero__video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
  }

  #shopify-section-{{ section.id }} .cabinet-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(var(--overlay-rgb), calc(var(--overlay-alpha) + 0.22)) 0%,
      rgba(var(--overlay-rgb), var(--overlay-alpha)) 50%,
      rgba(var(--overlay-rgb), calc(var(--overlay-alpha) - 0.12)) 100%
    );
    z-index: 2;
  }

  #shopify-section-{{ section.id }} .cabinet-hero__container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 64px;
    position: relative;
    z-index: 3;
  }

  #shopify-section-{{ section.id }} .cabinet-hero__grid {
    min-height: 800px;
    display: grid;
    grid-template-columns: 1fr 480px;
    align-items: center;
    gap: 80px;
  }

  #shopify-section-{{ section.id }} .cabinet-hero__content {
    color: #ffffff;
    max-width: 600px;
    padding: 40px 0;
  }

  #shopify-section-{{ section.id }} .cabinet-hero__content .eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #FFDC32;
    margin-bottom: 28px;
    padding-left: 20px;
    position: relative;
  }

  /* #shopify-section-{{ section.id }} .cabinet-hero__content .eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: #FFDC32;
  } */

  #shopify-section-{{ section.id }} .cabinet-hero__content h1 {
    font-size: 62px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 24px;
  }

  #shopify-section-{{ section.id }} .cabinet-hero__content h1 em {
    color: #FFDC32;
    font-style: italic;
  }

  #shopify-section-{{ section.id }} .cabinet-hero__content .description {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin-bottom: 40px;
  }

  #shopify-section-{{ section.id }} .cabinet-hero__content .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1a1a1a;
    background: #FFDC32;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }

  #shopify-section-{{ section.id }} .cabinet-hero__content .hero-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
  }

  #shopify-section-{{ section.id }} .cabinet-hero__content .hero-btn:active {
    transform: translateY(0);
  }

  #shopify-section-{{ section.id }} .cabinet-hero__content .hero-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
  }

  #shopify-section-{{ section.id }} .cabinet-hero__content .hero-btn:hover svg {
    transform: translateX(3px);
  }
  #shopify-section-{{ section.id }} .cabinet-hero__card-wrapper {
    display: flex;
    justify-content: flex-end;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card {
    background: #ffffff;
    border-radius: 5px;
    padding: 36px 32px 32px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    position: relative;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .card-subtitle {
    font-size: 13px;
    color: #8c8c8c;
    line-height: 1.5;
    margin-bottom: 28px;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group {
    margin-bottom: 18px;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #555555;
    margin-bottom: 6px;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group input,
  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group select,
  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    line-height: 1.4;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group input::placeholder,
  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group textarea::placeholder {
    color: #b0b0b0;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group input:focus,
  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group select:focus,
  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group textarea:focus {
    border-color: #FFDC32;
    background: #fefdfb;
    box-shadow: 0 0 0 2px rgba(200, 169, 110, 0.15);
    outline: none;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group textarea {
    resize: vertical;
    min-height: 84px;
    padding-top: 10px;
  }

  #custom-cabinets-built-for-you .contact-form input{
  width: 100%;
  padding: 10px;
  box-sizing: border-box;

}

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
    width:100%;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #000;
    background: #FFDC32;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    border: none;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .submit-btn:hover {
    background: #000;
    color:#FFDC32;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .submit-btn:active {
    transform: translateY(0);
    box-shadow: none;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .submit-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .submit-btn:hover svg {
    transform: translateX(2px);
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-note {
    font-size: 11px;
    color: #aaaaaa;
    text-align: center;
    margin-top: 16px;
    line-height: 1.55;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-errors {
    background: #fff5f5;
    border: 1px solid #fecaca;
    border-radius: 5px;
    padding: 12px 14px;
    margin-bottom: 18px;
    font-size: 13px;
    color: #b91c1c;
    line-height: 1.5;
    display: none;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-errors.show {
    display: block;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group input.field-error,
  #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group select.field-error {
    border-color: #e05252;
    background: #fff5f5;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .toast {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1a1a1a;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 10;
    white-space: nowrap;
  }

  #shopify-section-{{ section.id }} .cabinet-hero .toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }

  @media (max-width: 1024px) {
    #shopify-section-{{ section.id }} .cabinet-hero {
      min-height: auto;
      padding: 80px 0;
    }

    #shopify-section-{{ section.id }} .cabinet-hero__container {
      padding: 0 40px;
    }

    #shopify-section-{{ section.id }} .cabinet-hero__grid {
      min-height: auto;
      grid-template-columns: 1fr;
      gap: 56px;
      align-items: center;
    }

    #shopify-section-{{ section.id }} .cabinet-hero__content {
      max-width: 100%;
      padding: 0;
      text-align: center;
    }

    #shopify-section-{{ section.id }} .cabinet-hero__content .eyebrow {
      display: block;
    }

    #shopify-section-{{ section.id }} .cabinet-hero__content .description {
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    #shopify-section-{{ section.id }} .cabinet-hero__content h1 {
      font-size: 48px;
    }

    #shopify-section-{{ section.id }} .cabinet-hero__card-wrapper {
      justify-content: center;
    }

    #shopify-section-{{ section.id }} .cabinet-hero .quote-card {
      max-width: 480px;
      margin: 0 auto;
    }
  }
  @media (max-width: 767px) {
    #shopify-section-{{ section.id }} .cabinet-hero {
      min-height: 100vh;
      min-height: 100svh;
      padding: 56px 0 72px;
    }

    #shopify-section-{{ section.id }} .cabinet-hero__container {
      padding: 0 20px;
    }

    #shopify-section-{{ section.id }} .cabinet-hero__grid {
      min-height: 100vh;
      min-height: 100svh;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
    }

    #shopify-section-{{ section.id }} .cabinet-hero__content .eyebrow {
      font-size: 10px;
      margin-bottom: 20px;
    }

    #shopify-section-{{ section.id }} .cabinet-hero__content h1 {
      font-size: 36px;
      line-height: 1.12;
      margin-bottom: 18px;
    }

    #shopify-section-{{ section.id }} .cabinet-hero__content .description {
      font-size: 15px;
      margin-bottom: 32px;
    }

    #shopify-section-{{ section.id }} .cabinet-hero__content .hero-btn {
      padding: 14px 28px;
      font-size: 11px;
    }

    /* ── Card mobile ── */
    #shopify-section-{{ section.id }} .cabinet-hero .quote-card {
      padding: 28px 24px 24px;
      max-width: 100%;
    }

    #shopify-section-{{ section.id }} .cabinet-hero .quote-card h2 {
      font-size: 18px;
    }

    #shopify-section-{{ section.id }} .cabinet-hero .quote-card .card-subtitle {
      font-size: 12px;
      margin-bottom: 24px;
    }

    #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }

    #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group {
      margin-bottom: 14px;
    }

    #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group input,
    #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group select,
    #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group textarea {
      padding: 10px 12px;
      font-size: 16px;
    }

    #shopify-section-{{ section.id }} .cabinet-hero .quote-card .submit-btn {
      padding: 14px 20px;
      font-size: 11px;
    }

    #shopify-section-{{ section.id }} .cabinet-hero__mute-btn {
      bottom: 16px;
      right: 16px;
      width: 38px;
      height: 38px;
    }

    #shopify-section-{{ section.id }} .cabinet-hero__mute-btn svg {
      width: 15px;
      height: 15px;
    }
  }

  @media (max-width: 420px) {
    #shopify-section-{{ section.id }} .cabinet-hero__content h1 {
      font-size: 30px;
    }

    #shopify-section-{{ section.id }} .cabinet-hero .quote-card {
      padding: 24px 18px 22px;
    }

    #shopify-section-{{ section.id }} .cabinet-hero .quote-card .form-group {
      margin-bottom: 12px;
    }
  }