@charset "utf-8";
@import url('font.css');

:root {
    --engFont: 'Pretendard', 'Noto Sans KR', sans-serif;
    --koFont: 'Pretendard', 'Noto Sans KR', sans-serif;
    --mainColor: #d91226;
    --goldColor: #C6A56C;
    --borderR: 20px;

    --number-cards: 3;      /* 카드 개수 */
    --width-close: 140px;   /* 접혀 있을 때 너비 */
    --item-height: 550px;   /* 섹션 높이 = 배경 높이 */
    --space-l: 0;           /* 카드 안 패딩 큰 쪽 */
    --space-m: 40px;        /* 카드 안 패딩 작은 쪽 */
}

/* 초기화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    display: block;
    max-width: 100%;
}

/* 공통 클래스 */
body {
    font-family: 'Pretendard', sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 25px;
}

/* ===== Quick Menu ===== */
#quick {
    position: fixed;
    right: 60px;
    bottom: 10%;
    z-index: 99999;
    text-align: center;
    background: var(--mainColor);
    overflow: hidden;
    border-radius: var(--borderR);
    padding: 26px 10px;
}

#quick ul li {
    padding: 0 0 20px;
}
#quick ul li:hover {
    transform: scale(1.1);
    transition: all .3s linear;
}

#quick ul li:last-child {
    padding: 0;
}

#quick ul li a {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
    transition: all .2s linear;
}

#quick ul li a span {
    display: block;
    margin: 0 auto 8px;
    transition: all .3s linear;
}

#quick ul li.service a span {
    width: 40px;
    height: 40px;
    background: url(../images/service.png) no-repeat center;
    background-size: contain;
}

#quick ul li.membership a span {
    width: 40px;
    height: 40px;
    background: url(../images/membership.png) no-repeat center;
    background-size: contain;

}

#quick ul li.shop a span {
    width: 40px;
    height: 40px;
    background: url(../images/shop.png) no-repeat center;
    background-size: contain;

}

#quick ul li.establish a span {
    width: 45px;
    height: 40px;
    background: url(../images/establish.png) no-repeat center;
    background-size: contain;
}

#quick ul li.coffeecar a span {
    width: 40px;
    height: 40px;
    background: url(../images/coffeecar.png) no-repeat center;
    background-size: contain;
}

/* ------------------------------------------------------------------------ */
/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    transition: box-shadow .3s ease;
}

/* 스크롤 내려갔을 때 섀도우 */
.header.fixed,
.header.scrolled {
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
}

/* 메뉴 내려왔을 때 살짝 더 붉은 섀도우 */
.header.down {
    box-shadow: 0 0 20px rgba(217, 18, 38, .15);
}

/* Header 내부 래퍼 */
.header > .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;   /* submenu-bg 기준 */
}

/* gnb : 로고 + nav(유틸, 메인메뉴) */
.header .gnb {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px 0 18px;
}

/* 로고 */
.header .gnb .logo {
    flex-shrink: 0;
}
.header .gnb .logo a {
    display: block;
    width: 110px;
}
.header .gnb .logo img {
    display: block;
    width: 100%;
}

/* nav 안: 위에 util, 아래 mainMenu */
.header .gnb nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* === util 영역 === */
.header .util {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 14px;
}

.header .util-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header .util-link li a {
    font-size: 13px;
    color: #666;
    transition: color .2s;
}

.header .util-link li a:hover {
    color: var(--mainColor);
}

.header .util-link li.login {
    position: relative;
    padding-right: 12px;
}

.header .util-link li.login::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background: #ddd;
}

.header .util-link li.language-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 26px;
    padding: 0 14px;
    background: var(--mainColor);
    color: #fff;
    border-radius: 13px;
    font-weight: 600;
    font-size: 13px;
}

/* === Main Menu === */
.header .gnb nav .mainMenu {
    display: flex;
    align-items: center;
}

.header .gnb nav .mainMenu > li {
    position: relative;   /* 각 submenu 기준점 */
}

.header .gnb nav .mainMenu > li > a {
    font-size: 19px;
    font-weight: 600;
    color: #111;
    display: block;
    padding: 25px 32px 0;
    white-space: nowrap;
    transition: color .2s;
    position: relative;
}
.header .gnb nav .mainMenu > li:last-child > a {
    padding-right: 0;
}

