@charset "UTF-8";
/* 반응형 구조 가이드
   common.css : 공통 리셋/유틸
   style.css  : 기본(데스크탑) 컴포넌트
   app.css    : 브레이크포인트 오버라이드 */
.header-quick-links {
  display: none;
}

.header-nav__actions {
  display: none;
}
/* =========================================================
   Rewards 섹션 구간 최소 대응 | 951px ~ 1600px
   - 2열 유지
   - 로고 / 본문 비율 재조정
   - 버튼은 흐트러지지 않게 flex 정렬
========================================================= */
@media screen and (min-width: 951px) and (max-width: 1600px) {
  .new-rewards_inner {
    max-width: 980px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .new-rewards_inner::after {
    content: none;
  }

  .new-rewards_logo {
    float: none;
    flex: 0 0 220px;
    width: 220px;
    margin: 8px 0 0;
  }

  .new-rewards_logo img {
    width: 100%;
    max-width: 176px;
    height: auto;
  }

  .new-rewards_conts {
    float: none;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    padding-right: 0;
  }

  .new-rewards_inner .pc-br {
    display: none;
  }

  .new-rewards_conts .info-cont {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }

  .new-rewards_conts .info-cont_txt {
    margin-bottom: 14px;
  }

  .new-rewards_conts .info-cont_txt h2 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.35;
    word-break: keep-all;
  }

  .new-rewards_conts .info-cont_txt p {
    font-size: 15px;
    line-height: 1.5;
    word-break: keep-all;
  }

  .new-rewards_conts .btn-signin_group {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
  }

  .new-rewards_conts .btn-signin_group a,
  .new-rewards_conts .btn-signin_group button {
    height: 36px;
    line-height: 34px;
    padding: 0 16px;
    font-size: 13px;
  }

  .new-rewards_conts .btn-signin_login {
    margin-left: 0;
  }

  .new-rewards_conts .gift-cont {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .new-rewards_conts .gift-cont_txt p,
  .new-rewards_conts .gift-cont_txt p strong {
    font-size: 13px;
    line-height: 1.55;
    word-break: keep-all;
  }

  .new-rewards_conts .btn_egift {
    position: static;
    width: fit-content;
    max-width: 100%;
    height: 36px;
    line-height: 34px;
    margin: 0;
    padding: 0 16px;
    font-size: 13px;
  }

  .new-rewards_conts .btn_egift a {
    padding: 0;
    white-space: nowrap;
  }
}

/* =========================================================
   메인 bean 섹션부터 store까지 | 951px ~ 1600px 최소 대응
   - HTML 흐름 기준: bean → favorite → reserve → 스토어
========================================================= */
@media screen and (min-width: 951px) and (max-width: 1600px) {
  /* Main bean */
  #main-bean-wrap {
    --main-bean-scale: min(1, calc(100vw / 1124px));
    position: relative;
    height: calc(578px * var(--main-bean-scale));
    overflow: hidden;
  }

  .main-bean-inner {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1124px;
    max-width: none;
    height: 578px;
    margin-left: -562px;
    transform: scale(var(--main-bean-scale));
    transform-origin: top center;
  }

  /* Favorite */
  #fav_wrap {
    --fav-scale: min(1, calc(100vw / 1280px));
    height: calc(800px * var(--fav-scale));
    overflow: hidden;
  }

  .fav_wrap_inner {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1280px;
    height: 800px;
    margin-left: -640px;
    transform: scale(var(--fav-scale));
    transform-origin: top center;
  }

  /* Store */
  #storewrap {
    --store-scale: min(1, calc(100vw / 1280px));
    height: calc(400px * var(--store-scale));
  }

  .store_inner {
    transform: scale(var(--store-scale));
    transform-origin: top center;
  }
}


/* =========================================================
   #first_reserve 섹션대응 구조 조정 후 미디어쿼리 | 951px ~ 1279px
========================================================= */
@media screen and (min-width: 951px) and (max-width: 1279px) {
  /* First Reserve: scale the whole scene together */
  #first_reserve_wrap {
    height: 400px;
  }

  .first_reserve_inner {
    transform: scale(clamp(0.8, calc(0.8 + ((100vw - 951px) / 328px) * 0.2), 1));
    transform-origin: center center;
  }
}

@media screen and (min-width: 1170px) and (max-width: 1279px) {
  /* Reserve Magazine: one-third down from the desktop baseline */
  .reserve_title img {
    transform: translateX(calc(107px + (100vw - 1170px) * 54 / 109));
  }

  .reserve_detail-btn {
    padding-left: calc(150px + (100vw - 1170px) * 75 / 109);
  }
}

@media screen and (min-width: 1060px) and (max-width: 1169px) {
  /* Reserve Magazine: two-thirds down from the desktop baseline */
  .reserve_title img {
    transform: translateX(calc(54px + (100vw - 1060px) * 53 / 109));
  }

  .reserve_detail-btn {
    padding-left: calc(75px + (100vw - 1060px) * 75 / 109);
  }
}

@media screen and (min-width: 951px) and (max-width: 1059px) {
  /* Reserve Magazine: approach zero by 951px */
  .reserve_title img {
    transform: translateX(calc((100vw - 951px) * 54 / 108));
  }

  .reserve_detail-btn {
    padding-left: calc((100vw - 951px) * 75 / 108);
  }
}

/* =========================================================
   중간 데스크톱 헤더 보정 | 950px ~ 1699px
   - style.css 데스크톱 구조는 유지
   - header만 app.css에서 정밀 보정
========================================================= */

