/*
Airism Quiz - Special Project
by John Wong Cheuk Bun (john.wong@uniqlo.eu)
v1.0.0
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222;
}

.text-centre {
  text-align: center;
}

.mt1 {
  margin-top: 1rem;
}

.mt2 {
  margin-top: 2rem;
}

.mt3 {
  margin-top: 3rem;
}

.mt4 {
  margin-top: 4rem;
}

.mb1 {
  margin-bottom: 1rem;
}

.mb2 {
  margin-bottom: 2rem;
}

.mb3 {
  margin-bottom: 3rem;
}

.p1 {
  padding: 1rem;
}

.cta-button {
  background-color: #ac2620;
  color: #ffeffe;
  padding: 1rem 2rem;
  border-radius: 12rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 50vw;
  display: block;
  text-align: center;
}

.background-img {
  background-color: #fef8e7;
  color: #fff;
  min-height: 100vh;
  max-width: 100%;
  overflow: hidden;
  /* Lay out children in a column so the image can sit BELOW the CTA
     instead of behind the text. The pseudo-element `::after` always
     renders after all the content children (title, copy, T&C, CTA),
     so anything we put in it is guaranteed to appear after the
     button. */
  display: flex;
  flex-direction: column;
}
.background-img::after {
  content: "";
  flex: 1; /* fill whatever vertical space is left below the CTA */
  min-height: 50vh; /* guarantee enough room for the photo */
  background-image: url("https://image.uniqlo.com/UQ/ST3/eu/imagesother/2026/content-pages/linen-lisbon/Comp_page.jpg");
  /* `100% auto` keeps the image at full screen width with its
     natural aspect ratio (no shrinking, no cropping).
     `bottom center` anchors it to the bottom of the area. */
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .background-img::after {
    /* `contain` shows the whole photo without cropping the top.
       The image is scaled to fit inside the area at its natural
       aspect ratio. `bottom center` keeps it anchored to the
       bottom so any leftover space sits above the photo. */
    background-size: contain;
    min-height: 60vh;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
  }
}

/* Custom Smart Banner for Web */
.custom-smart-banner {
  display: none; /* Hidden by default, JS will show it */
  align-items: center;
  justify-content: space-between;
  background-color: #f4f4f4;
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
  position: fixed; /* Stick to top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  box-sizing: border-box;
}
.custom-smart-banner .banner-left {
  display: flex;
  align-items: center;
}
.custom-smart-banner .banner-close {
  color: #999;
  font-size: 20px;
  cursor: pointer;
  margin-right: 12px;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom-smart-banner .banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.custom-smart-banner .banner-content .banner-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: #fff;
}
.custom-smart-banner .banner-content .banner-text {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  line-height: 1.3;
}
.custom-smart-banner .banner-content .banner-text strong {
  font-size: 14px;
  color: #000;
}
.custom-smart-banner .banner-content .banner-text span {
  color: #666;
}
.custom-smart-banner .banner-btn {
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}

/* Ensure body doesn't get hidden under fixed banner */
body.has-smart-banner {
  padding-top: 57px; /* Approximate height of the banner */
}/*# sourceMappingURL=linen-quiz-john.css.map */