/** Shopify CDN: Minification failed

Line 176:0 Expected "}" to go with "{"

**/
/* ============================================================
   PRODUCT SHOWCASE SECTION — FINAL (READY TO USE)
   Container max-width: 1200px
   Card CSS intentionally excluded
   ============================================================ */

   /* SECTION + WRAP */
   .product-showcase-section {
    padding: 28px 0;
    background: #fff;
  }

  .product-showcase-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
    box-sizing: border-box;
  }

  /* MAIN GRID: promo left + cards right */
  .product-showcase-main {
    display: grid;
    grid-template-columns: 358px 1fr;
    gap: 22px;
  }

  /* PROMO PANEL */
  .promo {
    position: relative;
    height: 1120px;
    overflow: hidden;
    margin-right: -200px;
  }

  .promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* PROMO OVERLAY */
  .promo-box {
    position: absolute;
    bottom: 0;
    left: 26px;
    width: 42%;
    height: 362px;
    padding: 65px 30px;
    background: rgba(23, 17, 11, 0.28);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .promo-small {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }

  .promo-large {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    line-height: 0.98;
    text-transform: uppercase;
  }

  /* ====== TWO ROW CARD GRID ====== */
  
  /* ====== SWIPER ====== */
  .mySwipergroup {
      max-width: 800px;
      margin: auto;
  }

  .swiper-slide {
      height: auto;
  }

  /* ====== TWO ROW CARD GRID ====== */
  .cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 columns */
      grid-template-rows: repeat(2, auto);              /* 2 rows */
      gap: 20px;
  }

  /* ====== RESPONSIVE ====== */
  @media (max-width: 991px) {
      .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }
}

@media (max-width: 575px) {
  .mySwipergroup {
    max-width: 400px;
    margin: auto;
}
  .cards {
    grid-template-columns: 1fr;
}

/* ================================
   RESPONSIVE
   ================================ */

   @media (max-width: 920px) {

    .product-showcase-wrap {
      padding: 0 16px;
    }

    .product-showcase-main {
      grid-template-columns: 360px 1fr;
      gap: 18px;
      overflow: hidden;
    }

    .promo {
      height: 680px;
    }

    .promo-large {
      font-size: 52px;
    }
  }

  @media (max-width: 760px) {
    .product-showcase-section {
      padding: 80px 0;
    }
    .product-showcase-main {
      grid-template-columns: 1fr;
    }

    .promo {
      height: 420px;
      display: none;
    }

    .promo-box {
      width: 100%;
      padding: 20px;
      justify-content: flex-start;
    }

    .promo-large {
      font-size: 36px;
      margin-top: 24px;
    }

    .cards {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    /* IMAGE NORMALIZATION */
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
  }
