@charset "UTF-8";
/* Iceland Project 
by John Wong Cheuk Bun, 2026
(john.wong@uniqlo.eu)
UNIQLO EUROPE LIMITED
*/
#hero {
  position: relative;
}

@media (min-width: 769px) {
  #hero {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
#hero img {
  width: 100%;
}

@media (min-width: 769px) {
  #hero img {
    height: max(700px, 40vh);
  }
}
@media (max-width: 768px) {
  #hero img {
    height: max(500px, 40vh);
  }
}
#hero img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

#hero .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-shadow: 1px 1px 3px rgb(0, 0, 0);
  text-align: center;
  z-index: 10;
}

/* Photo Grid Collages */
.three-columns {
  display: flex;
}

@media (min-width: 769px) {
  .three-columns {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .three-columns {
    flex-direction: column;
    gap: 1em;
  }
}
.two-columns {
  display: flex;
  flex-flow: row nowrap;
  gap: 1em;
}

@media (max-width: 768px) {
  .two-columns {
    flex-flow: column nowrap;
  }
}
@media (min-width: 768px) {
  .hero-right {
    flex-direction: row-reverse;
  }
}
.left {
  flex: 1;
  min-width: 0;
}

@media (max-width: 768px) {
  .left img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    height: max(50vh, 50%);
  }
}
@media (min-width: 769px) {
  .left img {
    aspect-ratio: 2/3;
  }
}
.right {
  flex: 1;
  min-width: 0;
}

@media (min-width: 769px) {
  #layering-guide-1 .right,
  #layering-guide-2 .right {
    display: flex;
    flex-direction: column;
    aspect-ratio: 2/3;
  }
  #layering-guide-1 .right3row,
  #layering-guide-2 .right3row {
    min-height: 0;
    overflow: hidden;
    /* .fr-bff-products {
      	transform: scale(0.85); // Shrink content to 85%
      	transform-origin: top left;
      	width: 117%; // Compensate for the scale (100/0.85 ≈ 117%)
      } */
  }
}
.square-collage {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  aspect-ratio: 1;
}

.square-collage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ============================================
   SHOPPABLE IMAGE SYSTEM - CSS-only Popups
   ============================================
*/
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden; /* Prevents horizontal scroll on mobile */
  }
}
/* The image wrapper
   ========================
   position: relative creates a "positioning context"
   This means any child with position: absolute will be positioned
   relative to THIS element, not the whole page
*/
.shoppable-image {
  position: relative;
  overflow: visible; /* Allow popup to overflow outside the image bounds */
  /* Make the image fill the container */
}

.shoppable-image a {
  display: block; /* Remove inline spacing issues */
}

.shoppable-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* The clickable dot button
   ================================
    <button> instead of <div> for accessibility:
*/
.shoppable-dot {
  /* Reset default button styles */
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: absolute;
  transform: translate(-50%, -50%);
  /* z-index puts this on top of other elements */
  z-index: 10;
}

