/* ============================================================
   Great Delight Campaign
   ============================================================ */


html, body {
  scroll-behavior: smooth;
}

/* ---- Hero ---- */
.great-delight-hero {
	position: relative;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	min-height: 90vh;
}

/* Bottom-to-top gradient: opaque purple-blue → transparent */
.great-delight-hero__gradient {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	background: linear-gradient(to top, rgba(60, 20, 100, 0.70) 0%, rgba(40, 30, 80, 0.35) 40%, transparent 75%);
}

.great-delight-hero__inner {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 90vh;
  padding-top: 100px;
  padding-bottom: 20px;
}

.great-delight-hero__title-wrap {
	width: 100%;
	display: flex;
	justify-content: center;
	max-width: 55vw;
	margin: 0 auto 2vw;
}

.great-delight-hero__title-img {
	width: 100%;
	height: auto;
	max-width: 800px;
	filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.45));
}

.great-delight-hero__cta {
	display: inline-flex;
	align-items: center;
	text-transform: uppercase;
	font-size: clamp(14px, 1.2vw, 18px);
	padding: 0.8rem 1.5rem;
	background-color: #38a9ce;
	color: white;
	transition: background-color 0.2s ease;
  margin-bottom: 100px;
  font-weight: 500;
}

.great-delight-hero__cta:hover {
	background-color: #3886a3;
}

.great-delight-hero svg {
	width: clamp(12rem, 20vw, 20rem);
	height: 4rem;
}

.great-delight-hero svg path {
	fill: #f4a809;
}

@media (max-width: 1024px) {
	.great-delight-hero__title-wrap {
		max-width: 70vw;
	}
}

@media (max-width: 767px) {
	.great-delight-hero {
	  	min-height: 60vh;
	}
	.great-delight-hero__inner {
	  	min-height: 60vh;
	  	padding-bottom: 10vw;
	}
	.great-delight-hero__title-wrap {
	  	max-width: 88vw;
	}
	.great-delight-hero__cta {
		margin-bottom: 8vw;
	}
}

@media (max-width: 480px) {
	.great-delight-hero__cta {
		font-size: 13px;
		padding: 0.7rem 1.2rem;
	}
}

/* ---- Intro ---- */
.great-delight-intro {
	position: relative;
	text-align: center;
	overflow: hidden;
	background-color: #ece4f1;
	padding: clamp(60px, 18vw, 290px) 4vw;
}

.intro-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	will-change: transform;
}

.intro-bg img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.great-delight-intro__heading {
	font-weight: 700;
	text-transform: uppercase;
	font-size: clamp(2rem, 4vw, 3.5rem);
	color: #ec7cb1;
	margin-bottom: 1rem;
}

.great-delight-intro__text {
	margin: 0 auto;
	max-width: 1200px;
	color: #4d4d4d;
}

.great-delight-intro__text p {
	font-size: clamp(1.1rem, 2vw, 1.75rem);
}

@media (max-width: 767px) {
	.great-delight-intro {
	  	padding: 10vw 6vw;
	}
}

/* ---- Drop Stories ---- */
.great-delight-drops {
  width: 100%;
  overflow-x: clip;
  padding: clamp(80px, 12vw, 200px) 0;
  background: linear-gradient(to top right, #b7a7d1 0%, #f065a4 50%, #b7a7d1 100%);
}

.great-delight-drops .container-width {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 9vw, 145px);
  max-width: calc(1700px + 8vw);
  margin: 0 auto;
  padding: 0 4vw;
}

.great-delight-drop {
  display: flex;
  justify-content: space-between;
  gap: 0 120px;
  width: 100%;
  min-height: 360px;
}

/* Even: image on left */
.great-delight-drop--img-left {
  	flex-direction: row;
}

/* Odd: image on right */
.great-delight-drop--img-right {
  	flex-direction: row-reverse;
}

.great-delight-drop__image.js-watch-drop {
  cursor: pointer;
}

/* Play button overlay (when video is available, not coming soon) */
.great-delight-drop__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background-color: white;
  opacity: 0.75;
  color: #fff;
  transition: background-color 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.great-delight-drop__image.js-watch-drop:hover .great-delight-drop__play {
  opacity: 1;
}

.great-delight-drop__play svg {
  width: 1.75rem;
  height: 1.75rem;
  margin-left: 0.2rem;
}

/* Inline video container (hidden until playing) */
.great-delight-drop__video-inline {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: none;
  background: #000;
}