@media screen and (min-width: 950px) and (max-width: 1699px) {
  /* ---------------------------------
     Header
  --------------------------------- */
  header > .inner {
    max-width: 980px;
    padding-left: 20px;
    padding-right: 20px;
  }

  header .sub-menu {
    top: 8px;
    gap: 8px;
  }

  header .sub-menu ul.menu li a,
  header .sub-menu ul.menu li [data-link-status="planned"] {
    padding: 10px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  header .sub-menu .search input {
    width: 34px;
  }

  header .sub-menu .search input:focus {
    width: 150px;
  }

  header .main-menu {
    right: 0;
    gap: 0;
  }

  header .main-menu .item > .item__name {
    padding: 10px 12px 30px;
    font-size: 12px;
    white-space: nowrap;
  }

  header .main-menu .item .item__contents .contents__menu > ul {
    max-width: 1180px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
  }

  header .main-menu .item .item__contents .contents__menu > ul > li {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
  }
}

/* 랩탑 | 960px ~ 1479px */
@media screen and (max-width: 1479px) {
  header > .inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  header .main-menu .item > .item__name {
    padding-left: 16px;
    padding-right: 16px;
  }

  header .main-menu .item .item__contents .contents__menu > ul {
    gap: 20px;
  }

  header .main-menu .item .item__contents .contents__menu > ul > li {
    width: auto;
    max-width: 180px;
    flex: 1 1 0;
  }
}

@media screen and (min-width: 950px) and (max-width: 1279px) {
  .visual {
    padding-left: 14px;
    padding-right: 14px;
  }

  .visual .visual-inner {
    height: clamp(430px, 24vw, 540px);
    min-height: 430px;
    max-height: 540px;
    /* 재수정 */
    background-position: center top;
    /* background-size: 100% auto; */
  }

  .visual .visual_slogan,
  .visual .btn_slogan {
    left: 7.5%;
    width: 24%;
  }

  .visual .visual_slogan {
    top: 31.5%;
  }

  .visual .btn_slogan {
    top: 56%;
  }

  .visual .btn_slogan a {
    min-width: 120px;
    height: 36px;
    padding: 0 18px;
    font-size: 13px;
  }

  .visual .visual_stage {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .visual .visual_stage__group {
    position: absolute;
    display: block;
    margin: 0;
    padding: 0;
  }

  .visual .visual_stage__group--left {
    top: 17%;
    left: 39%;
    width: 24%;
    height: 60%;
  }

  .visual .visual_stage__group--center {
    top: 26%;
    left: 56.5%;
    width: 13%;
    height: 50%;
  }

  .visual .visual_stage__group--right {
    top: 17%;
    left: 65%;
    width: 24%;
    height: 60%;
  }

  .visual .visual_stage__item {
    position: absolute;
    margin: 0;
  }

  .visual .visual_stage__group--left .visual_stage__item--drink-01 {
    top: 0;
    left: 10%;
    width: 50%;
  }

  .visual .visual_stage__group--left .visual_stage__item--drink-02 {
    top: 0;
    left: 48%;
    width: 50%;
  }

  .visual .visual_stage__group--left .visual_stage__item--drink-03 {
    top: 50%;
    left: 0%;
    width: 80%;
  }

  .visual .visual_stage__group--center .visual_stage__item--drink-07 {
    top: 0;
    left: 0;
    width: 100%;
  }

  .visual .visual_stage__group--right .visual_stage__item--drink-04 {
    top: 0;
    left: 0;
    width: 50%;
  }

  .visual .visual_stage__group--right .visual_stage__item--drink-05 {
    top: 0;
    left: 38%;
    width: 50%;
  }

  .visual .visual_stage__group--right .visual_stage__item--drink-06 {
    top: 51%;
    left: 20%;
    width: 80%;
  }
}

/* =========================================================
   데스크탑 보정 구간 | 951px 이상
   - Hero는 style.css에서 absolute 포스터형으로 처리
   - 여기서는 데스크탑에서 모바일 CTA가 노출되지 않도록 보강
========================================================= */

@media screen and (min-width: 950px) {
  /* ---------------------------------
     Focus visibility
  --------------------------------- */
  header .sub-menu a:focus-visible,
  header .main-menu .item > .item__name:focus-visible,
  .visual .btn_slogan a:focus-visible {
    outline: 2px solid #006241;
    outline-offset: 3px;
  }

  .footer-desktop__menu-title::after {
    content: none;
    display: none;
  }

  .footer a:hover {
    text-decoration: underline;
    text-decoration-color: currentColor;
    text-underline-offset: 2px;
  }
}

@media screen and (max-width: 959px) {
  #footer {
    padding: 34px 0 calc(28px + env(safe-area-inset-bottom, 0px));
  }

  .footer-desktop {
    display: none;
  }

  .mobile-flow-footer {
    display: block;
  }

  .mobile-flow-footer__inner,
  .mobile-flow-footer__policy,
  .mobile-flow-footer__info,
  .mobile-flow-footer__copyright {
    text-align: left;
  }

  .mobile-flow-footer__policy,
  .mobile-flow-footer .footer-social {
    justify-content: flex-start;
  }
}

@media screen and (min-width: 541px) and (max-width: 959px) {
  .mobile-flow-footer__inner {
    max-width: 700px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 36px;
    row-gap: 0;
  }

  .mobile-flow-footer__policy,
  .mobile-flow-footer__info,
  .mobile-flow-footer__copyright {
    grid-column: 1 / -1;
  }

  .mobile-flow-footer__policy,
  .mobile-flow-footer__info,
  .mobile-flow-footer__copyright {
    justify-content: flex-start;
    text-align: left;
  }

  .mobile-flow-footer .footer-social {
    justify-content: flex-start;
  }
}


@media screen and (max-width: 950px) {
  header {
    border-bottom-color: rgba(200, 196, 199, 0.58);
  }

  body.header-nav-open {
    overflow: hidden;
  }

  /* Mobile polish: bottom sheet density */
  .order-choice {
    align-items: flex-end;
    padding: 20px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .order-choice__panel {
    width: min(100%, 420px);
    max-height: min(680px, calc(100dvh - 24px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)));
    padding: 20px 18px calc(18px + env(safe-area-inset-bottom, 0px));
    border-radius: 24px;
    transform: translateY(calc(100% + 24px));
  }

  .order-choice.is-open .order-choice__panel {
    transform: translateY(0);
  }

  .order-choice__eyebrow {
    margin-bottom: 7px;
    font-size: 11px;
  }

  .order-choice__panel h2 {
    font-size: 20px;
    line-height: 1.24;
  }

  .order-choice__panel > p {
    margin-top: 10px;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.56;
  }

  .order-choice__actions {
    gap: 9px;
    margin-top: 18px;
  }

  .order-choice__button {
    min-height: 48px;
    font-size: 14px;
  }

  /* Mobile polish: hero density */
  .visual {
    margin-top: 84px;
    min-height: 0;
    padding: 16px 0 28px;
    background-color: #edf4cc;
    background-image:
      linear-gradient(
        180deg,
        #f6f5f0 0%,
        rgba(246, 245, 240, 0.94) 10%,
        rgba(246, 245, 240, 0.56) 20%,
        rgba(246, 245, 240, 0.14) 34%,
        rgba(246, 245, 240, 0) 46%
      ),
      url("../images/hero/2026_spring2_top_bg_mo_260407.jpg");
    background-position: center top, center top;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
  }

  .visual .visual-inner {
    width: 100%;
    height: auto;
    min-height: 0;
    max-width: none;
    max-height: none;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "slogan"
      "stage"
      "landing";
    justify-items: center;
    row-gap: 0;
    background-image: none;
    background-color: transparent;
    overflow: visible;
  }

  .visual .visual_slogan,
  .visual .btn_slogan {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
  }

  .visual .visual_slogan {
    grid-area: slogan;
    align-self: auto;
    width: min(344px, 60vw);
    margin: 0 auto 8px;
  }

  .visual .btn_slogan {
    display: none !important;
  }

  .visual .visual_set {
    position: relative;
    grid-area: stage;
    width: min(100%, 420px);
    max-width: 420px;
    margin: 0;
    height: auto;
    align-self: auto;
    overflow: visible;
  }

  .visual .visual_stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    min-height: 356px;
    padding: 0;
    gap: 0;
  }

  .visual .visual_stage__item {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    flex: 0 0 auto;
    transform: none;
  }

  /* 950px 이하에서는 대표 음료 1개만 */
  .visual .visual_stage__item--drink-01,
  .visual .visual_stage__item--drink-02,
  .visual .visual_stage__item--drink-03,
  .visual .visual_stage__item--drink-04,  
  .visual .visual_stage__item--drink-05,
  .visual .visual_stage__item--drink-06 {
    display: none !important;
  }

  .visual .visual_stage__item--drink-07 {
    display: block !important;
    order: 1;
    width: clamp(232px, 36vw, 296px);
    margin: 0 auto;
    z-index: 2;
    transform: translateX(5.5%);
  }

  .visual .visual_stage__item--drink-07 img {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
    transform-origin: center bottom;
    object-fit: contain;
    object-position: center bottom;
  }

  /* Mobile polish: CTA hierarchy */
  .visual .hero-mobile-landing {
    grid-area: landing;
    display: block !important;
    width: min(364px, 100%);
    margin-top: 18px;
    padding: 10px 12px 10px;
    border-radius: 20px;
    background: linear-gradient(
      180deg,
      rgba(246, 245, 239, 0.56) 0%,
      rgba(246, 245, 239, 0.88) 24%,
      rgba(246, 245, 239, 0.96) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 22px rgba(30, 57, 50, 0.07);
  }

  .visual .hero-mobile-landing::before {
    content: "";
    display: block;
    width: 34px;
    height: 2px;
    margin: 0 auto 8px;
    border-radius: 999px;
    background: linear-gradient(
      90deg,
      rgba(0, 98, 65, 0) 0%,
      rgba(0, 98, 65, 0.16) 24%,
      rgba(0, 98, 65, 0.26) 50%,
      rgba(0, 98, 65, 0.16) 76%,
      rgba(0, 98, 65, 0) 100%
    );
  }

  .visual .hero-copy-mobile {
    display: block !important;
    width: 100%;
    margin-bottom: 9px;
  }

  .visual .hero-copy-mobile__text {
    max-width: 24ch;
    margin: 0 auto;
    color: #1e3932;
    font-size: 12.5px;
    line-height: 1.54;
    text-align: center;
    letter-spacing: -0.01em;
  }

  .visual .hero-actions {
    display: flex !important;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
  }

  .visual .btn--hero-primary,
  .visual .btn--hero-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 13px;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }

  .visual .btn--hero-primary {
    min-height: 45px;
    color: #fff;
    background-color: #006241;
    border: 1px solid #006241;
    font-weight: 700;
    box-shadow: 0 8px 14px rgba(0, 98, 65, 0.14);
  }

  .visual .btn--hero-primary:hover {
    background-color: #004f33;
    border-color: #004f33;
  }

  .visual .btn--hero-secondary {
    min-height: 43px;
    color: #31584d;
    background-color: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(30, 57, 50, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    font-weight: 600;
  }

  .visual .btn--hero-secondary:hover {
    color: #24473d;
    border-color: rgba(0, 98, 65, 0.28);
    background-color: #fff;
  }

  .visual .hero-link {
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #5f746d;
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    opacity: 1;
    height: 25px;
  }

  .visual .hero-link__label {
    line-height: 1.2;
  }

  .visual .hero-link__icon {
    font-size: 11px;
    line-height: 1;
  }

  /* 모바일 헤더 */
  header > .inner {
    height: 84px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header .logo {
    position: static;
    width: 54px;
    height: 54px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  header .logo img {
    width: 100%;
    height: auto;
  }

  header .header-toggle {
    display: flex;
    position: static;
    width: 40px;
    height: 40px;
    margin-left: auto;
    transform: none;
    flex-shrink: 0;
  }

  header .header-toggle span[aria-hidden="true"] {
    width: 24px;
  }

  header .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100vw);
    height: var(--header-nav-height, 100dvh);
    max-height: var(--header-nav-height, 100dvh);
    padding: 24px 20px 0;
    background-color: #f6f5ef;
    overflow-y: auto;
    scroll-padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    transform: translateX(calc(100% + 32px));
    visibility: hidden;
    pointer-events: none;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.14);
    z-index: 10001;
  }

  header.is-nav-ready .header-nav {
    transition: transform 0.4s ease, visibility 0s linear 0.4s;
  }

  header.is-nav-open .header-nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  header.is-nav-ready.is-nav-open .header-nav {
    transition: transform 0.4s ease, visibility 0s linear 0s;
  }

  header .header-nav__top {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
  }

  header .header-close {
    display: flex;
    align-self: flex-end;
  }

  header .header-nav__actions {
    position: sticky;
    bottom: 0;
    display: none;
    gap: 12px;
    margin: 12px -20px 0;
    padding: 20px 20px calc(18px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(30, 57, 50, 0.08);
    background:
      linear-gradient(
        180deg,
        rgba(246, 245, 239, 0) 0%,
        rgba(246, 245, 239, 0.88) 26%,
        rgba(246, 245, 239, 0.96) 50%,
        rgba(246, 245, 239, 1) 100%
      );
    box-shadow: 0 -12px 24px -20px rgba(47, 36, 28, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    isolation: isolate;
    z-index: 3;
  }

  header.is-nav-actions-visible .header-nav__actions {
    display: grid;
  }

  header .header-nav__actions::before {
    content: "";
    justify-self: center;
    width: min(68px, 18vw);
    height: 1px;
    background:
      linear-gradient(
        90deg,
        rgba(30, 57, 50, 0),
        rgba(30, 57, 50, 0.22),
        rgba(30, 57, 50, 0)
      );
  }

  header .header-nav__close-action {
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 304px);
    min-height: 48px;
    margin: 0 auto;
    padding: 0 20px;
    border: 1px solid rgba(17, 45, 38, 0.14);
    border-radius: 13px;
    background-color: #214338;
    color: #f8f6f0;
    font: inherit;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.015em;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 6px 16px rgba(17, 45, 38, 0.12);
    transition:
      background-color 0.2s ease,
      transform 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease;
  }

  header .header-nav__close-action:active {
    transform: translateY(1px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 4px 10px rgba(17, 45, 38, 0.1);
  }

  header .header-nav__close-action:focus-visible {
    outline: 2px solid #006241;
    outline-offset: 3px;
  }

  header .header-nav__close-action:hover {
    background-color: #25493e;
    border-color: rgba(17, 45, 38, 0.2);
  }

  header .header-quick-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  header .header-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 68px;
    padding: 12px 8px;
    border: 1px solid rgba(30, 57, 50, 0.1);
    border-radius: 16px;
    background-color: #fff;
    color: #1e3932;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(30, 57, 50, 0.04);
  }

  header .header-quick-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background-color: #edf4ef;
    color: #006241;
    font-size: 18px;
  }

  header .header-quick-link__text {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }

  header .header-quick-link:hover {
    text-decoration: none;
    border-color: rgba(0, 98, 65, 0.18);
    box-shadow: 0 10px 18px rgba(30, 57, 50, 0.08);
  }

  header .header-quick-link:focus-visible {
    outline: 2px solid #006241;
    outline-offset: 2px;
  }

  header .sub-menu {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  header .sub-menu ul.menu {
    display: none;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #ddd;
  }

  header .sub-menu ul.menu li {
    border-bottom: 1px solid #ddd;
  }

  header .sub-menu ul.menu li::before {
    display: none;
  }

  header .sub-menu ul.menu li a,
  header .sub-menu ul.menu li [data-link-status="planned"] {
    padding: 14px 0;
    font-size: 14px;
  }

  header .sub-menu .search {
    width: 100%;
    height: auto;
  }

  header .sub-menu .search input {
    width: 100%;
    height: 48px;
    padding: 0 48px 0 16px;
    font-size: 16px;
    transition: none;
  }

  header .sub-menu .search input:focus {
    width: 100%;
  }

  header .sub-menu .search > .search__icon {
    right: 14px;
  }

  header .sub-menu .search .search__clear {
    right: 10px;
    width: 32px;
    height: 32px;
  }

  header .main-menu {
    position: static;
    display: block;
    padding-top: 20px;
  }

  header.is-nav-actions-visible .main-menu {
    padding-bottom: 18px;
  }

  header .main-menu .item--whats-new {
    display: none;
  }

  header .main-menu .item {
    border-bottom: 1px solid #ddd;
  }

  header .main-menu .item > .item__name {
    position: relative;
    width: 100%;
    padding: 18px 32px 18px 14px;
    font-size: 15px;
    text-align: left;
  }

  header .main-menu .item > .item__name::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #1e3932;
    border-bottom: 2px solid #1e3932;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease;
  }

  header .main-menu .item.is-open > .item__name,
  header .main-menu .item > .item__name:active {
    color: #006241;
    background-color: transparent;
    border-radius: 0;
    box-shadow: inset 4px 0 0 #006241;
    font-weight: 700;
  }

  header .main-menu .item.is-open > .item__name::after,
  header .main-menu .item > .item__name:active::after {
    border-right-color: #006241;
    border-bottom-color: #006241;
    transform: translateY(-30%) rotate(225deg);
  }

  header .main-menu .item:not(.is-open):focus-within > .item__name {
    color: #333;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    font-weight: inherit;
  }

  header .main-menu .item:not(.is-open):focus-within > .item__name::after {
    border-right-color: #1e3932;
    border-bottom-color: #1e3932;
    transform: translateY(-70%) rotate(45deg);
  }

  header .main-menu .item:not(.is-open) > .item__name:focus-visible {
    color: #333;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    font-weight: inherit;
    outline: 2px solid #006241;
    outline-offset: -2px;
  }

  header .main-menu .item:not(.is-open) > .item__name:focus-visible::after {
    border-right-color: #1e3932;
    border-bottom-color: #1e3932;
    transform: translateY(-70%) rotate(45deg);
  }

  header .main-menu .item > .item__name:hover:not(:focus-visible):not(:active),
  header .main-menu .item:hover > .item__name:not(:focus-visible):not(:active) {
    background-color: transparent;
    color: #333;
    text-decoration: none;
    border-radius: 0;
  }

  header .main-menu .item.is-open > .item__name:hover,
  header .main-menu .item.is-open:hover > .item__name {
    color: #006241;
    background-color: transparent;
    box-shadow: inset 4px 0 0 #006241;
    font-weight: 700;
  }

  header .main-menu .item .item__contents {
    position: static;
    top: auto;
    display: none;
    width: auto;
  }

  header .main-menu .item:hover .item__contents {
    display: none;
  }

  header .main-menu .item.is-open .item__contents {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
    overflow: hidden;
    contain: paint;
  }

  header .main-menu .item .item__contents .contents__menu {
    background-color: transparent;
  }

  header .main-menu .item.is-open .item__contents .contents__menu {
    margin-top: 0;
    padding: 12px 14px 0;
    border-radius: 0;
    overflow: hidden;
    background: rgba(0, 98, 65, 0.045);
    box-shadow: none;
  }

  header .main-menu .item .item__contents .contents__menu > ul {
    width: 100%;
    max-width: none;
    padding: 4px 0 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  header .main-menu .item .item__contents .contents__menu > ul > li {
    width: auto;
    max-width: none;
  }

  header .main-menu .item .item__contents .contents__menu > ul > li h2 {
    padding-bottom: 8px;
    font-size: 13px;
    color: #1e3932;
  }
  header .main-menu .item .item__contents .contents__menu > ul > li > h2:focus,
  header .main-menu .item .item__contents .contents__menu > ul > li > h2:focus-visible {
    outline: 2px solid #006241;
    outline-offset: 3px;
    border-radius: 4px;
  }

  header .main-menu .item .item__contents .contents__menu > ul > li ul li {
    padding: 3px 0;
    color: #666;
    line-height: 1.5;
  }

  header .main-menu .item .item__contents .contents__menu > ul > li ul li a,
  header .main-menu .item .item__contents .contents__menu > ul > li ul li [data-link-status="planned"] {
    display: inline-block;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
  }

  header .main-menu .item .item__contents .contents__menu > ul > li ul li[tabindex="0"]:focus-visible {
    text-decoration: underline;
    text-underline-position: under;
    outline: 2px solid #006241;
    outline-offset: 2px;
    border-radius: 4px;
  }

  header .header-overlay {
    display: block;
    pointer-events: none;
  }

  header.is-nav-open .header-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* 시즌 카드 섹션: 겹침 방지 */
  /* season-drinks legacy responsive layout
  .season-drinks {
    padding: 72px 20px 80px;
  }

  .season-drinks__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    row-gap: 15px;
    width: 100%;
    align-items: stretch;
  }

  .season-drinks__card {
    min-width: 0;
    height: 100%;
    padding: 20px 16px 18px;
    border-radius: 24px;
  }

  .season-drinks__card--featured {
    grid-column: span 1;
  }

  .season-drinks__visual,
  .season-drinks__card--featured .season-drinks__visual {
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
  }

  .season-drinks__visual::after {
    display: none;
  }

  .season-drinks__visual picture {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
  }

  .season-drinks__visual img,
  .season-drinks__card--featured .season-drinks__visual img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
    object-fit: contain;
    object-position: center center;
  }

  .season-drinks__copy {
    min-width: 0;
    gap: 10px;
    padding-top: 16px;
  }

  .season-drinks__copy h3 {
    min-height: 2.7em;
    font-size: 18px;
  }

  .season-drinks__card--featured .season-drinks__copy h3 {
    font-size: 20px;
  }

  .season-drinks__copy p {
    min-height: 5.2em;
    font-size: 13px;
  }

  /* 모바일 전용 개편 영역
     - season-drinks 다음 흐름을 회원/매장/프로모션/공지 순으로 재배치
     - 기존 notice ~ store 섹션은 유지하되 모바일에서는 아래에서 숨김 처리 */
  .whats-new {
    display: block;
    position: relative;
    padding: 52px 0 64px;
    background: linear-gradient(180deg, #f7f4ee 0%, #f3efe7 100%);
  }

  .whats-new__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .whats-new__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
  }

  .whats-new__heading {
    min-width: 0;
  }

  .whats-new__eyebrow {
    margin-bottom: 8px;
    color: #00704a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .whats-new__title {
    color: #1e3932;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.03em;
  }

  .whats-new__link {
    flex-shrink: 0;
    color: #5f746d;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
  }

  .whats-new .whats-new__swiper.swiper-container {
    width: 100%;
    overflow: visible;
  }

  .whats-new .whats-new__slide.swiper-slide {
    width: min(304px, calc(100vw - 116px));
  }

  .whats-new__card {
    overflow: hidden;
    min-height: 100%;
    border-radius: 26px;
    background-color: #fff;
    border: 1px solid rgba(30, 57, 50, 0.08);
  }

  .whats-new__thumb {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background-color: #d9d6d0;
  }

  .whats-new__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .whats-new__thumb--play img {
    object-position: 50% 8%;
  }

  .whats-new__thumb--spring {
    background-color: #f7dce8;
  }

  .whats-new__thumb--spring img {
    /* 2번째 카드만 원본 비율을 유지하면서 상단 타이포가 보이도록 별도 조정 */
    object-fit: contain;
    object-position: 50% 0;
  }

  .whats-new__thumb--snack {
    background-color: #dcead3;
  }

  .whats-new__thumb--snack img {
    /* 5번째 카드도 상단 카피가 잘리지 않도록 개별 보정 */
    object-fit: contain;
    object-position: 50% 0;
  }

  .whats-new__body {
    padding: 18px 18px 20px;
  }

  .whats-new__body h3 {
    display: -webkit-box;
    overflow: hidden;
    color: #1e3932;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: -0.02em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .whats-new__body p {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 8px;
    color: #5f6c67;
    font-size: 13px;
    line-height: 1.56;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .whats-new__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
  }

  .whats-new__pagination {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 6px 10px;
    border-radius: 999px;
    background-color: rgba(30, 57, 50, 0.08);
    color: #1e3932;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .mobile-flow {
    --mobile-flow-bg: #f6f5ef;
    --mobile-flow-card: rgba(255, 255, 255, 0.92);
    --mobile-flow-border: rgba(30, 57, 50, 0.08);
    --mobile-flow-text: #1e3932;
    --mobile-flow-muted: #5f6e68;
    --mobile-flow-accent: #006241;
    display: block;
    position: relative;
    padding: 34px 20px 64px;
    background:
      linear-gradient(
        180deg,
        rgba(246, 245, 239, 0) 0%,
        rgba(246, 245, 239, 0.82) 8%,
        var(--mobile-flow-bg) 100%
      );
  }

  .mobile-flow__inner {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
  }

  .mobile-flow__section {
    position: relative;
    overflow: hidden;
    padding: 22px 20px;
    border: 1px solid var(--mobile-flow-border);
    border-radius: 28px;
    background: var(--mobile-flow-card);
    box-shadow: 0 16px 30px rgba(30, 57, 50, 0.08);
  }

  .mobile-flow__section--rewards {
    background: linear-gradient(140deg, #1e3932 0%, #285246 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 32px rgba(13, 34, 29, 0.18);
  }

  .mobile-flow__section--store {
    background: linear-gradient(180deg, #f7faf8 0%, #fff 100%);
    border-color: rgba(0, 98, 65, 0.12);
    box-shadow: 0 12px 24px rgba(30, 57, 50, 0.06);
  }

  .mobile-flow__section--promotion {
    padding-top: 22px;
    padding-bottom: 22px;
    background-color: #faf7f1;
    box-shadow: 0 10px 18px rgba(30, 57, 50, 0.05);
  }

  .mobile-flow__section--notice {
    padding-top: 17px;
    padding-bottom: 16px;
    background-color: rgba(255, 255, 255, 0.82);
    box-shadow: none;
  }

  .mobile-flow__section--compact {
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .mobile-flow__section--notice.mobile-flow__section--compact {
    padding-top: 17px;
    padding-bottom: 16px;
  }

  .mobile-flow__section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }

  .mobile-flow__section-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-flow__section-top .mobile-flow__section-head {
    margin-bottom: 0;
  }

  .mobile-flow__symbol {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background-color: #edf4ef;
    color: var(--mobile-flow-accent);
    font-size: 20px;
  }

  .mobile-flow__section--rewards .mobile-flow__symbol {
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff;
  }

  .mobile-flow__label {
    color: #63746c;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-flow__section--rewards .mobile-flow__label {
    color: rgba(255, 255, 255, 0.84);
  }

  .mobile-flow__title {
    color: var(--mobile-flow-text);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.34;
    letter-spacing: -0.03em;
  }

  .mobile-flow__section--rewards .mobile-flow__title {
    color: #fff;
  }

  .mobile-flow__text {
    margin-top: 8px;
    color: var(--mobile-flow-muted);
    font-size: 14px;
    line-height: 1.62;
    letter-spacing: -0.01em;
  }

  .mobile-flow__section--rewards .mobile-flow__text {
    color: rgba(255, 255, 255, 0.82);
  }

  .mobile-flow__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }

  .mobile-flow__item {
    padding: 8px 12px;
    border: 1px solid rgba(30, 57, 50, 0.08);
    border-radius: 999px;
    background-color: #f1f3ee;
    color: #31584d;
    font-size: 12px;
    line-height: 1.2;
  }

  .mobile-flow__section--rewards .mobile-flow__item {
    padding: 6px 10px;
    border-color: rgba(255, 255, 255, 0.14);
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-size: 11px;
  }

  .mobile-flow__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
  }

  .mobile-flow__action {
    flex: 1 1 calc(50% - 4px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition:
      background-color 0.3s ease,
      color 0.3s ease,
      border-color 0.3s ease,
      box-shadow 0.3s ease;
  }

  .mobile-flow__action--wide {
    flex-basis: 100%;
  }

  .mobile-flow__action--primary {
    background-color: var(--mobile-flow-accent);
    border-color: var(--mobile-flow-accent);
    color: #fff;
    box-shadow: 0 8px 16px rgba(0, 98, 65, 0.14);
  }

  .mobile-flow__section--rewards .mobile-flow__action--primary {
    background-color: #fff;
    border-color: #fff;
    color: #1e3932;
    box-shadow: none;
  }

  .mobile-flow__action--secondary {
    background-color: rgba(255, 255, 255, 0.86);
    border-color: rgba(30, 57, 50, 0.16);
    color: #1e3932;
  }

  .mobile-flow__section--rewards .mobile-flow__action--secondary {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
  }

  .mobile-flow__action:hover,
  .mobile-flow__promo-card:hover,
  .mobile-flow__subaction:hover,
  .mobile-flow__more:hover,
  .mobile-flow__notice-link:hover {
    text-decoration: none;
  }

  .mobile-flow__action--primary:hover {
    background-color: #004f33;
    border-color: #004f33;
  }

  .mobile-flow__section--rewards .mobile-flow__action--primary:hover {
    background-color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.92);
  }

  .mobile-flow__action--secondary:hover {
    border-color: rgba(0, 98, 65, 0.28);
    color: #24473d;
    background-color: #fff;
  }

  .mobile-flow__section--rewards .mobile-flow__action--secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    background-color: rgba(255, 255, 255, 0.08);
  }

  .mobile-flow__action[data-link-status="planned"],
  .mobile-flow__promo-card[data-link-status="planned"],
  .mobile-flow__subaction[data-link-status="planned"],
  .mobile-flow__more[data-link-status="planned"],
  .mobile-flow__notice-link[data-link-status="planned"] {
    opacity: .7;
    cursor: default;
  }

  .mobile-flow__item[data-link-status="planned"] {
    opacity: 1;
    cursor: default;
  }

  .mobile-flow__subactions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(30, 57, 50, 0.08);
  }

  .mobile-flow__assist {
    color: #5f6e68;
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: -0.01em;
  }

  .mobile-flow__subaction,
  .mobile-flow__more {
    display: inline-flex;
    align-items: center;
    gap: 3px;
  }

  .mobile-flow__subaction {
    flex-shrink: 0;
    color: var(--mobile-flow-accent);
    font-size: 12px;
    font-weight: 700;
  }

  .mobile-flow__subaction::after,
  .mobile-flow__more::after {
    content: ">";
    font-size: 11px;
    line-height: 1;
  }

  .mobile-flow__more[data-planned-label]::after {
    content: attr(data-planned-label);
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    padding: 2px 6px;
    border: 1px solid rgba(0, 98, 65, 0.18);
    border-radius: 999px;
    background-color: rgba(0, 98, 65, 0.08);
    color: #006241;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
  }

  .mobile-flow__promo-list {
    display: grid;
    gap: 8px;
    margin-top: 14px;
  }

  .mobile-flow__promo-card {
    position: relative;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(30, 57, 50, 0.08);
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.92);
    color: #1e3932;
  }

  .mobile-flow__promo-card[data-planned-label]::after {
    position: absolute;
    top: 10px;
    right: 10px;
    margin-left: 0;
  }

  .mobile-flow__promo-thumb {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 1 / 1;
    background-color: #e7e0d5;
  }

  .mobile-flow__promo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-flow__promo-copy {
    min-width: 0;
  }

  .mobile-flow__promo-title {
    display: flex;
    align-items: center;
    overflow: hidden;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.38;
    letter-spacing: -0.02em;
  }

  .mobile-flow__promo-text {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 3px;
    color: #64736c;
    font-size: 11.5px;
    line-height: 1.46;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .mobile-flow__promo-link {
    display: inline-flex;
    align-items: center;
    margin-top: 5px;
    color: var(--mobile-flow-accent);
    font-size: 11.5px;
    font-weight: 700;
  }

  .mobile-flow__more {
    flex-shrink: 0;
    padding-top: 6px;
    color: #5f746d;
    font-size: 12px;
    font-weight: 700;
  }

  .mobile-flow__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
  }

  .mobile-flow__more--footer {
    padding-top: 0;
  }

  .mobile-flow__notice-list {
    margin-top: 8px;
  }

  .mobile-flow__notice-item + .mobile-flow__notice-item {
    border-top: 1px solid rgba(30, 57, 50, 0.08);
  }

  .mobile-flow__title--compact {
    margin-top: 8px;
    font-size: 18px;
  }

  .mobile-flow__notice-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    color: #1e3932;
  }

  .mobile-flow__notice-tag {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    padding: 4px 7px;
    border-radius: 999px;
    background-color: #edf4ef;
    color: var(--mobile-flow-accent);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    margin-top: 1px;
  }

  .mobile-flow__notice-text {
    display: -webkit-box;
    overflow: hidden;
    min-width: 0;
    color: #1e3932;
    font-size: 12px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .mobile-flow__action:focus-visible,
  .mobile-flow__promo-card:focus-visible,
  .mobile-flow__subaction:focus-visible,
  .mobile-flow__more:focus-visible,
  .mobile-flow__notice-link:focus-visible {
    outline: 2px solid var(--mobile-flow-accent);
    outline-offset: 3px;
  }

  .notice,
  #new-rewards_wrap,
  #main-bean-wrap,
  #first_reserve_wrap,
  #fav_wrap,
  #reserve_magazine_wrap,
  #storewrap {
    display: none;
  }
}