/* The visual dot indicator
   ================================
   This is the actual circle you see
   Using a separate element allows more styling flexibility
*/
.dot-indicator {
  display: block;
  width: 24px;
  height: 24px;
  /* The dot appearance */
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
  border: 2px solid rgba(255, 255, 255, 0.8); /* White border */
  border-radius: 50%; /* Makes it a circle (50% of width/height) */
  /* Add a subtle shadow for depth */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  /* Smooth transition for hover effect on the dot itself */
  transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Optional: Make the dot grow slightly on hover */
.shoppable-dot:hover .dot-indicator,
.shoppable-dot:focus .dot-indicator {
  transform: scale(1.2); /* Grow to 120% size */
  background-color: rgba(0, 0, 0, 0.9); /* Darker on hover */
}

/* The popup container
   ===========================
   HIDDEN STATE (default):
   - opacity: 0 = invisible
   - visibility: hidden = can't be clicked/focused
   - BOTH: invisible, not clickable, AND can animate smoothly
*/
.shoppable-popup {
  /* Positioning: appear below and to the right of the dot */
  position: absolute;
  top: 100%; /* Start at the bottom of the dot */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Adjust to truly center */
  /* Spacing */
  margin-top: 8px; /* Gap between dot and popup */
  padding: 12px;
  /* Appearance */
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  /* Size constraints */
  min-width: 200px;
  max-width: 280px;
  /* Mobile: constrain width to fit viewport */
}

@media (max-width: 768px) {
  .shoppable-popup {
    min-width: 180px;
    max-width: calc(100vw - 32px);
  }
}
.shoppable-popup {
  /* THE HIDDEN STATE */
  opacity: 0;
  visibility: hidden;
  /* THE FADE ANIMATION
      transition: [property] [duration] [easing]
      - opacity 0.2s = fade takes 0.2 seconds
      - ease = smooth acceleration/deceleration curve
   */
  transition: opacity 0.2s ease, visibility 0.2s ease;
  /* Ensure popup is above other content */
  z-index: 100 !important;
}

/* Show popup on hover OR focus*/
.shoppable-dot:hover,
.shoppable-dot:focus,
.shoppable-dot:focus-within {
  /* Raise the entire dot above all other dots so popup isn't overlapped */
  z-index: 1000;
}

.shoppable-dot:hover .shoppable-popup,
.shoppable-dot:focus .shoppable-popup,
.shoppable-dot:focus-within .shoppable-popup {
  opacity: 1; /* Make visible */
  visibility: visible; /* Make interactive */
}

/* Popup arrow (optional visual touch)
   ===========================================
   Creates a small triangle pointing up toward the dot
   using CSS borders trick
*/
.shoppable-popup::before {
  content: ""; /* Required for pseudo-elements */
  position: absolute;
  bottom: 100%; /* Position above the popup */
  /* Use CSS variable for arrow position, fallback to 50% (centered) */
  left: var(--arrow-left, 50%);
  transform: translateX(-50%);
  /* Smooth transition when arrow moves */
  transition: left 0.15s ease;
  border: 8px solid transparent;
  border-bottom-color: #ffffff; /* Only bottom border is visible = points up */
}

/* Remove focus outline (we're providing our own visual feedback)But keep it for keyboard users who need it
*/
.shoppable-dot:focus {
  outline: none;
}

.shoppable-dot:focus-visible {
  /* Only show outline when using keyboard navigation */
  outline: 2px solid #007bff;
  outline-offset: 2px;
  border-radius: 50%;
}

/* Social Media Tags */
.hero-image-container {
  position: relative;
}

.social-media-tag {
  display: inline-block;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}

.social-media-tag p,
.social-media-tag a {
  font-size: 0.75rem;
  color: #eeeeee;
  text-shadow: 1px 1px 3px rgb(0, 0, 0);
}

.social-media-tag-top-right {
  display: inline-block;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.social-media-tag-top-right p,
.social-media-tag-top-right a {
  font-size: 0.75rem;
  color: #eeeeee;
  text-shadow: 1px 1px 3px rgb(0, 0, 0);
}

/* BFF Product Card Fix - Colour chips overlapping gender text */
.fr-bff-product_colorChipsAndFavorite {
  margin-bottom: 8px;
}

.fr-bff-product_content {
  margin-top: 4px;
}

/* Utilities */
.mt1 {
  margin-top: 1rem;
}

.mt2 {
  margin-top: 2rem;
}

.mb1 {
  margin-bottom: 1rem;
}

.mb2 {
  margin-bottom: 2rem;
}

.p1 {
  padding: 1rem;
}

.p2 {
  padding: 2rem;
}

@media (max-width: 768px) {
  .p1-m {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .p2-m {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .mt1-m {
    margin-top: 1rem;
  }
}
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}
.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}
@media (min-width: 769px) {
  .align-center-desktop {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ============================================
   CUSTOM SWIPER SLIDER STYLES
   ============================================
*/
.slides {
  position: relative;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 769px) {
  .slides {
    aspect-ratio: 2/3;
  }
}
@media (max-width: 768px) {
  .slides {
    aspect-ratio: 1/1;
    height: max(50vh, 50%);
  }
}
.slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.slides-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.slides-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.slides-pagination {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slides-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  padding: 0;
}

.slides-pagination-bullet:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.slides-pagination-bullet-active {
  background-color: #fff;
}

.slides-button-prev,
.slides-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 0%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}

.slides-button-prev:hover,
.slides-button-next:hover {
  background-color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.slides-button-prev::after,
.slides-button-next::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

@media (max-width: 768px) {
  .slides-button-prev,
  .slides-button-next {
    width: 32px;
    height: 32px;
  }
}
.slides-button-prev {
  left: 16px;
}

.slides-button-prev::after {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.slides-button-next {
  right: 16px;
}

.slides-button-next::after {
  transform: rotate(45deg);
  margin-right: 4px;
}

/* ============================================
   SS26 SUMMER PRIZE DRAW – ENTRY FORM PAGE
   Wireframe-faithful layout. Copy, links and
   images are swapped per region via JS, so each
   editable element carries a unique id.
   ============================================
*/
#prize-draw {
  margin-top: 1.5rem;
}

/* Hero image area — photo behind a liquid-glass text panel.
   To make the image taller, increase height / min-height below. */
.summer-panel_hero {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .summer-panel_hero {
    background-image: url("https://image.uniqlo.com/UQ/ST3/eu/imagesother/2026/content-pages/summer-app-weekly-raffle/LP/hero-summer-app-raffle.jpg");
  }
}
@media screen and (max-width: 768px) {
  .summer-panel_hero {
    background-image: url("https://image.uniqlo.com/UQ/ST3/eu/imagesother/2026/content-pages/summer-app-weekly-raffle/LP/mb-hero-summer-app-raffle.jpg");
  }
}
.summer-panel_hero {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  width: 100%;
  padding: 2.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 769px) {
  .summer-panel_hero {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .summer-panel_hero {
    min-height: 22rem;
  }
}
/* Liquid glass panel — frosted card over the hero photo */
.summer-panel_hero .liquidGlass-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 40rem;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.summer-panel_hero .liquidGlass-effect {
  position: absolute;
  z-index: 0;
  inset: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  filter: url(#glass-distortion);
  overflow: hidden;
  pointer-events: none;
}

.summer-panel_hero .liquidGlass-tint {
  z-index: 1;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.summer-panel_hero .liquidGlass-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.5), inset -1px -1px 1px 1px rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.summer-panel_hero .liquidGlass-text {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 2rem 2.5rem;
  text-align: center;
  color: #111111;
}

.u-visually-hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.summer-panel-grey {
  background-color: #f5f5f7;
  padding: 2.5rem 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}

.summer-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.summer-panel_heading {
  margin-bottom: 1rem;
}

.summer-panel_body {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.summer-countdown {
  background-color: #e40200;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  text-align: center;
}

.summer-countdown_label {
  font-weight: 700;
  margin: 0;
}

.summer-countdown_timer:empty {
  display: none;
}

.summer-cta-wrap {
  text-align: center;
  margin-top: 1.5rem;
}

.summer-cta {
  display: inline-block;
  min-width: 16rem;
  padding: 0.85rem 2rem;
  background-color: #e40200;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 20px;
  transition: background-color 0.2s ease;
}

.summer-cta:hover,
.summer-cta:focus {
  background-color: #c4c4c4;
}

.summer-section-heading {
  text-align: center;
}

/* Image + text rows (built on the shared .two-columns helper) */
.summer-media-row_media,
.summer-media-row_text {
  flex: 1;
  min-width: 0;
}

@media (min-width: 769px) {
  .summer-media-row {
    align-items: center;
  }
}
@media (max-width: 768px) {
  .summer-media-row {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  /* How-to-enter phone: full-bleed image, text keeps side padding */
  #how-to-enter .summer-media-row_media {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    background: none;
  }
}
.summer-media {
  width: 100%;
  background-color: #d9d9d9;
  overflow: hidden;
}

/* Floating phone — no grey box; transparent PNG shows through */
#how-to-enter .how-to-enter-float {
  width: 100%;
  background: none;
  overflow: visible;
  will-change: transform;
}

#how-to-enter .how-to-enter_img {
  display: block;
  width: 100%;
  height: auto;
  background: none;
}

@media (prefers-reduced-motion: reduce) {
  #how-to-enter .how-to-enter-float {
    will-change: auto;
  }
}
@media (min-width: 769px) {
  .summer-media {
    aspect-ratio: 1/1;
  }
}
@media (max-width: 768px) {
  .summer-media {
    aspect-ratio: 4/3;
  }
}
.prize-media-row_media {
  width: 100%;
}

.prize-media {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 769px) {
  .prize-media {
    aspect-ratio: 2/1;
  }
}
@media (max-width: 768px) {
  .prize-media {
    aspect-ratio: 4/3;
  }
}
/* The image must fill (and crop to) the .prize-media box.
   object-fit only works on the <img>, not on the wrapping <div>. */
.prize-media_img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.summer-media_img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: contain;
}

.summer-media_img:not([src]),
.summer-media_img[src=""] {
  visibility: hidden;
}

.summer-media-row_text {
  text-align: center;
}

.summer-step_heading {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.summer-terms-link {
  text-decoration: underline;
  color: inherit;
} 
.summer-step_body {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}/*# sourceMappingURL=john-ss26-summer.css.map */