.header .gnb nav .mainMenu > li > a:hover,
.header .gnb nav .mainMenu > li > a:focus {
    color: var(--mainColor);
}

/* === 서브메뉴 빨간 배경 박스 === */
.submenu-bg {
    position: absolute;
    top: 100%;    /* 흰 헤더 바로 아래에서 나오도록 */
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;      /* 뷰포트 전체 너비로... */
    background: var(--mainColor);
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
    pointer-events: none;
}

.header.down .submenu-bg {
    height: 320px;  
    pointer-events: auto;
}

/* === 각 서브메뉴 === */
.header .gnb nav .mainMenu > li .submenu-panel {
    position: absolute;
    top: calc(100% + 24px);      /* 메인메뉴 아래 여백 */
    left: 0;
    padding: 15px 0 0 22px;
    /* transform: translateX(-50%); */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 10;       /* 빨간 배경 위에 표시 */
}

/* header.down 상태에서 모든 항목 동시에 보이기 */
.header.down .gnb nav .mainMenu > li .submenu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* 서브메뉴 텍스트 스타일 */
.header .gnb nav .mainMenu > li .submenu-panel ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.header .gnb nav .mainMenu > li .submenu-panel li {
    /* text-align: center; */
}
.header .gnb nav .mainMenu > li .submenu-panel li a {
    font-size: 15px;
    color: #fff;
    display: inline-block;
    line-height: 1.5;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 6px;    
}

.header .gnb nav .mainMenu > li .submenu-panel li a:hover {
    color: #222;
    font-weight: 600;
    background: #fff;
    padding: 5px 10px;
    border-radius: 999px;
}

/* menuBtn (모바일용) */
.header .menuBtn {
    display: none;
}


/* --------------------------------------------------------------------------- */

/* ===== Main ===== */
/* Visual */
.visual {
    margin-top: 130px;
    width: 100%;
    position: relative;
}

.visual .sw-mainbanner {
    width: 100%;
}

.visual .sw-mainbanner .swiper-slide .banner-pc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.visual .sw-mainbanner .swiper-pagination {
    z-index: 999;
    position: absolute;
    top: 93%;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    bottom: auto; /* 기존 값을 없애기 */
    /* display: flex;
    align-items: center;
    gap: 15px; */
}
.visual .sw-mainbanner .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 15px 0 0;
    opacity: 1;
    display: inline-block;
    vertical-align: middle;
    /* transition: all 1s linear; */
}
.visual .sw-mainbanner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin: 0;
}
.visual .sw-mainbanner .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: url(../images/pagination-star.png) no-repeat center center;
    background-size: contain;
    width: 18px;
    height: 18px;
    position: relative;
    top: -1px;
}

/* --- Best Menu --- */
.BestMenu {
    padding: 80px 0 100px;
}

.BestMenu h2 {
    font-family: var(--koFont);
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.BestMenu h2::before,
.BestMenu h2::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mainColor);
    flex-shrink: 0;
}

/* 탭 버튼 */
.BestMenu .menu-tab-btns {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.BestMenu .menu-tab-btns ul {
    display: flex;
    gap: 2px;
    max-width: 610px;
    padding: 4px;
    border-radius: 999px;
    border: 2px solid var(--mainColor);
    background-color: #fff;
}
.BestMenu .menu-tab-btns li {}
.BestMenu .menu-tab-btns li a {
    display: block;
    padding: 8px 20px;
    font-size: 15px;
    border-radius: 999px;
    color: #333;
    white-space: nowrap;
    transition: all .3s;
}
.BestMenu .menu-tab-btns li a:hover,
.BestMenu .menu-tab-btns li a.active {
    background-color: var(--mainColor);
    color: #fff;
}

/* 탭 패널 공통 */
.BestMenu .menu-panel {
    display: none;
}
.BestMenu .menu-panel.active {
    display: block;
}

/* 슬라이더 전체 래퍼(버튼 포함) */
.BestMenu .carousel-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 80px; /* 좌우 버튼 자리 + 3D 여유 공간 */
}

/* 실제 슬라이더 */
.BestMenu .carousel-wrap .swiper {
    width: 100%;
    padding: 20px 0 30px;
    perspective: 1200px; /* 3D 느낌 */
}