.great-delight-drop__image.is-playing .great-delight-drop__image img,
.great-delight-drop__image.is-playing .great-delight-drop__play {
  opacity: 0;
  pointer-events: none;
}

.great-delight-drop__image.is-playing .great-delight-drop__video-inline {
  display: block;
  z-index: 3;
}

.great-delight-drop__video-iframe-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.great-delight-drop__video-iframe-wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.great-delight-drop__image {
  position: relative;
  flex-shrink: 0;
  width: 50%;
  height: clamp(260px, 30vw, 478px);
}

.great-delight-drop__image-bg {
  position: absolute;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;

  height: clamp(300px, 38vw, 545px);
  width: clamp(300px, 38vw, 545px);
  top: -40%;
  right: -25%;
  rotate: 12deg;
}

.great-delight-drop:nth-child(3n) .great-delight-drop__image-bg {
  rotate: -12deg;
  height: 200%;
  width: 70%;
  top: -60%;
  right: -20%;
}

.great-delight-drop:nth-child(4n) .great-delight-drop__image-bg {
  rotate: 6deg;
  height: clamp(600px, 90vw, 1377px);
  width: clamp(360px, 50vw, 790px);
  top: -90%;
}

.great-delight-drop__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 3rd and 4th drops: black and white imagery per design */
.great-delight-drop.great-delight-drop--coming-soon .great-delight-drop__image img {
  filter: grayscale(100%);
}

.great-delight-drop__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 42%;
  padding: 4vw 3.5vw;
}

.great-delight-drop:not(.great-delight-drop--img-right) .great-delight-drop__content {
  padding-left: 0;
}

.great-delight-drop__text {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.25em;
  max-width: 600px;
}

.great-delight-drop__text p {
  font-size: 24px;
  margin-bottom: 0.75em;
  line-height: 1.3;
  color: #fff;
}

.great-delight-drop__btn {
	display: flex;
	align-items: center;
  width: fit-content;
  max-width: 315px;
	text-transform: uppercase;
  text-align: center;
	font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1;
	padding: 0.8rem 1.5rem;
	background-color: #38a9ce;
	color: white;
	transition: background-color 0.2s ease;
	border: none;
	cursor: pointer;
  font-weight: 500;
}

/* WATCH THE DROP: light blue pill (matches hero CTA) */
.great-delight-drop__btn:not(.great-delight-drop__btn--disabled) {
  background-color: #38a9ce;
}

.great-delight-drop__btn:not(.great-delight-drop__btn--disabled):hover {
  background-color: #38bdf8;
}

/* NEW DROP COMING SOON: dark grey, white text */
.great-delight-drop__btn--disabled {
  cursor: not-allowed;
  background-color: #8b8b8b;
  color: #fff;
  padding: 0.5rem 2.5rem;
}

@media (max-width: 1024px) {
  .great-delight-drop__image {
    width: 48%;
  }
  .great-delight-drop__content {
    width: 46%;
    padding: 3vw 0;
  }
  .great-delight-drops:nth-child(even) .great-delight-drop__content {
    padding-left: 3vw;
  }
  .great-delight-drop__text {
    font-size: clamp(0.85rem, 1.4vw, 1rem);
  }
}

