/* Custom css start*/
body.theme-body-overflowhidden {
    overflow: auto !important;
}
@media all and (min-width: 1400px) {
    .zpcontainer {
        width: 1320px;
        margin-block-start:0;
      	margin-block-end:0;
      	margin-inline-start:auto;
      	margin-inline-end:auto;
  }
}
@media (min-width: 992px) {
    .zpheader-style-02 .theme-header .zpcontainer .theme-branding-info {
        flex: 0 1 auto;
        margin-inline-start: auto;
        margin-inline-end: auto;
        padding-inline-end: 0;
    }
    .theme-navigation-and-icons.theme-search-mini-cart-style-02 {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(0, -50%);
    }
.theme-header .zpcontainer .theme-branding-info .theme-logo-parent {

        padding-inline-end: 0
}
.theme-navigation-and-icons .theme-search-and-mini-cart-group .theme-search .theme-search-field-container {
border-block-start: 3px solid #962941;
}
.theme-navigation-and-icons .theme-search-and-mini-cart-group .theme-search .theme-search-field-container .theme-search-go {  
    background: #95253d; }
}
/* Custom css end*/

/* Force Filmstrip to show only 1 product per slide on mobile */
@media only screen and (max-width: 767px) {
  .zpfilmstrip-outter .zprow {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    width: 100% !important;
    position: relative !important;
  }

  .zpfilmstrip-outter .theme-prod-box {
    min-width: 100% !important; /* One full slide visible */
    flex: 0 0 100% !important;
    scroll-snap-align: start;
  }

  .zpfilmstrip-outter .theme-product-box-container {
    width: 100% !important;
  }

  /* Remove unwanted margins causing 2 items to appear */
  .zpfilmstrip-outter .theme-prod-box + .theme-prod-box {
    margin-left: 0 !important;
  }

  /* === Arrows visible & centered === */
  .zpfilmstrip-arrow-left,
  .zpfilmstrip-arrow-right {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999 !important;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff !important;
    border-radius: 50%;
    opacity: 1 !important;
    visibility: visible !important;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .zpfilmstrip-arrow-left:hover,
  .zpfilmstrip-arrow-right:hover {
    background: rgba(0, 0, 0, 0.6);
  }

  /* Left arrow */
  .zpfilmstrip-arrow-left {
    left: 10px;
  }

  /* Right arrow */
  .zpfilmstrip-arrow-right {
    right: 10px;
  }

  /* Optional: increase tap area for mobile */
  .zpfilmstrip-arrow-left::before,
  .zpfilmstrip-arrow-right::before {
    font-size: 18px;
  }
}
/* Tablet view: show 3 products per slide */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .zpfilmstrip-outter .zprow {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    width: 100% !important;
    position: relative !important;
  }

  .zpfilmstrip-outter .theme-prod-box {
    min-width: 33.3333% !important; /* 3 items per view */
    flex: 0 0 33.3333% !important;
    scroll-snap-align: start;
  }

  .zpfilmstrip-outter .theme-prod-box + .theme-prod-box {
    margin-left: 0 !important; /* remove extra spacing between slides */
  }

  /* Optional: adjust product container width */
  .zpfilmstrip-outter .theme-product-box-container {
    width: 100% !important;
  }
}