/* 949px 이하 */
@media screen and (max-width: 949px) {
  .footer a:focus,
  .footer a:focus-visible,
  .footer a:active {
    text-decoration: underline;
    text-decoration-color: currentColor;
    text-underline-offset: 2px;
  }
}

/* 899px 이하 */
@media screen and (max-width: 899px) {
  .visual {
    padding: 16px 0 24px;
    background-position: center top, 54% 0;
  }

  .visual .visual_slogan {
    width: min(320px, 58vw);
    margin-bottom: 6px;
  }

  .visual .visual_set {
    width: min(100%, 392px);
    max-width: 392px;
  }

  .visual .visual_stage {
    min-height: 336px;
  }

  .visual .visual_stage__item--drink-03 {
    width: clamp(222px, 40vw, 282px);
    transform: translateX(5%);
  }

  .visual .hero-mobile-landing {
    width: min(388px, 100%);
    margin-top: 16px;
    padding: 10px 10px 10px;
  }
}

/* 767px 이하 */
@media screen and (max-width: 767px) {
  .visual {
    margin-top: 68px;
    padding: 14px 0 22px;
    background-position: center top, center top;
  }

  .visual .visual-inner {
    padding: 0 16px;
  }

  .visual .visual_slogan {
    width: min(258px, 68vw);
    margin-bottom: 8px;
  }

  .visual .visual_set {
    width: min(100%, 360px);
    max-width: 360px;
  }

  .visual .visual_stage {
    min-height: 304px;
    padding-top: 0;
  }

  .visual .visual_stage__item--drink-03 {
    width: clamp(214px, 54vw, 254px);
    margin-bottom: 0;
    transform: translateX(4.5%);
  }

  .visual .visual_stage__item--drink-03 img {
    transform: scale(0.99);
  }

  .visual .hero-mobile-landing {
    width: min(324px, 100%);
    margin-top: 14px;
    padding: 11px 12px 11px;
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(30, 57, 50, 0.06);
  }

  .visual .hero-mobile-landing::before {
    width: 40px;
    margin-bottom: 10px;
  }

  .visual .hero-copy-mobile {
    margin-bottom: 9px;
  }

  .visual .hero-copy-mobile__text {
    max-width: 22ch;
    font-size: 12px;
    line-height: 1.56;
  }

  .visual .hero-actions {
    gap: 6px;
  }

  .visual .btn--hero-primary,
  .visual .btn--hero-secondary {
    font-size: 13.5px;
    border-radius: 13px;
  }

  .visual .btn--hero-primary {
    min-height: 46px;
  }

  .visual .btn--hero-secondary {
    min-height: 42px;
  }

  .visual .hero-link {
    font-size: 12px;
    padding-top: 1px;
  }

  header > .inner {
    height: 68px;
    padding: 0 14px;
  }

  header .logo {
    width: 44px;
    height: 44px;
  }

  header .header-toggle {
    width: 36px;
    height: 36px;
  }

  header .header-toggle span[aria-hidden="true"] {
    width: 22px;
  }

  header .header-nav {
    width: 100vw;
    padding: 20px 16px 0;
    scroll-padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }

  header .header-nav__top {
    gap: 16px;
    padding-bottom: 16px;
  }

  header .header-nav__actions {
    gap: 10px;
    margin: 10px -16px 0;
    padding: 18px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  }

  header .header-nav__close-action {
    width: min(100%, 292px);
    min-height: 46px;
    padding: 0 18px;
    font-size: 13px;
    border-radius: 12px;
  }

  header .header-quick-link {
    min-height: 62px;
    padding: 11px 6px;
    border-radius: 14px;
  }

  header .header-quick-link__icon {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }

  header .header-quick-link__text {
    font-size: 11.5px;
  }

  header .sub-menu ul.menu li a,
  header .sub-menu ul.menu li [data-link-status="planned"] {
    padding: 12px 0;
    font-size: 13px;
  }

  header .sub-menu .search input {
    height: 46px;
    padding-left: 14px;
    font-size: 16px;
  }

  header .sub-menu .search .search__clear {
    right: 8px;
    width: 30px;
    height: 30px;
  }

  header .main-menu {
    padding-top: 16px;
  }

  header.is-nav-actions-visible .main-menu {
    padding-bottom: 16px;
  }

  header .main-menu .item > .item__name {
    padding: 16px 28px 16px 12px;
    font-size: 14px;
  }

  header .main-menu .item .item__contents .contents__menu > ul > li h2 {
    font-size: 12px;
  }

  header .main-menu .item .item__contents .contents__menu > ul > li ul li {
    font-size: 12px;
  }

  /* season-drinks legacy responsive layout
  .season-drinks {
    padding: 64px 18px 72px;
  }

  .season-drinks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    row-gap: 18px;
  }

  .season-drinks__card {
    padding: 18px 15px 18px;
    border-radius: 22px;
  }

  .season-drinks__card--featured {
    grid-column: span 1;
  }

  .season-drinks__visual,
  .season-drinks__card--featured .season-drinks__visual {
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 0;
    border-radius: 18px;
  }

  .season-drinks__visual img,
  .season-drinks__card--featured .season-drinks__visual img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
    object-fit: contain;
    object-position: center center;
  }

  .season-drinks__copy h3 {
    min-height: 2.7em;
    font-size: 17px;
  }

  .season-drinks__copy p {
    min-height: calc(1.56em * 3);
    font-size: 12px;
    line-height: 1.56;
  }
  */

  .whats-new {
    padding: 48px 0 58px;
  }

  .whats-new__inner {
    padding: 0 18px;
  }

  .whats-new__title {
    font-size: 25px;
  }

  .whats-new .whats-new__slide.swiper-slide {
    width: min(292px, calc(100vw - 108px));
  }

  .whats-new__card {
    border-radius: 22px;
  }

  .mobile-flow {
    padding: 30px 16px 58px;
  }

  .mobile-flow__section {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .mobile-flow__title {
    font-size: 22px;
  }

  .mobile-flow__text {
    font-size: 13px;
  }

  .mobile-flow__promo-card {
    grid-template-columns: 74px minmax(0, 1fr);
    border-radius: 20px;
  }

  .mobile-flow-footer__inner {
    padding: 0 16px;
  }

  .mobile-flow-footer__section {
    padding: 20px 0 16px;
  }

  .mobile-flow-footer__title {
    margin-bottom: 12px;
    font-size: 15.2px;
    line-height: 1.4;
  }

  .mobile-flow-footer__list .mobile-flow-footer__link {
    font-size: 13px;
  }

  .mobile-flow-footer__info {
    font-size: 11.6px;
    line-height: 1.7;
  }
}

/* 540px 이하 */
@media screen and (max-width: 540px) {
  .visual {
    padding: 10px 0 20px;
  }

  .visual .visual-inner {
    padding: 0 14px;
  }

  .visual .visual_slogan {
    width: min(212px, 70vw);
    margin-bottom: 4px;
  }

  .visual .visual_stage {
    min-height: 262px;
  }

  .visual .visual_stage__item--drink-03 {
    width: clamp(200px, 70vw, 236px);
    transform: translateX(4%);
  }

  .visual .visual_stage__item--drink-03 img {
    transform: scale(0.98);
  }

  .visual .hero-mobile-landing {
    width: min(284px, 100%);
    margin-top: 12px;
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(30, 57, 50, 0.05);
  }

  .visual .hero-mobile-landing::before {
    width: 26px;
    margin-bottom: 6px;
  }

  .visual .hero-copy-mobile {
    margin-bottom: 8px;
  }

  .visual .hero-copy-mobile__text {
    max-width: 19ch;
    font-size: 10.5px;
    line-height: 1.46;
  }

  .visual .hero-actions {
    gap: 5px;
  }

  .visual .btn--hero-primary,
  .visual .btn--hero-secondary {
    padding: 0 14px;
    font-size: 12px;
    border-radius: 10px;
  }

  .visual .btn--hero-primary {
    min-height: 42px;
  }

  .visual .btn--hero-secondary {
    min-height: 40px;
  }

  .visual .hero-link {
    font-size: 10.75px;
  }

  header .header-quick-links {
    gap: 6px;
  }

  header .header-quick-link {
    min-height: 58px;
    padding: 10px 4px;
    border-radius: 13px;
  }

  header .header-quick-link__icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  header .header-quick-link__text {
    font-size: 11px;
  }

  /* season-drinks legacy responsive layout
  .season-drinks {
    padding: 36px 14px 64px;
  }

  .season-drinks__heading {
    margin-bottom: 24px;
    text-align: center;
  }

  .season-drinks__heading p {
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
  }

  .season-drinks__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    row-gap: 18px;
  }

  .season-drinks__card,
  .season-drinks__card--featured {
    grid-column: span 1;
  }

  .season-drinks__card {
    border-radius: 22px;
    padding: 14px 14px 18px;
  }

  .season-drinks__visual {
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
  }

  .season-drinks__card--featured .season-drinks__visual {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  Mobile card visual: keep the higher-res asset sharp by preserving its ratio and only trimming outer whitespace a little.
  .season-drinks__visual picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
  }

  .season-drinks__visual img,
  .season-drinks__card--featured .season-drinks__visual img {
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
    margin: 0;
  }

  .season-drinks__copy {
    gap: 8px;
    padding-top: 12px;
  }

  .season-drinks__copy h3 {
    min-height: 2.45em;
    font-size: 17px;
  }

  .season-drinks__copy p {
    min-height: calc(1.54em * 3);
    font-size: 12px;
    line-height: 1.54;
  }
  */

  .whats-new {
    padding: 40px 0 40px;
  }

  .whats-new__inner {
    padding: 0 14px;
  }

  .whats-new__header {
    align-items: start;
    margin-bottom: 18px;
  }

  .whats-new__title {
    font-size: 22px;
  }

  .whats-new__link {
    font-size: 12px;
  }

  .whats-new .whats-new__slide.swiper-slide {
    width: calc(100vw - 104px);
  }

  .whats-new__card {
    border-radius: 20px;
  }

  .whats-new__body {
    padding: 16px 16px 18px;
  }

  .whats-new__body h3 {
    font-size: 17px;
  }

  .whats-new__body p {
    font-size: 12px;
  }

  .whats-new__footer {
    margin-top: 14px;
  }

  .mobile-flow {
    padding: 24px 14px 52px;
  }

  .mobile-flow__inner {
    gap: 12px;
  }

  .mobile-flow__section {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .mobile-flow__symbol {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 18px;
  }

  .mobile-flow__title {
    font-size: 20px;
  }

  .mobile-flow__text {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.56;
  }

  .mobile-flow__actions {
    margin-top: 16px;
  }

  .mobile-flow__action {
    flex-basis: 100%;
    min-height: 44px;
    border-radius: 12px;
    font-size: 13px;
  }

  .mobile-flow__promo-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
  }

  .mobile-flow__subactions {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .mobile-flow__assist,
  .mobile-flow__subaction,
  .mobile-flow__more {
    font-size: 11.5px;
  }

  .mobile-flow__promo-title {
    font-size: 14px;
  }

  .mobile-flow__promo-text,
  .mobile-flow__notice-text {
    font-size: 12px;
  }

  .mobile-flow__title--compact {
    font-size: 17px;
  }

  .mobile-flow__notice-link {
    gap: 8px;
  }

  #footer {
    padding: 30px 0 calc(24px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-flow-footer__inner {
    padding: 0 14px;
  }

  .mobile-flow-footer__section {
    padding: 18px 0 15px;
  }

  .mobile-flow-footer__title {
    margin-bottom: 10px;
    font-size: 14.7px;
    line-height: 1.42;
  }

  .mobile-flow-footer__list .mobile-flow-footer__link {
    font-size: 12.75px;
    line-height: 1.56;
  }

  .mobile-flow-footer__policy {
    gap: 5px 12px;
    padding-top: 15px;
  }

  .mobile-flow-footer__policy .mobile-flow-footer__link {
    font-size: 11px;
  }

  .mobile-flow-footer__info {
    margin-top: 12px;
    font-size: 11.4px;
    line-height: 1.68;
  }

  .mobile-flow-footer__copyright {
    padding-top: 10px;
    font-size: 10.55px;
    line-height: 1.6;
    letter-spacing: 0.026em;
  }
}

/* 390px 이하 */
@media screen and (max-width: 390px) {
  .visual {
    padding: 18px 0 18px;
    background-position: center top, 52% 0;
  }

  .visual .visual-inner {
    padding: 0 12px;
  }

  .visual .visual_slogan {
    width: min(192px, 68vw);
  }

  .visual .visual_stage {
    min-height: 236px;
  }

  .visual .visual_stage__item--drink-03 {
    width: clamp(188px, 74vw, 216px);
    transform: translateX(3.5%);
  }

  .visual .visual_stage__item--drink-03 img {
    transform: scale(0.97);
  }

  .visual .hero-mobile-landing {
    width: min(262px, 100%);
    margin-top: 20px;
    padding: 9px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(30, 57, 50, 0.04);
  }

  .visual .hero-mobile-landing::before {
    width: 24px;
    margin-bottom: 6px;
  }

  .visual .hero-copy-mobile__text {
    max-width: 24ch;
    font-size: 11.5px;
    line-height: 1.42;
  }

  .visual .btn--hero-primary,
  .visual .btn--hero-secondary {
    padding: 0 12px;
    font-size: 11.5px;
    border-radius: 9px;
  }

  .visual .btn--hero-primary {
    min-height: 42px;
  }

  .visual .btn--hero-secondary {
    min-height: 38px;
  }

  .visual .hero-actions {
    gap: 4px;
  }

  .visual .hero-link {
    font-size: 10.25px;
  }

  .whats-new__title {
    font-size: 18px;
  }

  .whats-new .whats-new__slide.swiper-slide {
    width: calc(100vw - 96px);
  }

  .whats-new__card {
    border-radius: 18px;
  }

  .whats-new__body {
    padding: 15px 14px 16px;
  }

  .whats-new__body h3 {
    font-size: 16px;
  }

  .whats-new__pagination {
    min-width: 48px;
    font-size: 11.5px;
  }

  .mobile-flow__title {
    font-size: 18px;
  }

  .mobile-flow__item {
    padding: 7px 10px;
    font-size: 11px;
  }

  .mobile-flow__section--rewards .mobile-flow__item {
    padding: 5px 9px;
    font-size: 10.5px;
  }

  .mobile-flow__promo-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .mobile-flow__notice-text {
    font-size: 11.5px;
  }

  .mobile-flow-footer__inner {
    padding: 0 12px;
  }

  .mobile-flow-footer__section {
    padding: 17px 0 14px;
  }

  .mobile-flow-footer__title {
    margin-bottom: 9px;
    font-size: 14.15px;
    line-height: 1.42;
  }

  .mobile-flow-footer__list .mobile-flow-footer__link {
    font-size: 12.5px;
    line-height: 1.58;
  }

  .mobile-flow-footer__policy {
    gap: 5px 10px;
  }

  .mobile-flow-footer__policy .mobile-flow-footer__link {
    font-size: 10.75px;
  }

  .mobile-flow-footer__info {
    font-size: 11px;
    line-height: 1.64;
  }

  .mobile-flow-footer__copyright {
    font-size: 10.3px;
    line-height: 1.58;
    letter-spacing: 0.024em;
  }
}

/* 500px 이하 */
@media screen and (max-width: 500px) {
  header.is-nav-open .header-nav a:hover,
  header.is-nav-open .header-nav a:focus,
  header.is-nav-open .header-nav button:hover,
  header.is-nav-open .main-menu .item .item__contents .contents__menu > ul > li ul li:hover {
    text-decoration: none;
    text-underline-position: auto;
    text-underline-offset: 0;
  }

  header.is-nav-open .header-quick-link:hover {
    color: #1e3932;
    border-color: rgba(30, 57, 50, 0.1);
    box-shadow: 0 6px 14px rgba(30, 57, 50, 0.04);
  }

  header.is-nav-open .main-menu .item > .item__name:hover,
  header.is-nav-open .main-menu .item:hover > .item__name {
    color: #333;
    background-color: transparent;
    box-shadow: none;
  }

  header.is-nav-open .main-menu .item.is-open > .item__name:hover,
  header.is-nav-open .main-menu .item.is-open:hover > .item__name {
    color: #006241;
    background-color: transparent;
    box-shadow: inset 4px 0 0 #006241;
    font-weight: 700;
  }

  header.is-nav-open .main-menu .item .item__contents .contents__menu > ul > li ul li:hover,
  header.is-nav-open .main-menu .item .item__contents .contents__menu > ul > li ul li a:hover,
  header.is-nav-open .main-menu .item .item__contents .contents__menu > ul > li ul li a:focus {
    color: inherit;
    text-decoration: none;
  }

  header.is-nav-open .header-quick-link:active,
  header.is-nav-open .header-quick-link:focus-visible,
  header.is-nav-open .main-menu .item .item__contents .contents__menu > ul > li ul li a:active,
  header.is-nav-open .main-menu .item .item__contents .contents__menu > ul > li ul li a:focus-visible,
  header.is-nav-open .sub-menu .search .search__clear:active,
  header.is-nav-open .sub-menu .search .search__clear:focus-visible {
    color: #006241;
  }

  header.is-nav-open .sub-menu .search .search__clear:hover {
    background-color: transparent;
    color: #666;
  }
}

/* 350px 이하 */
@media screen and (max-width: 350px) {
  header .header-nav {
    padding: 18px 12px 0;
    scroll-padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }

  header .header-nav__top {
    gap: 14px;
    padding-bottom: 14px;
  }

  header .header-nav__actions {
    gap: 8px;
    margin: 8px -12px 0;
    padding: 16px 12px calc(14px + env(safe-area-inset-bottom, 0px));
  }

  header .header-nav__close-action {
    width: min(100%, 280px);
    min-height: 44px;
    padding: 0 16px;
    font-size: 12.5px;
    border-radius: 11px;
  }

  header .main-menu {
    padding-top: 14px;
  }

  header.is-nav-actions-visible .main-menu {
    padding-bottom: 14px;
  }

  header .main-menu .item > .item__name {
    padding: 15px 24px 15px 12px;
    font-size: 13.5px;
  }

  header .main-menu .item.is-open .item__contents .contents__menu {
    padding: 10px 12px 10px;
    border-radius: 0;
  }

  header .main-menu .item .item__contents .contents__menu > ul {
    gap: 14px;
    padding: 2px 0 16px;
  }

  .visual {
    padding: 8px 0 16px;
    background-position: center top, 50% 0;
  }

  .visual .visual-inner {
    padding: 0 10px;
  }

  .visual .visual_slogan {
    width: min(178px, 66vw);
  }

  .visual .visual_stage {
    min-height: 220px;
  }

  .visual .visual_stage__item--drink-03 {
    width: clamp(178px, 76vw, 204px);
    transform: translateX(3%);
  }

  .visual .visual_stage__item--drink-03 img {
    transform: scale(0.96);
  }

  .visual .hero-mobile-landing {
    width: min(238px, 100%);
    margin-top: 9px;
    border-radius: 11px;
    box-shadow: none;
  }

  .visual .hero-mobile-landing::before {
    display: none;
  }

  .visual .hero-copy-mobile {
    margin-bottom: 7px;
  }

  .visual .hero-copy-mobile__text {
    max-width: 17ch;
    font-size: 10.25px;
    line-height: 1.4;
  }

  .visual .btn--hero-primary,
  .visual .btn--hero-secondary {
    padding: 0 10px;
    font-size: 11px;
    border-radius: 8px;
  }

  .visual .btn--hero-primary {
    min-height: 40px;
  }

  .visual .btn--hero-secondary {
    min-height: 38px;
  }

  .visual .hero-link {
    font-size: 10px;
  }

  .whats-new {
    padding: 40px 0 40px;
  }

  .whats-new .whats-new__slide.swiper-slide {
    width: calc(100vw - 88px);
  }

  .whats-new__body h3 {
    font-size: 15px;
  }

  .whats-new__body p {
    font-size: 11px;
    line-height: 1.5;
  }

  .whats-new__pagination {
    padding: 5px 9px;
  }

  #footer {
    padding: 28px 0 calc(22px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-flow-footer__inner {
    padding: 0 10px;
  }

  .mobile-flow-footer__title {
    margin-bottom: 8px;
    font-size: 13.2px;
    line-height: 1.4;
  }

  .mobile-flow-footer__list .mobile-flow-footer__link {
    font-size: 11.75px;
    line-height: 1.54;
  }

  .mobile-flow-footer__policy .mobile-flow-footer__link {
    font-size: 10.5px;
  }

  .mobile-flow-footer__info {
    font-size: 10.8px;
    line-height: 1.62;
  }

  .mobile-flow-footer__copyright {
    font-size: 10.1px;
    line-height: 1.56;
    letter-spacing: 0.022em;
  }
}