@media (max-width: 767px) {
  .great-delight-drop,
  .great-delight-drop--img-left,
  .great-delight-drop--img-right {
    flex-direction: column;
    justify-content: start;
  }
  .great-delight-drops {
    padding-bottom: 30px;
  }
  
  .great-delight-drop__image {
    width: 100%;
    height: clamp(200px, 56vw, 320px);
  }
  .great-delight-drop__image-bg {
    height: clamp(150px, 40vw, 400px);
    width: clamp(260px, 40vw, 400px);
  }
  .great-delight-drop:nth-child(3n) .great-delight-drop__image-bg {
    height: clamp(150px, 50vw, 400px);
    width: clamp(300px, 40vw, 400px);
    top: -50%;
  }

  .great-delight-drop:nth-child(4n) .great-delight-drop__image-bg {
    height: clamp(150px, 50vw, 400px);
    width: clamp(300px, 40vw, 400px);
    top: -50%;
  }

  .great-delight-drop__content {
    width: 100%;
    padding: 7vw 0;
  }
  .great-delight-drops:nth-child(even) .great-delight-drop__content {
    padding-left: 0;
  }
  .great-delight-drop__text {
    max-width: 100%;
    text-align: center;
  }
  .great-delight-drop__text p {
    font-size: 1.2rem;
  }
  .great-delight-drop__btn {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .great-delight-drop__image {
    height: 56vw;
  }
}

/* ---- Product Showcase ---- */
.great-delight-product {
  width: 100%;
  padding: 4vw 3vw;
}

.great-delight-product .container-width {
  max-width: 1200px;
}

.great-delight-product .pro-heading {
  color: #ec7cb1;
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.great-delight-product .pro-flaver {
  font-size: clamp(1.1rem, 1.75vw, 1.75rem);
  font-weight: 700;
  font-family: Omnes;
}

@media (max-width: 767px) {
  .great-delight-product {
    padding: 8vw 6vw;
  }
}

/* ---- Contest ---- */
.great-delight-contest {
  position: relative;
  width: 100%;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(to top right, #b7a7d1 0%, #f065a4 50%, #b7a7d1 100%);
  padding: 5vw 4vw;
}

.great-delight-contest__overlay {
  position: relative;
  z-index: 10;
}

/* Top: image left + heading/text right */
.great-delight-contest__top {
  display: flex;
  align-items: center;
  gap: 3vw 0;
  margin-bottom: 4vw;
}

.great-delight-contest__img-col {
  width: 50%;
  max-width: 900px;
  margin-right: -6%;
}

.great-delight-contest__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.great-delight-contest__content-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.contest-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  will-change: transform;
  pointer-events: none;
}

.contest-bg img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.great-delight-contest__heading-img {
  width: 110%;
  margin-bottom: -9%;
  height: auto;
  max-width: 1050px;
  display: block;
  filter:
    drop-shadow(0 20px 8px #e080ac)
    drop-shadow(0 40px 32px rgba(235, 181, 209, 0.25));
}
.great-delight-contest__text{
  position: relative;
  z-index: 10;
}
.great-delight-contest__text p {
  text-align: center;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Bottom: win image + actions + fine print — all centred */
.great-delight-contest__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 3rem;
}

.great-delight-contest__win-img-wrap {
  width: 100%;
  max-width: 1120px;
  margin-bottom: 1.5rem;
}

.great-delight-contest__win-img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s ease;
}


.great-delight-contest__win-img-wrap a {
  display: block;
}

.great-delight-contest__win-img-wrap a:hover .great-delight-contest__win-img {
  opacity: 0.9;
}

.great-delight-contest__fine-print {
  max-width: 1120px;
  margin-top: 2rem;
}

.great-delight-contest__fine-print p {
  font-size: 0.75rem;
  color: white;
  line-height: 1.1;
}

.great-delight-contest__fine-print a{
  color: white;
}

@media (max-width: 1024px) {
  .great-delight-contest__img-col {
    width: 55%;
    margin-right: -4%;
  }
  .great-delight-contest__content-col {
    width: 45%;
  }
}

@media (max-width: 767px) {
  .great-delight-contest {
    padding: 10vw 6vw;
  }
  .great-delight-contest__top {
    flex-direction: column;
    margin-bottom: 8vw;
  }
  .great-delight-contest__img-col {
    flex: none;
    max-width: 80%;
    width: 80%;
    margin-right: 0;
  }
  .great-delight-contest__content-col {
    width: 100%;
    text-align: center;
  }
  .great-delight-contest__win-img-wrap {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .great-delight-contest__img-col {
    max-width: 95%;
    width: 95%;
  }
  .great-delight-contest__text p {
    font-size: 1.1rem;
  }
}

/* ---- Video Modal ---- */
.great-delight-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.great-delight-modal.great-delight-modal--closed {
  display: none;
}

.great-delight-modal__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.82);
}

.great-delight-modal__content {
  position: relative;
  width: 100%;
  background-color: #000;
  border-radius: 0.25rem;
  overflow: hidden;
  max-width: 900px;
}

.great-delight-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  width: 2.2rem;
  height: 2.2rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  border: none;
  transition: background-color 0.2s ease;
}

.great-delight-modal__close:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.great-delight-modal__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.great-delight-modal__video-wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .detail-img {
    margin-top: -8%;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
  }
  .great-delight-product .detail-img .product_img{
    width: 115%;
    max-width: 115%;
    object-fit: contain;
  }
  .great-delight-contest__fine-print {
    font-size: 12px;
  }
}