/** Shopify CDN: Minification failed

Line 21:10 Unexpected "{"
Line 21:19 Expected ":"
Line 22:16 Expected identifier but found whitespace
Line 22:18 Unexpected "{"
Line 22:27 Expected ":"
Line 22:53 Expected ":"
Line 23:19 Expected identifier but found whitespace
Line 23:21 Unexpected "{"
Line 23:30 Expected ":"
Line 23:59 Expected ":"
... and 10 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:homepage-hero (INDEX:21, SCOPED:FALSE) */
.section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }

  .homepage-complete-section {
    width: 100%;
    overflow: visible;
  }

  .homepage-grid {
    display: grid;
    grid-template-columns: 314px 1fr 400px;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
  }

  /* === SIDEBAR STYLES === */
  .homepage-sidebar {
    position: relative;
    overflow:visible;
    top: 20px;
    z-index: 20;
  }

  /* === SLIDESHOW STYLES === */
  .homepage-slideshow {
    position: relative;
    height: 500px;
    width: 900px;
    z-index: 1;
  }


  .custom-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: visible;
    background: #f5f5f5;
  }

  .slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slide.active {
    opacity: 1;
    z-index: 1;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e5e5;
    color: #999;
    font-size: 18px;
  }

  .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    text-align: center;
    z-index: 2;
  }

  .slide-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.2;
  }

  .slide-description {
    font-size: 18px;
    margin: 0 0 20px;
    opacity: 0.95;
  }

  .slide-button {
    display: inline-block;
    padding: 14px 32px;
    background: #1e3a5f;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
  }

  .slide-button:hover {
    background: #2d4a6f;
    transform: translateY(-2px);
  }

  .slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s;
  }

  .slideshow-nav:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }

  .slideshow-nav.prev {
    left: 20px;
  }

  .slideshow-nav.next {
    right: 20px;
  }

  .slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
  }

  .dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
  }
  
  /* === RESPONSIVE === */
  @media screen and (max-width: 1200px) {
    .homepage-grid {
      grid-template-columns: 280px 1fr 350px;
    }

    .slide-title {
      font-size: 28px;
    }
  }

  /* Hide sidebar on MOBILE ONLY */
@media screen and (max-width: 749px) {
  .homepage-sidebar {
    display: none;
  }
}

  @media screen and (max-width: 989px) {
    .homepage-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .homepage-sidebar {
      position: static;
      overflow: visible;
    }

    .homepage-slideshow,
    .homepage-promo {
      height: 500px;
    }

    .slide-title {
      font-size: 24px;
    }

    .slide-description {
      font-size: 16px;
    }

    .promo-heading {
      font-size: 24px;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 989px) {
  .homepage-grid {
    align-items: stretch;
  }

  .homepage-sidebar,
  .homepage-slideshow {
    height: auto;
    min-height: 500px;
  }

  .custom-slideshow {
    height: 100%;
  }
}
/* END_SECTION:homepage-hero */

/* START_SECTION:homepage-layout (INDEX:22, SCOPED:FALSE) */
.section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }

  .homepage-three-column-wrapper {
    display: grid;
    grid-template-columns: 314px 1fr 400px;
    gap: 20px;
    align-items: start;
  }

  .homepage-sidebar {
    position: sticky;
    top: 20px;
  }

  .homepage-slideshow-area,
  .homepage-promo-area {
    min-height: 450px;
  }

  .slideshow-note {
    padding: 40px 20px;
    background: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 8px;
    text-align: center;
    color: #666;
  }

  .promo-card {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    padding: 40px 30px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .promo-card-content {
    text-align: center;
    color: white;
    padding: 0 20px 20px;
  }

  .promo-heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .promo-card-image {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .promo-card-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    object-fit: contain;
  }

  .promo-placeholder {
    padding: 60px 20px;
    background: #f9f9f9;
    border: 2px dashed #ddd;
    border-radius: 8px;
    text-align: center;
    color: #999;
  }

  /* Make slideshow fit properly */
  .homepage-slideshow-area .slideshow {
    height: 450px;
  }

  .homepage-slideshow-area .slideshow__media {
    height: 100%;
  }

  /* Responsive */
  @media screen and (max-width: 1200px) {
    .homepage-three-column-wrapper {
      grid-template-columns: 280px 1fr 350px;
    }
  }

  @media screen and (max-width: 989px) {
    .homepage-three-column-wrapper {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .homepage-sidebar {
      position: static;
    }

    .promo-card {
      min-height: 350px;
    }

    .promo-heading {
      font-size: 28px;
    }
  }
/* END_SECTION:homepage-layout */

/* START_SECTION:sidebar-navigation-section (INDEX:55, SCOPED:FALSE) */
.sidebar-navigation-wrapper {
    position: fixed;
    left: 20px;
    top: 150px;
    z-index: 100;
    max-width: 314px;
  }

  @media screen and (max-width: 989px) {
    .sidebar-navigation-wrapper {
      position: static;
      max-width: 100%;
    }
  }

  .sidebar-navigation-wrapper {
    position: fixed;
    left: 20px;
    top: 150px;
    z-index: 100;
    max-width: 314px;
  }

  @media screen and (max-width: 989px) {
    .sidebar-navigation-wrapper {
      position: relative;
      left: 0;
      top: 0;
      max-width: 100%;
      margin-bottom: 20px;
    }
  }
/* END_SECTION:sidebar-navigation-section */