.bellstore-home-hero {
  position: relative;
  isolation: isolate;
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: var(--hero-desktop-ratio, 14 / 5);
  box-sizing: border-box;
  margin: 0 0 22px;
  padding: 2px;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 18px 46px rgba(52, 84, 122, 0.13),
    0 3px 12px rgba(45, 62, 85, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateZ(0);
}

.bellstore-home-hero::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: -130%;
  background:
    conic-gradient(
      from 30deg,
      rgba(255, 255, 255, 0.08) 0deg,
      rgba(84, 214, 255, 0.82) 48deg,
      rgba(109, 131, 255, 0.68) 104deg,
      rgba(216, 139, 255, 0.74) 164deg,
      rgba(255, 255, 255, 0.12) 220deg,
      rgba(105, 229, 210, 0.78) 292deg,
      rgba(255, 255, 255, 0.08) 360deg
    );
  animation: bellstore-hero-frame-spin 11s linear infinite;
}

.bellstore-home-hero::after {
  content: '';
  position: absolute;
  z-index: 2;
  inset: 2px;
  border-radius: 23px;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18), transparent 24% 70%, rgba(255, 255, 255, 0.2)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 35%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.36),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18);
}

.bellstore-home-hero__link {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 23px;
  background: rgba(245, 248, 252, 0.72);
  -webkit-tap-highlight-color: transparent;
}

.bellstore-home-hero__picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.bellstore-home-hero__backdrop {
  position: absolute;
  z-index: 0;
  inset: -18px;
  display: block;
  width: calc(100% + 36px);
  height: calc(100% + 36px);
  object-fit: cover;
  opacity: 0.32;
  filter: blur(18px) saturate(1.12);
  transform: scale(1.04);
  pointer-events: none;
}

.bellstore-home-hero__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .bellstore-home-hero__link:hover .bellstore-home-hero__image {
    transform: scale(1.012);
  }
}

.bellstore-home-hero__link:focus-visible {
  outline: 3px solid rgba(0, 122, 255, 0.72);
  outline-offset: -5px;
}

@keyframes bellstore-hero-frame-spin {
  to {
    transform: rotate(1turn);
  }
}

@media (max-width: 720px) {
  .bellstore-home-hero {
    aspect-ratio: 16 / 9;
    margin-bottom: 16px;
    border-radius: 19px;
    box-shadow:
      0 10px 28px rgba(52, 84, 122, 0.12),
      0 2px 8px rgba(45, 62, 85, 0.07);
  }

  .bellstore-home-hero::after,
  .bellstore-home-hero__link {
    border-radius: 16px;
  }

  .bellstore-home-hero__backdrop {
    opacity: 0.68;
  }

  .bellstore-home-hero__image {
    object-fit: contain;
  }

  .bellstore-home-hero.has-mobile-image {
    aspect-ratio: var(--hero-mobile-ratio, 4 / 5);
    max-height: min(76svh, 620px);
  }

  .bellstore-home-hero.has-mobile-image .bellstore-home-hero__backdrop {
    opacity: 0.32;
  }

  .bellstore-home-hero.has-mobile-image .bellstore-home-hero__image {
    object-fit: contain;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bellstore-home-hero::before {
    animation: none;
  }

  .bellstore-home-hero__image {
    transition: none;
  }
}
