/** Shopify CDN: Minification failed

Line 106:0 Unexpected "}"

**/
.collection-hero__inner {
  display: flex;
  flex-direction: column;
  position: relative;
}

.collection-hero--with-image .collection-hero__inner {
  margin-bottom: 0;
  padding-bottom: 2rem;
}

@media screen and (min-width: 750px) {
  .collection-hero.collection-hero--with-image {
    padding: calc(4rem + var(--page-width-margin)) 0;
    overflow: hidden;
  }

  .collection-hero--with-image .collection-hero__inner {
    padding-bottom: 0;
    flex-direction: row;
    align-items: center;
  }
}

.collection-hero__text-wrapper {
  flex-basis: 100%;
  position: absolute;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.collection-hero__title {
  margin: 2.5rem 0;
  font-size: 2.5rem;
  font-weight: bold;
}

.collection-hero__title + .collection-hero__description {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  line-height: 1.4;
}

@media screen and (min-width: 750px) {
  .collection-hero__title + .collection-hero__description {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .collection-hero__description {
    max-width: 66.67%;
    margin: 0 auto;
  }

  .collection-hero--with-image .collection-hero__description {
    max-width: 100%;
  }
}
.collection-hero__image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  height: auto;
}

.collection-hero__image-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (min-width: 750px) {
  .collection-hero__image-container {
    height: 60vh; /* Taller on tablets/desktops */
  }
}

@media screen and (min-width: 1200px) {
  .collection-hero__image-container {
    height: 75vh; /* Even taller on very large screens */
  }
}


  .collection-hero--with-image .collection-hero__text-wrapper {
    padding: 4rem 2rem;
  }
}

/* NEW: Background image for Disney Lorcana collection only */
.collection--disney-lorcana-collection {
  background-image: url('/files/red-falcon-tcg-disney-lorcana-collection-banner.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