/* 공통 슬라이드 카드 */
.BestMenu .carousel-wrap .swiper-slide {
    width: 200px;             
    height: 430px;
    padding: 20px 18px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 16px rgba(217,18,38,.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    transform-origin: center;
    transition: transform .45s ease, opacity .45s ease, box-shadow .45s ease;
    opacity: .35; 
}

/* ========== 카드 Hover 효과 ========== */
.BestMenu .carousel-wrap .swiper-slide:hover {
    transform: translateZ(30px) scale(1.03);
    box-shadow: 0 25px 55px rgba(217,18,38,.1);
    opacity: 1;
}
.BestMenu .carousel-wrap .swiper-slide img {
    width: 100%;
    object-fit: contain;
    border-radius: 18px;
    margin-bottom: 18px;
    transition: inherit;
}
.BestMenu .carousel-wrap .swiper-slide h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.4;
}
.BestMenu .carousel-wrap .swiper-slide p {
    font-size: 14px;
    color: #666;
    line-height: 1.3;
}

/* 가운데 카드 강조 */
.BestMenu .carousel-wrap .swiper-slide-active {
    opacity: 1;
    transform: translateZ(30px) scale(1.03);
    box-shadow: 0 18px 22px rgba(217,18,38,.1);
}
.BestMenu .carousel-wrap .swiper-slide-active img {}

/* 양 옆 카드 살짝 강조 */
.BestMenu .carousel-wrap .swiper-slide-prev,
.BestMenu .carousel-wrap .swiper-slide-next {
    opacity: .7;
    transform: translateZ(30px) scale(0.95);
}

/* 화살표 버튼 (BestMenu 전용) */
.BestMenu .carousel-wrap .swiper-button-prev,
.BestMenu .carousel-wrap .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mainColor);
    cursor: pointer;
}
.BestMenu .carousel-wrap .swiper-button-prev::after,
.BestMenu .carousel-wrap .swiper-button-next::after {
    font-size: 20px;
}

/* 좌우 위치 */
.BestMenu .carousel-wrap .swiper-button-prev {
    left: 20px;
}
.BestMenu .carousel-wrap .swiper-button-next {
    right: 20px;
}

/* ----------------------------------------------------------- */

/* About HOLLYS */
.AboutHOLLYS {
    font-family: var(--koFont);
    position: relative;
    color: #fff;
    padding: 0 0 70px;
}

.AboutHOLLYS h2 {
    color: black;
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.AboutHOLLYS h2::before,
.AboutHOLLYS h2::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mainColor);
    flex-shrink: 0;
}

