/** Shopify CDN: Minification failed

Line 29:4 Unexpected "{"
Line 29:5 Expected identifier but found "%"
Line 29:59 Unexpected "{"
Line 29:60 Expected identifier but found "%"
Line 54:4 Unexpected "{"
Line 54:5 Expected identifier but found "%"
Line 54:60 Unexpected "{"
Line 54:61 Expected identifier but found "%"

**/
/* START_SECTION:toyzaar-hero (INDEX:63) */
.toyzaar-hero {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .toyzaar-hero .page-width {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .toyzaar-hero__wrapper {
    position: relative;
    overflow: hidden;
    {% comment %} border-radius: var(--hero-radius, 24px); {% endcomment %}
    background: rgb(var(--color-background));
  }

  .toyzaar-hero__slider {
    width: 100%;
    height: 100%;
  }

  .toyzaar-hero__slide {
    position: relative;
    overflow: hidden;
  }

  .toyzaar-hero__link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }

  .toyzaar-hero__media {
    position: relative;
    width: 100%;
    height: auto;
    {% comment %} height: var(--hero-height-desktop, auto); {% endcomment %}
    overflow: hidden;
  }

  .toyzaar-hero__desktop,
  .toyzaar-hero__mobile {
    width: 100%;
    height: 100%;
  }

  .toyzaar-hero__desktop img,
  .toyzaar-hero__mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
  }

  .toyzaar-hero__link:hover img {
    transform: scale(1.02);
  }

  .toyzaar-hero__mobile {
    display: none;
  }

  /* Navigation */

  .toyzaar-hero .swiper-button-next,
  .toyzaar-hero .swiper-button-prev {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    color: #222;
    transition: .25s ease;
  }

  .toyzaar-hero .swiper-button-next:hover,
  .toyzaar-hero .swiper-button-prev:hover {
    transform: scale(1.08);
    background: #fff;
  }

  .toyzaar-hero .swiper-button-next:after,
  .toyzaar-hero .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
  }

  /* Pagination */

  .toyzaar-hero .swiper-pagination {
    bottom: 18px !important;
  }

  .toyzaar-hero .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: rgba(255,255,255,.5);
    transition: .3s ease;
  }

  .toyzaar-hero .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 100px;
    background: #fff;
  }

  /* Placeholder */

  .toyzaar-hero__placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f6f6f6;
    color: #777;
    height: 100%;
    font-size: 16px;
    font-weight: 600;
  }

  .toyzaar-hero__placeholder svg {
    width: 90px;
    height: 90px;
    opacity: .35;
  }

  /* Loading */

  .toyzaar-hero img {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  /* Tablet */

  @media screen and (max-width: 1024px) {

    /* .toyzaar-hero {
      padding: 16px 0;
    } */

    .toyzaar-hero .page-width {
      padding: 0 16px;
    }

    .toyzaar-hero__media {
      height: var(--hero-height-mobile, 340px);
    }

    .toyzaar-hero .swiper-button-next,
    .toyzaar-hero .swiper-button-prev {
      width: 40px;
      height: 40px;
    }
  }

  /* Mobile */

  @media screen and (max-width: 640px) {

    .toyzaar-hero__desktop {
      display: none;
    }

    .toyzaar-hero__mobile {
      display: block;
    }

    .toyzaar-hero__media img {
      /* height: var(--hero-height-mobile, 300px); */
      aspect-ratio: 1/1;
    }

    .toyzaar-hero__wrapper {
      border-radius: calc(var(--hero-radius, 24px) - 8px);
    }

    .toyzaar-hero .swiper-button-next,
    .toyzaar-hero .swiper-button-prev {
      display: none;
    }

    .toyzaar-hero .swiper-pagination {
      bottom: 12px !important;
    }

    .toyzaar-hero .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
    }

    .toyzaar-hero .swiper-pagination-bullet-active {
      width: 24px;
    }
  }

  /* Reduce Motion */

  @media (prefers-reduced-motion: reduce) {

    .toyzaar-hero__desktop img,
    .toyzaar-hero__mobile img {
      transition: none;
    }

    .toyzaar-hero .swiper-button-next,
    .toyzaar-hero .swiper-button-prev {
      transition: none;
    }
  }
/* END_SECTION:toyzaar-hero */
