/* =========================
   Reset & Base
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

:root {
  --header-offset: 140px;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  /* background: #fffdf8; */
  color: #262626;
  overflow-x: hidden;
}

/* =========================
   Fonts
========================= */
@font-face {
  font-family: Artois;
  font-style: normal;
  font-weight: 400;
  src: url("/themes/stella/font/ArtoisSebastian-Sans.woff2") format("woff2"),
    url("/themes/stella/font/ArtoisSebastian-Sans.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: ArtoisIsabella-Serif;
  font-style: normal;
  font-weight: 400;
  src: url("/themes/stella/font/ArtoisIsabella-Serif.woff2") format("woff2"),
    url("/themes/stella/font/ArtoisIsabella-Serif.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Cafe24Danjunghae";
  font-style: normal;
  font-weight: 400;
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.1/Cafe24Danjunghae.woff")
    format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans CJK KR";
  font-style: normal;
  font-weight: 400;
  src: url("https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff2")
      format("woff2"),
    url("https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff")
      format("woff");
  font-display: swap;
}

.product-page {
  min-height: 100vh;
  background: #f6f3ef;
  padding-top: calc(var(--header-offset, 140px));
}

.product-intro {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  background: #fff;
  align-items: center;
}

.product-intro__heading {
  padding: 120px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.product-intro__title {
  color: #333;
  font: 400 58px ArtoisIsabella-Serif, serif;
  margin: 0;
}

.product-intro__subtitle {
  color: #333;
  font: 400 30px "Noto Sans KR", sans-serif;
}

.product-intro__question {
  color: #333;
  font-family: "Noto Sans CJK KR";
  font-size: 64px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -1.28px;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin: 60px 0;
}

.product-intro__question-label {
  color: #ce112d;
  font: 400 90px ArtoisIsabella-Serif, serif;
  line-height: 99px;
}

.product-panels-wrapper {
  width: 100%;
}

.product-intro__panels {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.product-perfect-serve__dec {
  color: #333;
  font-family: "Noto Sans CJK KR";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  text-align: left;
  line-height: 140%;
  letter-spacing: -0.48px;
}

/* =========================
   Panels
========================= */
.mo-br {
  display: none !important;
}

.product-panel {
  position: relative;
  display: flex;
  flex: 1 1 50%;
  width: auto;
  min-width: 320px;
  min-height: 1054px;
  padding: clamp(3rem, 5vw, 5rem);
  align-items: flex-start;
  overflow: hidden;
  contain: layout paint;
  transition: flex-grow 1.45s ease, box-shadow 0.75s ease, transform 0.9s ease,
    opacity 1.1s ease;
}

.product-panel--draft {
  background: linear-gradient(
    162deg,
    #dd4340 12.49%,
    #c11b17 68.31%,
    #b00f0b 90.41%
  );
  /* border-radius: 40px 0 0 40px; */
}

.product-panel--home {
  background: linear-gradient(
    164deg,
    #ebe1d6 -4.22%,
    #e8d4be 43.86%,
    #ecd4b3 85.89%
  );
  /* border-radius: 0 40px 40px 0; */
}

.product-panel__body {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product-panel__eyebrow {
  color: #fff;
  font-family: Artois, sans-serif;
  font-size: 68px;
  line-height: 110%;
  letter-spacing: clamp(-0.5px, -0.1vw, -1.6px);
  text-align: left;
}

.product-panel__title {
  color: #fff;
  font: 400 160px ArtoisIsabella-Serif, serif;
  line-height: 87%;
  letter-spacing: clamp(-1px, -0.2vw, -4.8px);
  text-align: left;
}

.product-panel__figure {
  position: absolute;
  right: 110px;
  bottom: -45px;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: transform 0.95s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s ease;
}

.product-panel__image {
  width: clamp(140px, 18vw, 184px);
  max-width: 184px;
  aspect-ratio: 184/479;
  transition: transform 0.95s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s ease;
}

.product-panel__body--home {
  align-items: flex-end;
  text-align: right;
}

.product-panel__body--home .product-panel__eyebrow,
.product-panel__body--home .product-panel__title {
  color: #bc1714;
  text-align: right;
}

.product-panel__figure--home {
  left: 110px;
  right: auto;
  justify-content: flex-start;
}

.product-panel--home .product-panel__cta {
  right: 40px !important;
  left: auto !important;
}

.product-panel__image--home {
  width: clamp(140px, 18vw, 210px);
  max-width: 210px;
  aspect-ratio: 210/495;
}

/* Panel round CTA */
.product-panel__cta {
  display: flex;
  width: 100px;
  height: 100px;
  padding: 29px;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 110px;
  bottom: 80px;
  border-radius: 80px;
  background: rgba(255, 249, 242, 0.6);
  opacity: 1;
  transition: transform 0.45s ease, opacity 0.38s ease, background 0.3s ease,
    color 0.3s ease;
}

.product-panel__cta:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.5);
  color: #c11b17;
}

.product-panel__body,
.product-panel__figure {
  transition: transform 0.45s ease, opacity 0.38s ease;
}

.product-panel.is-replaced {
  overflow: hidden;
}

.product-panel.is-active {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  z-index: 5;
}

.product-panel.is-active .product-panel__image {
  /* transform: translateY(-12px) scale(1.05); */
}

.product-panel.is-active .product-panel__body {
  /* transform: translateY(-8px); */
}

.product-panel.is-active .product-panel__figure {
  /* transform: translateY(-18px); */
}

.product-panel.is-replaced .product-panel__body,
.product-panel.is-replaced .product-panel__figure,
.product-panel.is-replaced .product-panel__cta {
  opacity: 0;
  /* transform: translateY(18px); */
  pointer-events: none;
}

/* Hover expand(Desktop) */
.product-intro__panels .product-panel {
  flex: 1 1 0%;
  min-width: 0;
}

@media (hover: hover) and (pointer: fine) and (min-width: 1025px) {
  .product-intro__panels:hover .product-panel,
  .product-intro__panels:focus-within .product-panel {
    flex-grow: 1;
  }

  .product-intro__panels .product-panel.is-active {
    flex-grow: 9;
    opacity: 1;
  }

  .product-intro__panels:hover .product-panel:not(.is-active),
  .product-intro__panels:focus-within .product-panel:not(.is-active) {
    opacity: 0.58;
  }

  .product-intro__panels .product-panel.is-active .product-panel__cta {
    transform: scale(1.02);
    opacity: 0;
  }
}

/* =========================
   Sections (overlay targets)
========================= */
.product-sections > section {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.product-perfect-serve {
  position: relative;
  overflow: hidden;
}

.product-perfect-serve .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.product-perfect-serve > section {
  position: relative;
  z-index: 1;
}

.product-perfect-serve__container {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 255px 150px 100px;
  background: linear-gradient(
    to top,
    #fff 0%,
    rgba(255, 255, 255, 0.85) 20%,
    rgba(255, 255, 255, 0) 50%
  );
  gap: clamp(3rem, 6vw, 7rem);
}

.product-perfect-serve__copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  will-change: opacity, transform;
  min-width: 1000px;
  backface-visibility: hidden;
  contain: content;
}

.product-perfect-serve__title {
  color: #2b2b2b;
  font: 400 86px ArtoisIsabella-Serif, serif;
  line-height: 1.05;
  letter-spacing: -1.2px;
  min-width: 1000px;
  text-align: left;
}

.product-perfect-serve__accent {
  display: inline-block;
  color: #c11b17;
  font-size: 118px;
  line-height: 85%;
}

/* =========================
   Gallery (mask hover)
========================= */
.product-gallery {
  width: 100%;
  height: 740px;
  background: url(/themes/stella/img/product/stella-artois-premium-sec02-bg.png)
      no-repeat center/cover,
    linear-gradient(164deg, #ebe1d6 -4.22%, #e8d4be 43.86%, #ecd4b3 85.89%);
  padding: 150px 150px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 80px;
}

.product-gallery__container {
  max-width: 1400px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
}

.product-gallery__stage {
  width: 439px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.product-gallery__deck {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
}

.product-gallery__stage .product-gallery__card--left {
  margin-right: 12px;
}

.product-gallery__card {
  position: relative;
  display: inline-block;
  padding-right: 12px;
}

.product-gallery__packaging {
  width: 100%;
  height: 100%;
  padding-left: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  left: 0;
  bottom: -130px;
}

.product-gallery__packaging-row {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

.product-gallery__packaging-row--tight {
  gap: 2px;
}

.product-gallery__packaging-text {
  color: #7b603b;
  font-size: 12px;
  font-family: "Noto Sans CJK KR", "Noto Sans KR", sans-serif;
  font-weight: 500;
  line-height: 16.8px;
  word-wrap: break-word;
}

.product-gallery__card img {
  display: block;
  position: relative;
  z-index: 1;
}

/* Red overlay in can/bottle silhouette (uses alpha mask from --mask-url) */
.product-gallery__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #c11b17;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  z-index: 2;
  -webkit-mask-image: var(--mask-url);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  -webkit-mask-size: contain;
  -webkit-mask-mode: alpha;
  mask-image: var(--mask-url);
  mask-repeat: no-repeat;
  mask-position: inherit;
  mask-size: contain;
  mask-mode: alpha;
  /* 일부 브라우저 */
}

/* Capacity text centered per mask */
.product-gallery__card::after {
  content: attr(data-label);
  position: absolute;
  left: 45%;
  top: var(--label-offset, 50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: Artois, sans-serif;
  font-size: 24px;
  font-style: normal;
  line-height: 100%;
  letter-spacing: -0.6px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 3;
}

.product-gallery__card:nth-child(3)::after,
.product-gallery__card:nth-child(4)::after {
  left: 50%;
}

.product-gallery__card:hover::before,
.product-gallery__card:hover::after {
  opacity: 1;
}

/* CTA / Title */
.product-gallery__cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 1000px;
  height: 100%;
  justify-content: flex-start;
  will-change: opacity, transform;
  backface-visibility: hidden;
  contain: content;
}

.product-gallery__title {
  color: #c11b17;
  font: 400 118px ArtoisIsabella-Serif, serif;
  line-height: 120%;
}

.product-gallery__cta,
.product-perfect-serve__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 340px;
  height: 72px;
  padding: 12px 43px;
  border-radius: 8px;
  border: 2px solid #c11b17;
  background: transparent;
  color: #c11b17;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.48px;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.product-gallery__cta {
  margin-top: 20px;
}

.product-gallery__cta span,
.product-perfect-serve__cta span {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 30.8px;
  color: inherit;
}

.product-perfect-serve__cta:hover,
.product-perfect-serve__cta:focus,
.product-gallery__cta:hover,
.product-gallery__cta:focus {
  background: #c11b17;
  border-radius: 8px;
  color: #fff;
}

/* =========================
   Offers
========================= */
.product-offers {
  width: 100%;
  padding: 140px 0;
  background: #f7f0e6;
  display: flex;
  justify-content: center;
  position: relative;
}

.product-offers__container {
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.product-offers__title {
  color: #c11b17;
  font: 400 58px ArtoisIsabella-Serif, serif;
}

.product-offers__grid {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}

.product-offer-card {
  width: 224px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 1s ease;
}

.product-offer-card__media {
  position: relative;
  width: 224px;
  height: 224px;
}

/* .product-offer-card__thumb {
        position: absolute;
        inset: 0;
        border-radius: 16px;
        background: #cbb9a5;
        transform: translate(11px, 11px);
        transition: transform 1s ease
    } */

.product-offer-card__image {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 18px;
  background: #fff;
  /* box-shadow: 0 18px 30px rgba(0, 0, 0, .08); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 1s ease;
}

.product-offer-card__name {
  color: #333;
  font: 500 18px "Noto Sans KR", sans-serif;
  line-height: 25.2px;
}

.product-offer-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  min-width: 41px;
  border-radius: 2px;
  background: #a39665;
  color: #fff;
  font: 600 12px "Noto Sans KR", sans-serif;
  line-height: 14.4px;
}

@media (prefers-reduced-motion: reduce) {
  .product-panel,
  .product-panel__body,
  .product-panel__figure,
  .product-panel__image,
  .product-panel__cta,
  .product-gallery__card img,
  .product-gallery__cta,
  .product-offer-card,
  .product-offer-card__image,
  .product-offer-card__thumb {
    transition: none !important;
    transform: none !important;
  }
}

/* === Figure / Image 전환 시간 1s로 통일 === */
.product-panel__figure,
.product-panel__image {
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s ease !important;
}

@media (min-width: 1025px) {
  .product-panel {
    min-height: 740px;
    padding: 80px 110px;
  }

  .product-panel__cta {
    display: none;
  }
}

/* 활성 상태/대체 상태 로직은 그대로, duration만 1s 적용됨 */
@media (hover: hover) and (pointer: fine) and (min-width: 1025px) {
  /* 컨테이너에 활성 패널이 있거나(클래스/의사 클래스) 호버가 시작되면 전부 숨김 */
  .product-intro__panels.has-active .product-panel .product-panel__figure,
  .product-intro__panels:hover .product-panel .product-panel__figure,
  .product-intro__panels:focus-within .product-panel .product-panel__figure {
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
  }

  /* 활성 패널에서는 figure 노출 */
  .product-intro__panels .product-panel.is-active .product-panel__figure {
    opacity: 1;
    transform: translateY(-8px);
    pointer-events: auto;
  }

  /* overlay로 대체된 상태는 완전 숨김 유지 */
  .product-panel.is-replaced .product-panel__figure {
    opacity: 0 !important;
    transform: translateY(18px) !important;
    pointer-events: none !important;
  }
}

/* =========================
   Responsive (<=1024px | Tablet & below)
========================= */
@media (max-width: 1024px) {
  .product-offers__container {
    width: 100%;
  }

  :root {
    --safe-bot: env(safe-area-inset-bottom, 0px);
  }

  .mo-br {
    display: block !important;
  }

  .ht-desc {
    font-size: 1rem;
  }

  .ht-tit {
    font-size: 4rem;
  }

  .ct_title,
  .ht_title {
    height: 30vh;
  }

  .ct_title::before,
  .ht_title::before {
    border-width: 0 20vh 30vh 0;
  }

  /* Product intro */
  .product-sections > section {
    padding: 60px 142px;
    position: relative;
    height: 500px;
    justify-content: center;
  }

  .product-intro__heading {
    padding: 60px 0 24px;
  }

  .product-intro__title {
    font-size: 38px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 0;
  }

  .product-intro__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.32px;
  }

  .product-intro__question-label {
    font-size: 32px;
    line-height: unset;
  }

  .product-intro__question {
    font-size: 28px;
    margin: 24px 0 40px;
  }

  .product-intro__panels {
    /* flex-direction: column; */
  }

  .product-panel--draft {
    /* border-radius: 20px 0 0 20px; */
  }

  .product-perfect-serve__container {
    background: none;
  }

  .product-panel--home {
    /* border-radius: 0 20px 20px 0; */
  }

  .product-panel {
    pointer-events: none;
    width: 100%;
    min-height: 360px;
    padding: 60px;
    /* border-radius: 24px; */
  }

  .product-panel__eyebrow {
    font-size: 36px;
  }

  .product-panel__title {
    font-size: 68px;
  }

  .product-panel__figure,
  .product-panel__figure--home {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: 0;
    right: 60px;
    bottom: -3%;
  }

  .product-panel__figure--home {
    justify-content: flex-start;
    left: 40px;
    right: auto;
  }

  .product-panel__image {
    max-width: 84.317px;
    aspect-ratio: 84.32/220;
  }

  .product-panel__image--home {
    width: 100%;
    max-width: 93.32px;
    aspect-ratio: 93.32/220;
  }

  .product-panel__cta,
  .product-panel__cta--home {
    position: absolute;
    left: 60px;
    bottom: 60px;
    width: 40px;
    height: 40px;
    padding: 13px;
    align-self: flex-start;
    pointer-events: auto;
  }

  .product-panel--home .product-panel__cta {
    right: 40px !important;
    left: auto !important;
  }

  .product-panel__cta *,
  .product-panel__cta--home * {
    pointer-events: none;
  }

  .product-panel--home .product-panel__cta svg {
    transform: rotate(45deg);
  }

  .product-panel--home .product-panel__cta {
    right: 40px !important;
    left: auto !important;
  }

  /* Perfect serve & gallery */
  .product-perfect-serve {
    position: relative !important;
    overflow: hidden;
    display: flex !important;
    flex-direction: column-reverse;
  }

  .product-perfect-serve .bg-video {
    position: absolute;
    width: 100%;
    max-width: none;
    border-radius: 20px;
    left: 0;
    top: 0;
  }

  .product-perfect-serve__container,
  .product-gallery {
    padding: 60px 12px 30px;
    height: auto;
  }

  .product-gallery {
    padding: 60px 12px 30px;
    height: auto;
    background: url(/themes/stella/img/product/stella-artois-premium-sec02-bg.png)
        no-repeat right bottom/ contain,
      linear-gradient(164deg, #ebe1d6 -4.22%, #e8d4be 43.86%, #ecd4b3 85.89%);
  }

  .product-gallery {
    padding: 80px 142px !important;
    height: 508px;
  }

  .product-perfect-serve__title,
  .product-gallery__title {
    font-size: 38px;
  }

  .product-perfect-serve__accent {
    font-size: 62px;
  }

  .product-perfect-serve__dec {
    display: none;
    font-size: 18px;
    letter-spacing: -0.36px;
  }

  .product-gallery .product-perfect-serve__dec {
    display: block !important;
  }

  .product-gallery__container {
    flex-direction: column-reverse;
    gap: 80px;
  }

  .product-perfect-serve__container .product-panel__figure {
    right: 0;
    bottom: 0;
    left: 300px;
    top: 40px;
  }

  .product-offers__title {
    font-size: 38px;
  }

  .product-offers {
    padding: 60px 0;
  }

  .product-offers__grid {
    gap: 16px;
    padding: 0 4%;
  }

  .product-offer-card {
    width: calc(50% - 12px);
    max-width: 220px;
  }

  .product-offer-card__media {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 100%;
  }

  .product-offer-card__thumb,
  .product-offer-card__image {
    border-radius: 18px;
  }

  .product-offer-card__thumb {
    transform: translate(0, 0);
  }

  .product-offer-card__image {
    padding: 16px;
  }

  .product-offer-card__name {
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    /* 22.4px */
    letter-spacing: -0.32px;
  }

  .product-gallery__cta,
  .product-perfect-serve__cta {
    width: 208px;
    height: 50px;
    padding: 12px 0;
    margin: 0;
  }

  .product-gallery__stage {
    width: 240px;
  }

  .product-gallery__packaging {
    left: 230px;
    text-align: left;
    bottom: -110px;
  }

  .product-gallery__cta span,
  .product-perfect-serve__cta span {
    font-size: 18px;
  }

  .product-gallery__cta {
    margin-top: 24px;
  }

  .product-perfect-serve__copy,
  .product-perfect-serve__title {
    min-width: 740px;
  }

  .product-perfect-serve__container,
  .product-gallery {
    padding: 0;
  }

  .product-perfect-serve .bg-video {
    max-width: 420px;
    left: 462px;
    top: 112px;
    height: auto;
  }
}

/* =========================
   Responsive (<=768px | Mobile)
========================= */

@media (max-width: 768px) {
  .product-panel {
    pointer-events: auto;
  }

  .product-panels-wrapper {
    position: relative;
  }

  .product-intro {
    position: relative;
  }

  .product-panels-wrapper .product-sections {
    position: absolute;
    inset: 0;
    width: 100%;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .product-panels-wrapper .product-sections > section {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 30px;
    transform: translateX(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1), opacity 220ms ease;
    min-height: 600px;
  }

  .product-panels-wrapper .product-sections > section.product-gallery {
    transform: translateX(110%);
    min-height: 600px;
  }

  .product-panels-wrapper .product-intro__panels {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .product-panels-wrapper.is-mobile-section-active .product-intro__panels,
  .product-panels-wrapper.is-mobile-active-home.is-mobile-section-active
    .product-intro__panels {
    transform: none;
    opacity: 1;
    pointer-events: none;
  }

  .product-panels-wrapper.is-mobile-section-active .product-sections {
    opacity: 1;
    pointer-events: auto;
  }

  .product-panels-wrapper .product-sections > section.is-mobile-active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .product-panels-wrapper .product-sections > section.is-mobile-closing {
    transform: translateX(-110%);
    opacity: 0;
    pointer-events: none;
  }

  .product-panels-wrapper
    .product-sections
    > section.product-gallery.is-mobile-closing {
    transform: translateX(110%);
  }

  .product-gallery__cta-stack,
  .product-perfect-serve__title,
  .product-perfect-serve__copy {
    min-width: unset;
  }

  .product-sections > section {
    padding: 60px 25px !important;
    height: 100%;
    align-items: center;
    justify-content: space-around;
  }

  .product-panel__cta svg {
    transform: rotate(-135deg);
  }

  .product-panel--home .product-panel__cta svg {
    transform: rotate(45deg);
  }

  .product-gallery__card::after {
    font-size: 12px;
  }

  .product-perfect-serve .bg-video {
    position: relative;
    border-radius: 10px;
    width: 100%;
    max-width: none;
    margin: 0 auto 40px;
    left: 0;
    top: 0;
  }

  .product-perfect-serve__container .product-panel__figure {
    left: 250px;
    bottom: 30px;
  }

  .product-gallery__packaging {
    left: 0;
    bottom: -120px;
  }

  .product-gallery {
    background: url(/themes/stella/img/product/stella-artois-premium-sec02-bg-m.png)
        no-repeat center/cover,
      linear-gradient(164deg, #ebe1d6 -4.22%, #e8d4be 43.86%, #ecd4b3 85.89%);
    height: 508px !important;
  }

  .product-intro__heading {
    padding: 30px 20px;
  }

  .product-gallery__container {
    width: 100%;
  }

  .product-offers {
    padding: 60px 0;
  }

  .product-gallery__stage {
    width: 174px;
  }

  .product-gallery__deck {
    width: 100%;
  }

  .product-gallery__card {
    padding-right: 5px;
  }

  .product-gallery__card:nth-child(3),
  .product-gallery__card:nth-child(4) {
    margin-left: -5px !important;
  }

  .product-offers__grid {
    justify-content: center;
  }

  .product-offers__title {
    font-size: 38px;
  }

  .product-page {
    padding-top: calc(var(--header-offset, 82px));
  }

  .product-intro__title {
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 0;
    /* 45.6px */
  }

  .product-intro__subtitle {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 19.2px */
    letter-spacing: -0.32px;
  }

  .product-intro__question-label {
    font-size: 32px;
    line-height: unset;
  }

  .product-intro__question {
    font-size: 28px;
    margin: 24px 0 40px;
  }

  .product-intro__panels {
    flex-direction: column;
  }

  .product-intro__heading {
    padding: 30px 0 20px;
  }

  .product-panel {
    width: 100%;
    padding: 40px;
    min-height: 300px;
    /* border-radius: 24px; */
  }

  .product-panel__eyebrow {
    font-size: 36px;
  }

  .product-panel__title {
    font-size: 60px;
  }

  .product-panel__cta {
    width: 40px;
    height: 40px;
    padding: 11px;
    position: absolute;
    left: 40px;
    bottom: 40px;
    /* margin-top: 30px; */
    align-self: flex-start;
  }

  /* .product-panel--draft {
            border-radius: 20px 20px 0 0px;

        }

        .product-panel--home {
            border-radius: 0 0px 20px 20px;
        } */

  .product-panel__cta svg {
    width: 24px;
    height: 24px;
  }

  .product-panel__figure {
    position: absolute;
    width: 100%;
    height: auto;
    right: 40px;
    bottom: 40px;
  }

  .product-panel__figure img {
    width: 100%;
    max-width: 70px;
    aspect-ratio: 70/182.64;
  }

  .product-panel__figure img.product-panel__image--home {
    max-width: 77px;
    aspect-ratio: 77 / 182;
  }
}

/* holiday */
:root {
  --header-offset: 140px;
  --brand-red: #c11b17;
  --brand-gold: #a58158;
  --champagne-50: #fff8f0;
  --champagne-100: #f7efe3;
  --ink: #1b1b1b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  color: #1f1f1f;

  overflow-x: hidden;
}

@font-face {
  font-family: Artois;
  font-style: normal;
  font-weight: 400;
  src: url("/themes/stella/font/ArtoisSebastian-Sans.woff2") format("woff2"),
    url("/themes/stella/font/ArtoisSebastian-Sans.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: ArtoisIsabella-Serif;
  font-style: normal;
  font-weight: 400;
  src: url("/themes/stella/font/ArtoisIsabella-Serif.woff2") format("woff2"),
    url("/themes/stella/font/ArtoisIsabella-Serif.woff") format("woff");
  font-display: swap;
}

.product-page {
  min-height: 100vh;

  padding: 133px 0 0;
  color: #1f1f1f;
}

.detail-card {
  max-width: 1320px;
  width: 90%;
  margin: 0 auto;
  padding: 120px 60px;
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-around;
  position: relative;
}

.detail-card__photo {
  width: 44%;
  max-width: 420px;
  min-width: 320px;
  border-radius: 10px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-card__photo img {
  width: 100%;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
}

.detail-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 678px;
}

.dtc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff91;
  /* border: 1px solid #ffffff91; */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  color: #00321f;
  text-decoration: none;
  cursor: pointer;
  z-index: 100;
  transition: all 0.2s ease;
}

.dtc-nav:hover {
  background: #fff;
  border-color: #bbb;
}

.dtc-nav--prev {
  left: -3%;
}

.dtc-nav--next {
  right: -3%;
}

.btn-listview {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 19.2px */
  letter-spacing: -0.32px;
  color: rgba(51, 51, 51, 0.8);
}

.btn-listview:hover {
  text-decoration: underline;
}

.detail-card__eyebrow {
  font-family: Artois, sans-serif;
  letter-spacing: 0.24em;
  font-size: 13px;
  color: #b08a52;
}

.detail-card__title {
  /* font-family: "Noto Sans CJK KR"; */
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  color: #333;
  word-break: keep-all;
  line-height: 120%;
  /* 36px */
  letter-spacing: -0.6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.chip--new {
  border-radius: 4px;
  background: #a39665;
  color: #fff;
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 21.6px */
  letter-spacing: -0.36px;
}

.detail-card__chips {
  display: flex;
}

.detail-card__subtitle {
  font-size: 16px;
  letter-spacing: -0.18px;
  margin-top: 10px;
  color: rgba(34, 25, 18, 0.8);
}

.detail-card__retailers {
  margin-top: 60px;
}

.detail-card__retailers p {
  color: #333;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 20px;
  /* 24px */
  letter-spacing: -0.4px;
}

.retailer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 510px;
}

.retailer-list li {
  flex: 0 1 auto;
}

.retailer-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 162px;
  height: 50px;
  padding: 8px 0;

  border-radius: 8px;
  border: 1px solid #e2e2e2;

  background: #fff;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.retailer-list a img {
  width: 90%;
  margin: 0 auto;
}

.retailer-list a:hover,
.retailer-list a:focus-visible {
  transform: scale(1.08);
  border: 1px solid #333;

  outline: none;
}

.detail-image {
  width: 100%;

  padding: 140px 0;

  background: #fff;

  display: flex;
  justify-content: center;
}

.detail-image img {
  max-width: 100%;
}

.stella-btn-top {
  position: fixed;
  right: 5%;
  bottom: 12%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border-radius: 100px;
  background: #333;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.stella-btn-top.is-visible {
  display: flex;
}

@media (max-width: 1024px) {
  .detail-card {
    gap: 42px;
    padding: 90px 40px;
  }

  .detail-card__photo {
    width: 40%;
    max-width: 420px;
    min-width: 280px;
  }

  .dtc-nav--prev {
    left: 8px;
  }

  .dtc-nav--next {
    right: 8px;
  }

  .retailer-list {
    min-width: 400px;
  }

  .retailer-list a {
    width: 14dvw;
  }

  .detail-image {
    padding: 90px 0;
  }

  .detail-card__title {
    font-size: 28px;
  }

  .chip--new {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .product-page {
    padding: 72px 0 0;
  }

  .detail-card {
    flex-direction: column;
    padding: 40px 20px;
    justify-content: center;
    width: 100%;
    align-items: center;
    margin-bottom: 0px;
    gap: 24px;
  }

  .detail-card__photo {
    width: 100%;
    min-width: auto;
    max-width: unset;
  }

  .detail-card__title {
    font-size: 20px;
  }

  .chip--new {
    font-size: 12px;
  }

  .detail-card__retailers p {
    font-size: 18px;
  }

  .retailer-list {
    width: 100%;
    min-width: unset;
    gap: 4px;
    justify-content: flex-start;
  }

  .retailer-list a {
    width: 29vw;
    min-height: 40px;
  }

  .detail-image {
    padding: 0;
  }

  .stella-btn-top {
    right: 20px;
    bottom: 50dvh;
  }

  .retailer-list a img {
    width: 100%;
    max-width: 145px;

    margin: 0 auto;
  }

  .detail-card__retailers {
    margin-top: 28px;
  }

  .dtc-nav {
    position: absolute;
    top: 30%;
    transform: translateY(5%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff91;
    /* border: 1px solid #ffffff91; */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    color: #00321f;
    text-decoration: none;
    cursor: pointer;
    z-index: 100;
    transition: all 0.2s ease;
  }

  .dtc-nav--prev {
    left: 2%;
  }

  .dtc-nav--next {
    right: 2%;
  }
}

.stella-btn-top:focus-visible {
  outline: 2px solid #222;
  outline-offset: 2px;
}