.AboutHOLLYS .About-main-bg {
    /* 기본 배경 */
    background: url('../images/About0.png') no-repeat center/cover;
    transition: background-image 0.4s ease;

    width: 100%;
    height: 550px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

/* 살짝 어둡게 만드는 오버레이(옵션) */
.AboutHOLLYS .About-main-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* 실제 카드 컨테이너 */
.About-container {
    position: relative;
    z-index: 1;            /* 오버레이 위로 올라오게 */
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.About-item {
  position: relative;
  height: 100%;
  padding: var(--space-l) var(--space-m) 3rem;
  border-right: 1px solid rgba(255, 255, 255, .2);

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  /* 기본은 접혀 있는 너비 */
  width: var(--width-close);
  transition: width 0.4s ease;
}

.About-item:first-child {
    border-left: 1px solid rgba(255, 255, 255, .2);
}

/* 처음 로드 시 0번 카드 펼쳐진 상태 */
.About-item:first-child {
  width: calc(100% - var(--width-close) * (var(--number-cards) - 1));
}

/* 마우스를 올린 카드만 크게 펼쳐지게 */
.About-item:hover {
  width: calc(100% - var(--width-close) * (var(--number-cards) - 1));
}

/* 컨테이너 안에서 다른 카드에 hover 되면 0번은 다시 접힘 */
.About-container:hover .About-item:first-child:not(:hover) {
  width: var(--width-close);
}

/* 카드 개별 백그라운드 div는 안 쓰니까 숨김 */
.About-item .About-item-bg { display: none; }


/* 숫자 (0,1,2) */
.About-item .About-number {
  position: absolute;
  top: 2rem;
  /* left: 1.5rem; */
  font-size: 5.5rem;    
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

/* 온점(.) 추가 */
.About-item .About-number::after {
  content: '.';             
  display: inline-block;
  margin-left: 0.05em;      /* 숫자와 점 사이 간격 */
  opacity: 0;               /* 기본은 안 보이게 */
  transform: translateX(-0.2em);
  transition: opacity .2s ease, transform .2s ease;
}

/* 펼쳐진 카드에서만 온점 보여주기 */
.About-item:first-child .About-number::after,
.About-item:hover .About-number::after {
  opacity: 1;
  transform: translateX(0);
}

/* 0번의 점을 다시 숨기기 */
.About-container:hover .About-item:first-child:not(:hover) .About-number::after {
  opacity: 0;
  transform: translateX(-0.2em);
}

/* 펼쳐진 카드(처음 0번 + 호버된 카드)는 숫자 진하게 */
.About-item:first-child .About-number,
.About-item:hover .About-number {
  color: rgba(255, 255, 255, 1);
}

/* 컨테이너에 마우스 들어갔을 때, 0번에 hover 안 되어 있으면 다시 흐리게 */
.About-container:hover .About-item:first-child:not(:hover) .About-number {
  color: rgba(255, 255, 255, 0.4);
}

/* 카드 안 텍스트 */
.About-item .About-card {
  height: 100%;
  padding: 20px 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

/* 펼쳐진 카드의 텍스트만 보이게 */
.About-item:first-child .About-card,
.About-item:hover .About-card {
  opacity: 1;
  visibility: visible;
}

.About-container:hover .About-item:first-child:not(:hover) .About-card {
  opacity: 0;
}

/* 제목/본문 스타일 */
.About-item .About-card .About-title-1 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.About-item .About-card .About-title-2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.About-item .About-card .About-desc {
  color: #fff;
  font-size: 17px;
  font-weight: 300;
  margin-top: 20px;
  line-height: 1.6;
}

.About-item .About-card .About-desc #bold1 {
  display: inline;
  margin-right: 2px;
  font-size: 25px;
  font-weight: 700;
}
.About-item .About-card .About-desc #line1 {
    display: inline;
    margin-right: 2px;
    font-size: 21px;
    font-weight: 400;
    border-bottom: 1px solid #eee;
}


/* 섹션 전체 배경을 hover된 카드에 맞게 변경 */
.About-main-bg:has(.About-item:nth-child(1):hover) {
  background: url('../images/About0.png') no-repeat center/cover;
}
.About-main-bg:has(.About-item:nth-child(2):hover) {
  background: url('../images/About1.png') no-repeat center/cover;
}
.About-main-bg:has(.About-item:nth-child(3):hover) {
  background: url('../images/About2.png') no-repeat center/cover;
}

/* ------------------------------------------------------------------------ */

/* Customer Benefits */
section.CustomerBenefits {
  padding: 100px 0 80px;
}

.CustomerBenefits h2 {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* 타이틀 양쪽 red dot */
.CustomerBenefits h2::before,
.CustomerBenefits h2::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mainColor);
}

/* ===== 폴더 카드 전체 ===== */
.benefits-cards {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 550px; /* 폴더 PNG 비율에 맞춰 필요하면 조절 */
}

/* CARD 탭 활성화 시: 앞/뒤 교환 */
.benefits-cards.is-card .benefit-card.membership {
  z-index: 1;
  transform: translateX(-54%) translateY(26px);
  opacity: .9;
}
.benefits-cards.is-card .benefit-card.hollys-card {
  z-index: 2;
  transform: translateX(-52.5%) translateY(8px);
  opacity: 1;
}

/* ===== 폴더 인덱스 탭 버튼 (위쪽 삐져나온 폴더 탭 부분) ===== */
.folder-tab {
  position: absolute;
  top: 0;
  height: 72px; /* 폴더 탭 높이에 맞게 조절 */
  padding: 0 40px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  z-index: 10; /* 카드보다 위에 있어야 클릭됨 */

  /* left: 50%; */
  /* transform: translateX(-50%); */
  /* transition: transform .35s ease, opacity .25s ease; */
  top: 25px;
  transition: opacity .25s ease, opacity .25s ease;

}

/* 왼쪽 MEMBESHIP / 오른쪽 CARD 탭 위치 */
.tab-membership {
  /* top: 25px; */
  left: 65px;
  text-align: left;
}
.tab-card {
  /* top: 32px; */
  right: 78px;
  text-align: right;
}

/* 기본: membership이 앞 (is-membership) */
.benefits-cards.is-membership .tab-membership {
  top: 22px;   /* 앞 탭: 살짝 위 */
  opacity: 1;
}
.benefits-cards.is-membership .tab-card {
  top: 42px;   /* 뒤 탭: 살짝 아래 */
  opacity: .6; /* 비활성 흐림 */
}

/* CARD가 앞일 때 (is-card) */
.benefits-cards.is-card .tab-card {
  top: 40px;   /* 앞 탭: 위 */
  right: 118px;
  opacity: 1;
}
.benefits-cards.is-card .tab-membership {
  top: 50px;   /* 뒤 탭: 아래 */
  left: 16px;
  opacity: .6;
}

/* ==================== */
/* 각 폴더 카드 공통 (폴더 이미지 위에 내용 얹는 용) */
.benefit-card {
  position: absolute;
  left: 50%;
  top: 40px; /* 위쪽 탭 아래 여백 */
  transform: translateX(-50%) translateY(18px); /* 기본: 뒤에 살짝 깔린 느낌 */
  max-width: 1100px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  transition: transform .35s ease, z-index .35s ease, opacity .35s ease;
  opacity: .9;
}

/* 빨간 폴더 (MEMBERSHIP) – 기본으로 앞에 있음 */
.benefit-card.membership {
  background-image: url('../images/folder-red.png');
  z-index: 2;
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.benefit-card.membership .card-content {
  width: 100%;
  height: 100%;
  padding: 110px 80px 60px;
  color: #333;
}

/* Red :: 좌/우로 나누기 */
.benefit-card.membership .card-content .red-box {
  display: flex;
  width: 100%;
}

/* Red – 좌측 비율 */
.benefit-card.membership .card-content .red-left-box {
  width: 34%;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.benefit-card.membership .card-content .red-left-box .gauge {
  width: 100%;
  height: 180px;
  margin-bottom: 10px;
  background: url('../images/gauge.png') no-repeat center/contain;
  position: relative;
}
.benefit-card.membership .card-content .red-left-box .gauge img.crown {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
  z-index: 2;
}
.red-left-box .gauge .gauge-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.red-left-box .gauge .gauge-ring .ring-track {
  fill: none;
  stroke: rgba(0,0,0,.01);
  stroke-width: 5;
}
.red-left-box .gauge .gauge-ring .ring-progress {
  fill: none;
  stroke: #bbb; /* 기본값 */
  stroke-width: 5;
  stroke-linecap: round;

  transform: rotate(-225deg);
  transform-origin: 60px 60px;

  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  transition: stroke .2s ease;
}
.red-left-box .gauge .gauge-count {
  position: absolute;
  left: 50%;
  bottom: 3px;
  transform: translateX(-50%) scale(1);
  transform-origin: center;
  font-weight: 700;
  font-size: 14px;
  color: #777;
  z-index: 3;
}
.red-left-box .gauge .gauge-lever {
  background: url('images/gauge-lever.png') no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  z-index: 3;
  pointer-events: none;
}

.red-left-box .gauge:hover img.crown {
  transform: translate(-50%, -50%) scale(1.03);
}

.benefit-card.membership .card-content .red-left-box .card-desc {
  text-align: right;
  margin: 20px 40px 15px;
}
.benefit-card.membership .card-content .red-left-box .card-buttons {
  display: flex;
  justify-content: right;
  margin: 0 40px;
}
.benefit-card.membership .card-content .red-left-box .card-buttons .btn-more {
  color: #fff;
  background: var(--goldColor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .8px;
  transition: .25s ease;
}
.benefit-card.membership .card-content .red-left-box .card-buttons .btn-more:hover {
  background: #fff;
  border: 1px solid var(--goldColor);
  color: var(--goldColor);
}

/* Red :: 가름 선 */
.benefit-card.membership .card-content .red-left-box .line {
  border: 1px solid var(--goldColor);
  opacity: 0.7;
  width: 1px;
  height: 300px;
  position: absolute;
  top: 3px;
  left: 280px;
  bottom: 3%;
}

/* Red :: 우측 비율 */
.benefit-card.membership .card-content .red-right-box {
  width: 66%;
}

.benefit-card.membership .card-content .red-right-box .card-title {
  font-size: 24px;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 20px;
  /* line-height: 1.4; */
}

.benefit-card.membership .card-content .red-right-box .card-title .CROWN {
  color: var(--mainColor);
  font-size: 32px;
  font-weight: 800;
}

.benefit-card.membership .card-content .red-right-box .benefit-list {
  margin-bottom: 24px;
}
.benefit-card.membership .card-content .red-right-box .benefit-list li {
  font-size: 15px;
  line-height: 1.7;
}
.benefit-card.membership .card-content .red-right-box .benefit-list li strong {
  font-weight: 700;
}
.benefit-card.membership .card-content .red-right-box .benefit-list li .bold2 {
  font-weight: 700;
}

.benefit-card.membership .card-content .red-right-box .card-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.benefit-card.membership .card-content .red-right-box .card-buttons .btn-join {
  background: var(--mainColor);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .8px;
  transition: .25s ease;
}

.benefit-card.membership .card-content .red-right-box .card-buttons .btn-join:hover {
  background: #fff;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
}

.benefit-card.membership .card-content .red-right-box .card-buttons .btn-login {
  background: var(--mainColor);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .8px;
  transition: .25s ease;
}

.benefit-card.membership .card-content .red-right-box .card-buttons .btn-login:hover {
  background: #fff;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
}

/* ======================================= */
/* 검은 폴더 (CARD) – 기본으로 뒤에 살짝 보이게 */
.benefit-card.hollys-card {
  background-image: url('../images/folder-black.png');
  z-index: 1;
  transform: translateX(-48.5%) translateY(13px); /* 오른쪽+아래로 살짝 밀어두기 */
  opacity: .9;
}

/* ===== black :: 카드 안 레이아웃 ===== */
.benefit-card.hollys-card .card-content {
  width: 100%;
  height: 100%;
  padding: 110px 80px 60px;
  color: #333;
}

/* Black :: 좌/우로 나누기 */
.benefit-card.hollys-card .card-content .black-box {
  display: flex;
  width: 100%;
}
.benefit-card.hollys-card .card-content .black-box {}

/* Black :: 좌측 비율 */
.benefit-card.hollys-card .card-content .black-left-box {
  width: 30%;
  /* padding-right: 40px; */
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  position: relative; /* line 기준점 */
}
/* Black :: 모바일 카드 */
.benefit-card.hollys-card .card-content .black-left-box .m-card {
  background: url('../images/hollyscard1.png') no-repeat center;
  background-size: contain;
  width: 100%;
  height: 140px;
  border-radius: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.benefit-card.hollys-card .card-content .black-left-box .card-desc {
  text-align: right;
  margin-right: 45px;
  margin-bottom: 10px;
  /* margin: 20px 120px 15px 0; */
  font-size: 16px;
  line-height: 1.6;
}
.benefit-card.hollys-card .card-content .black-left-box .card-buttons {
  display: flex;
  justify-content: right;
  margin-right: 45px;
}
.benefit-card.hollys-card .card-content .black-left-box .card-buttons .btn-more {
  color: #fff;
  background: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .8px;
  transition: .25s ease;
}

.benefit-card.hollys-card .card-content .black-left-box .card-buttons .btn-more:hover {
  background: #fff;
  border: 1px solid #333;
  color: #333;
}

.benefit-card.hollys-card .card-content .line {
  border: 1px solid var(--mainColor);
  opacity: 0.7;
  width: 1px;
  height: 300px;
  top: 8px;
  left: 86%;
  bottom: 3%;
}

/* Black :: 우측 비율 */
.benefit-card.hollys-card .card-content .black-right-box {
  width: 65%;
  display: flex;
  justify-content: space-between;
  margin-left: 35px;
}

.benefit-card.hollys-card .card-content .black-right-box .card-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 24px;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 20px;
  /* line-height: 1.4; */
}

.benefit-card.hollys-card .card-content .black-right-box .card-text strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-card.hollys-card .card-content .black-right-box .card-text span {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.benefit-card.hollys-card .card-content .black-right-box .card-text img {
  width: 210px;
  margin-left: 165px;
  /* padding: 20px; */
}

.benefit-card.hollys-card .card-content .black-right-box .app-card {
  background: url('../images/hollyscard.png') no-repeat center;
  background-size: contain;
  width: 250px;
  height: 200px;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* 장애인 스크린리더용 숨김 텍스트(웹표준...?) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ---------------------------------------------------------------------- */

/* Event & Store */
.event-store-wrap {
    display: flex;
    width: 100%;
    gap: 90px;
    padding: 100px 0;
}

.event-store-wrap .Event {
  width: 40%;
  position: relative;
}
.event-store-wrap .Event h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  /* position: absolute; */
  /* top: -50px; */

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.event-store-wrap .Event h2::before,
.event-store-wrap .Event h2::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mainColor);
}

.event-store-wrap .Event .event-banner {
  position: relative;
}
.event-store-wrap .Event .event-banner .event-swiper {}
.event-store-wrap .Event .event-banner .event-swiper .swiper-wrapper {}
.event-store-wrap .Event .event-banner .event-swiper .swiper-wrapper .swiper-slide {}
.event-store-wrap .Event .event-banner .event-swiper .swiper-wrapper .swiper-slide img {}


.event-store-wrap .Event .event-banner .event-swiper .event-pagination
.swiper-pagination-progressbar-fill {
    background: var(--mainColor);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0);
    transform-origin: left top;
    width: 100%;
}

.event-store-wrap .Event .event-banner .event-swiper .event-prev,
.event-store-wrap .Event .event-banner .event-swiper .event-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 999;
}

/* ======================== */
.event-store-wrap .Store {
  width: 60%;
  position: relative;
}

.event-store-wrap .Store h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  /* position: absolute; */
  /* top: -50px; */

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.event-store-wrap .Store h2::before,
.event-store-wrap .Store h2::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mainColor);
}

