.hero {
  position: relative;
  margin-top: -80px;
  padding-top: 80px;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero > .slides {
  position: absolute;
  inset: 0;
}

.hero > .slides > .slide {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity .8s ease;
}

.hero > .slides > .slide.is-active { opacity: 1; }

.hero1 {
  position: relative;
  z-index: 1;
  width: min(94vw, 1600px);
  margin: 0 auto;
  padding: 0 0 2rem;
}

.hero > .arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .6);
  color: var(--colour-9);
  cursor: pointer;
  transform: translateY(-50%);
}

.hero > .arrow:hover,
.hero > .arrow:focus-visible {
  background: rgba(255, 255, 255, .9);
}

.hero > .arrow:focus-visible {
  outline: 2px solid var(--colour-2);
  outline-offset: 2px;
}

.hero > .arrow > svg {
  width: 1.5rem;
  height: 1.5rem;
}
.hero > .arrow.prev { left: 1rem; }
.hero > .arrow.next { right: 1rem; }

.hero-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 0;
  background: white;
}

.hero-dots > .dot {
  width: .5rem;
  height: .5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--colour-6);
  cursor: pointer;
}

.hero-dots > .dot.is-active { background: var(--colour-2); }

.hero-dots > .dot:focus-visible {
  outline: 2px solid var(--colour-2);
  outline-offset: 2px;
}

.hero1 .text { max-width: min(100%, 44rem); }

.hero1 .text > .eyebrow {
  margin: 0;
  color: white;
  font-size: 1rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .35);
}

.hero1 .text > h1 {
  margin: .25rem 0;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.hero1 .text > .standfirst {
  margin: .5rem 0 0;
  color: white;
  font-size: 1.125rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .35);
}

/* --- Product card folds --- */
.second_fold,
.sixth_fold { padding: 60px 0; }

.fold-more {
  margin: 2.5rem 0 0;
  text-align: center;
}
.fold-more > a {
  color: var(--colour-2);
  font-weight: 600;
}

/* --- Image tiles (collections + cartoon themes) --- */
.third_fold,
.fifth_fold { padding: 60px 0; }

.tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

.tiles > .tile {
  position: relative;
  display: block;
  overflow: hidden;
}

.tiles > .tile > img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.tiles > .tile > .tile-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  border-radius: 999px;
  background: white;
  padding: .75rem 1.75rem;
  color: var(--colour-9);
  font-size: 1.0625rem;
  font-weight: 600;
}

.tiles.dark-label > .tile > .tile-label { color: var(--colour-10); }

/* --- Search band --- */
.fourth_fold {
  background: var(--colour-4);
  padding: 60px 0;
}
.fourth_fold > .search-form { background: var(--colour-8); }

/* --- Subscribe band --- */
.seventh_fold {
  background: var(--colour-4);
  padding: 60px 0;
}

.subscribe-form {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: min(90vw, 560px);
  margin: auto;
  background: var(--background-colour);
  border: 1px solid var(--colour-2);
  border-radius: 999px;
  padding: .375rem .375rem .375rem 1.5rem;
}
.subscribe-form > input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--colour-10);
}
.subscribe-form > button {
  border: none;
  border-radius: 999px;
  background: var(--colour-2);
  padding: .75rem 1.5rem;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
}

/* --- Responsive --- */
@media (prefers-reduced-motion: reduce) {
  .hero > .slides > .slide { transition: none; }
}

@media screen and (min-width: 425px) {}
@media screen and (min-width: 600px) {}
@media screen and (min-width: 768px) {
  .hero { min-height: 560px; }
  .hero > .arrow {
    width: 3.5rem;
    height: 3.5rem;
  }
  .hero > .arrow.prev { left: 1.5rem; }
  .hero > .arrow.next { right: 1.5rem; }
  .hero-dots { padding: 1.5rem 0; }
  .hero1 .text > .eyebrow,
  .hero1 .text > .standfirst { font-size: 1.875rem; }
  .hero1 { padding-bottom: 3rem; }
  .tiles > .tile > .tile-label {
    left: 2rem;
    bottom: 2rem;
    padding: .875rem 2.25rem;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .hero { min-height: 680px; }
  .hero > .arrow {
    width: 4rem;
    height: 4rem;
  }
  .hero > .arrow > svg {
    width: 2rem;
    height: 2rem;
  }
  .hero > .arrow.prev { left: 2rem; }
  .hero > .arrow.next { right: 2rem; }
  .hero1 { padding-bottom: 3rem; }
  .second_fold, .sixth_fold { padding: 100px 0; }
  .third_fold, .fifth_fold { padding: 100px 0; }
  .fourth_fold, .seventh_fold { padding: 100px 0; }
}
@media screen and (min-width: 1440px) {}
@media screen and (min-width: 2000px) {}
