/** Shopify CDN: Minification failed

Line 65:2 Unexpected "{"
Line 65:3 Expected identifier but found "%"
Line 80:4 Unexpected "{"
Line 80:5 Expected identifier but found "%"

**/
.banner_title { font-size: 24px; line-height: normal; font-weight: 400; padding-left: 16px; padding-top: 46px; margin-bottom: 37px; }
  /* .image-box {     display: flex;
    flex-direction: column;
    gap: 20px; } */

    .image-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
}
  .productdrawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 10000;
    overflow: hidden; /* Prevent drawer itself from scrolling off-screen */
  }

  .productdrawer.open {
    display: block;
  }

  .productdrawer::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
  }

  .drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    /* width: 427px; */
    width: 735px;
    max-width: 90%;
    background: #fff;
    z-index: 2;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .productdrawer.open .drawer-content {
    transform: translateX(0);
  }

  {% comment %} .drawer-close {
    position: absolute;
    top: 16px;
    right: 15px;
    font-size: 19px;
    color: #fff;
    cursor: pointer;
    z-index: 3;
    border: 1px solid #fff;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  } {% endcomment %}

  /* Optional: smooth scrolling inside drawer */
  .drawer-content::-webkit-scrollbar {
    width: 6px;
  }

  .drawer-content::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }

.collection-link {     display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 10px; gap: 20px; }
.product_img { max-width: 68px; }

  @media (max-width: 767px) {  
    .product_img {
    max-width: 55px;
}
.image-box { grid-template-columns: 1fr; }

.collection-link { gap: 5px; }
    .drawer-content { width: auto;
    max-width: 80%; }
    .banner_title {
    font-size: 18px;
    padding-left: 12px;
    padding-top: 30px;
    margin-bottom: 20px;
}
}