.event-store-wrap .Store .store-finder {
  position: relative;
  margin-top: 40px;
  width: 100%;
  height: 600px;
  background: var(--mainColor);
  padding: 40px;
  border-radius: 24px;
  /* text-align: center; */
}
.event-store-wrap .Store .store-finder .store-bg {
  position: absolute;
  top: -15px;
  left: -15px;
  background: #fff;
  border-radius: 24px;
  border: 2px solid var(--mainColor);
  width: 600px;
  height: 600px;
  padding: 30px 40px 30px;
  display: flex;
  flex-direction: column;
}

.event-store-wrap .Store .store-finder .store-bg::after {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -10px;
  height: 8px;
  border-radius: 0 0 24px 24px;
  background: var(--mainColor);
  opacity: .3;
  z-index: -1;
}

/* 카드 상단 검색 영역 */
.event-store-wrap .Store .store-search {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.event-store-wrap .Store .store-search input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 15px;
  font-size: 14px;
}

.event-store-wrap .Store .store-search button {
  padding: 12px 30px;
  background: var(--mainColor);
  color: #fff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 500;
  transition: .3s;
}

.event-store-wrap .Store .store-search button:hover {
  background: #fff;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
}

/* 지도 + 말풍선 한 줄로 */
.event-store-wrap .Store .store-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ========== 왼쪽 지도 영역 ========== */
.store-map-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-relative {
  position: relative;
  /* basemap 원본 크기 */
  /* width: 326px; 
  height: 551px; */
  /* 원본(326px)보다 커지진 않되, 화면이 줄면 같이 줄어듦 */
  width: min(326px, 100%);
  /* 원본비율유지 */
  aspect-ratio: 326/551;
}

.map-image {
  display: block;
  /* width: 326px;
  height: 551px; */
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-size: 13px;
}

.pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
  transform: translate(-50%, -100%);
  color: #333;
  font-weight: 500;
  pointer-events: none;
}

/* 공통 핀 아이콘: 검은 핀(map-black.png) */
.pin-dot {
  width: 18px;
  height: 26px;
  background: url("../images/map-source/map-black.png") no-repeat center/contain;
  transition: 0.18s;
}

.pin-label {
  white-space: nowrap;
  font-size: 13px;
}

/* 서울 텍스트는 이미지로 교체 */
/* .pin-seoul .pin-label {
  width: 69px;
  height: 38px;
  background: url("서울 hover.png") no-repeat left center / contain;
  font-size: 0;
} */

/* ✅ 지역 hover 시 → 빨간 핀 */
.pin.hover .pin-dot {
  background-image: url("../images/map-source/map-red.png");
  transform: translateY(-3px); /* 살짝 튀는 효과 (선택) */
}

/* ✅ 클릭해서 선택(active)된 지역도 빨간 핀 유지 */
.pin.active .pin-dot {
  background-image: url("../images/map-source/map-red.png");
  transform: translateY(-3px);
}

.pin.active,
.pin.hover {
  color: #c8102e;
  font-weight: 700;
}

/* ====== 서울 / 경기 / 인천 라벨 겹침 방지 ====== */

/* 서울: 약간 위쪽에 고정 */
.pin-seoul {
  transform: translate(-20%, -80%);
}

/* 경기: 아이콘 위에, 텍스트를 "아래"로 내려서 서울과 안 겹치게 */
.pin-gyonggi {
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, 20%);
}

/* 인천: 텍스트를 왼쪽으로 빼서 서울/경기와 간격 */
.pin-incheon {
  flex-direction: row-reverse;
  transform: translate(-80%, -70%);
}

/* 다른 지역은 기본 transform 사용 (필요하면 나중에 조정 가능) */



/* ---------------------------------- */

.balloon-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #333;
}

.balloon-title span {
  color: #c8102e;
}


.balloon-footer {
  font-size: 14px;
  color: #555;
  padding-top: 10px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 말풍선 전체 박스 */
.event-store-wrap .Store .store-option {
  width: 260px;
  height: 400px;
}

/* 말풍선 배경 + 안쪽 리스트 */
.event-store-wrap .Store .option-select {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px 26px 50px;
}

/* 말풍선 배경 이미지 */
.event-store-wrap .Store .option-select .option-bg {
  position: absolute;
  inset: 0;
  background: url('../images/map-source/balloon-2.png') no-repeat 0 0;
  background-size: 100% 80%;
  /* z-index: -1; */
}

/* 옵션 리스트 세로 정렬 */
.event-store-wrap .Store .option-select ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-store-wrap .Store .option-select li {
  font-size: 13px;
  line-height: 1.4;
}

/* 옵션 리스트 세로 정렬 */
.event-store-wrap .Store .option-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 한 줄(아이템) */
.event-store-wrap .Store .option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
}

/* 실제 체크박스는 눈에 안 보이게 숨기기 */
.event-store-wrap .Store .option-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* 아이콘 + 텍스트 묶음 */
.event-store-wrap .Store .opt-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-store-wrap .Store .opt-left img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.event-store-wrap .Store .opt-text {
  color: #555;
}

/* 오른쪽 체크 박스 모양 */
.event-store-wrap .Store .opt-check {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  box-sizing: border-box;
}

/* ===== 체크됐을 때 상태 ===== */

/* 글자 색 빨간색 */
.event-store-wrap .Store .option-item input:checked + .opt-left .opt-text {
  color: var(--mainColor);
  font-weight: 600;
}

/* 체크 박스는 빨간 사각형처럼 */
.event-store-wrap .Store .option-item input:checked + .opt-left + .opt-check {
  background: var(--mainColor);
  border-color: var(--mainColor);
}

.event-store-wrap .Store .option-select ul::after {
  content: '';
  border-bottom: 1px dashed var(--mainColor);
  margin-top: 25px;

}


/* ------------------ */

.event-store-wrap .Store .store-info {
  position: absolute;
  top: 450px;
  left: 300px;
  font-size: 20px;
  /* display: inline; */
  /* text-align: right; */
  margin-top: 28px;
  line-height: 1.2;
  font-weight: 500;
}

.event-store-wrap .Store .btn-store {
  position: absolute;
  top: 525px;
  left: 300px;
  display: inline-block;
  width: 150px;
  margin-top: 12px;
  padding: 12px 20px;
  text-align: center;
  background: var(--mainColor);
  color: #fff;
  border-radius: 15px;
  font-weight: 500;
  transition: .3s;
  z-index: 2;
}

.event-store-wrap .Store .btn-store:hover {
  background: #fff;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
}

.store-bg .dot-line {
  position: absolute;
  width: 150px;
  top: 410px;
  left: 400px;
}



/* ---------------------------------------------- */
/* Footer */
.footer {
  background: #2c2c2c;
  color: #999;
  padding: 50px 0;
}

.footer-links {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  font-size: 14px;
  transition: .2s;
}

.footer-links a:hover {
  color: var(--mainColor);
}

.footer-info {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.copyright {
  font-size: 12px;
  color: #777;
}