@font-face {
    font-family: 'SUIT-Light';
    src: url('/fonts/SUIT-Light-896368ead574e08e51e5130917cee169.woff2') format('woff2'),
         url('/fonts/SUIT-Light-2185e45eb4f33131c2b92d63f16042f0.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SUIT-Regular';
    src: url('/fonts/SUIT-Regular-57489946ef78a091ebfdc4f5d203bfa3.woff2') format('woff2'),
         url('/fonts/SUIT-Regular-8bae3ed6724cbc8b2803c1d6868c6f9c.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* 메인 페이지: 고정 장바구니가 오버레이 스크롤바를 가리는 문제 방지 */
html {
  overflow-y: scroll;
}

/* 메인 페이지 전용: 고정 장바구니를 위한 콘텐츠/헤더/푸터 너비 보정 (JS 동적 계산) */
@media (max-width: 1024px) {
  .derma-layout .main-content { width: 100% !important; }
  .derma-header { width: 100% !important; }
  .derma-layout ~ .footer { margin-right: 0 !important; }
}

/* 메인 슬라이드 배너 */
.main_banner {
  position: relative;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1080 / 482;
  overflow: hidden;
  z-index: 1;
}

.main_banner .swiper {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.main_banner .swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.main_banner .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.main_banner .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 영상 배너 스타일 */
.main_banner .swiper .swiper-wrapper .swiper-slide .video-banner {
  width: 100%;
  height: 100%;
  position: relative;
}

.main_banner .swiper .swiper-wrapper .swiper-slide .banner-video-pc {
  display: block;
  width: 100%;
  height: 100%;
}

.main_banner .swiper .swiper-wrapper .swiper-slide .banner-video-mobile {
  display: none;
  width: 100%;
  height: 100%;
}

.main_banner .swiper .swiper-wrapper .swiper-slide .banner-video-iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* PC와 모바일 이미지 표시 규칙 */
.main_banner .swiper .swiper-wrapper .swiper-slide .banner-pc {
  display: block;
}

.main_banner .swiper .swiper-wrapper .swiper-slide .banner-mobile {
  display: none;
}

.main_banner .swiper .swiper-wrapper .swiper-slide .banner-content-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.main_banner .swiper .swiper-wrapper .swiper-slide .slide_dec {
  position: relative;
  top: -50%;
  left: 5%;
  transform: translateY(50%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 90%;
  margin-bottom: 2rem;
  z-index: 3;
}

.main_banner .swiper .swiper-wrapper .swiper-slide .slide_dec .slide-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  word-wrap: break-word;
  hyphens: auto;
}

.main_banner .swiper .swiper-wrapper .swiper-slide .slide_dec .slide-description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  max-width: 100%;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  word-wrap: break-word;
  hyphens: auto;
}

.main_banner .swiper .swiper-wrapper .swiper-slide .slide_dec .slide-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #1d1d1f;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  align-self: flex-start;
  margin-top: 0.5rem;
}

.main_banner .swiper .swiper-wrapper .swiper-slide .slide_dec .slide-link-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.main_banner .swiper .swiper-wrapper .swiper-slide .slide_dec .slide-link-btn .material-icons {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.main_banner .swiper .swiper-wrapper .swiper-slide .slide_dec .slide-link-btn:hover .material-icons {
  transform: translateX(4px);
}

.main_banner .swiper .swiper-wrapper .swiper-slide .banner-bottom-controls {
  position: relative;
  bottom: 2px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 3;
}

.main_banner .autoplay-progress {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  border-radius: 2px;
  z-index: 1;
}

.main_banner .autoplay-progress .autoplay-progress-bar {
  width: 0%;
  height: 100%;
  background: var(--point-color);
  transition: width 0s;
}

.main_banner .swiper .swiper-wrapper .swiper-slide .banner-bottom-controls .swiper-pagination {
  position: relative;
  font-size: 20px;
  color: #fff;
  text-align: left;
  margin-top: 7px;
}

.main_banner .swiper .swiper-button-prev {
  color: #fff;
  top: 65.7%;
  left: 27%;
  margin-left: 20px;
  display: none;
  z-index: 5;
}

.main_banner .swiper .swiper-button-next {
  color: #fff;
  top: 65.7%;
  left: 32%;
  display: none;
  z-index: 5;
}

/* 메뉴 섹션 */
.main-menu-section {
  max-width: 1063px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 0 0;
  position: relative;
  z-index: 10;
}

/* 메뉴 카드 스와이퍼 */
.menu-cards-swiper-container {
  position: relative;
  z-index: 20;
  margin-bottom: 10px;
}

.menu-cards-custom-scrollbar {
  display: none;
}

.menu-cards-swiper {
  position: relative;
  z-index: 20;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 14px;
  /* 모바일 터치 최적화 */
  -webkit-overflow-scrolling: touch;      /* iOS 관성 스크롤 */
  touch-action: pan-x;                    /* 가로 팬만 허용 → 세로/가로 판별 즉시 */
  overscroll-behavior-x: contain;         /* 스크롤 끝에서 부모 스크롤로 전파 차단 */
  scroll-snap-type: x proximity;          /* 근접 스냅 (부드럽게 카드 정렬) */
  scroll-padding-left: 16px;              /* 스냅 시 좌측 여유 */
}

.menu-cards-swiper::-webkit-scrollbar {
  height: 8px;
}

.menu-cards-swiper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 6px;
}

.menu-cards-swiper::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-radius: 6px;
  margin-top: 8px;
}

.menu-cards-swiper .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  transform: none !important;
  min-width: 100%;
  width: max-content;
}

.menu-cards-swiper .swiper-slide {
  width: auto !important;
  height: auto;
  flex: 1 0 max-content;
  min-width: max-content;
  scroll-snap-align: start;               /* 카드 시작점에 스냅 */
}

/* 스와이퍼 네비게이션/페이지네이션 숨김 (그리드에서 불필요) */
.menu-cards-swiper-pagination,
.menu-cards-next,
.menu-cards-prev {
  display: none !important;
}

.main-menu-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 40px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #1d1d1f;
  cursor: pointer;
  padding: 0 14px;
  border: 1.5px solid #EDEDED;
  text-align: center;
  position: relative;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  /* 모바일 터치 최적화 */
  user-select: none;                        /* 드래그 중 텍스트 선택 방지 */
  -webkit-tap-highlight-color: transparent; /* 모바일 탭 하이라이트 제거 */
}

.main-menu-card.active {
  background: #6d28d9;
  color: #fff;
  font-weight: 600;
  border-color: #6d28d9;
  box-shadow: 0 3px 12px rgba(109, 40, 217, 0.3);
}

.main-menu-card img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-menu-card:hover {
  border-color: #c4b5fd;
  color: var(--point-color);
}

.main-menu-card.active:hover {
  background: #6d28d9;
  color: #fff;
  border-color: #6d28d9;
}

.main-menu-card:hover img {
  transform: scale(1.1);
}


/* ===== 카테고리 영역: 테이블 그리드 + 플로우 칩 ===== */
.category-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
  z-index: 15;
}

/* --- 카테고리: 4열 테이블 그리드 --- */
.category-tabs-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.category-link {
  font-family: 'SUIT-Regular', var(--font-multilang);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 25%;
  min-width: 0;
  padding: 13px 14px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  word-break: keep-all;
  overflow-wrap: anywhere;  /* 슬래시·영문 혼합 긴 텍스트 셀 넘침 방지 (iOS Safari 대응) */
  color: #000;
  background: #F7F7F8;
  border: none;
  border-bottom: 1px solid #DDD;
  border-right: 1px solid #DDD;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
  position: relative;
  border-radius: 0;
}

.category-link:nth-child(4n) {
  border-right: none;
}

.category-link:hover {
  background: #6d28d9;
  color: #fff;
  font-weight: 600;
  transform: none;
  box-shadow: none;
}

.category-link:active {
  transform: scale(0.98);
}

.category-link.active {
  background: #6d28d9;
  color: #fff;
  font-weight: 700;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.15);
  outline: none;
  transform: none;
}

.category-link.active::after {
  display: none;
}

.category-link.active:nth-child(n) {
  background: #6d28d9;
  color: #fff;
}

/* --- 서브카테고리: 플로우 칩 패널 --- */
.subcategory-chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 18px 22px;
  background: #fff;
  border-top: 2px solid #F3EEFF;
  border-radius: 0 0 16px 16px;
  /* 폰트 렌더링 품질 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.middle-category-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 22px;
  background: #fff;
  color: #524a6e;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.1px;
  cursor: pointer;
  border: 1.5px solid #EDE8F5;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  /* 서브픽셀 렌더링 방지 (GPU 레이어 고정) */
  transform: translateZ(0);
  backface-visibility: hidden;
}

.middle-category-card:hover {
  border-color: #c4b5fd;
  color: var(--point-color);
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.12);
  background: #fdfbff;
}

.middle-category-card:active {
  transform: translateZ(0) scale(0.97);
}

.middle-category-card.active {
  background: #6d28d9;
  color: #fff;
  font-weight: 700;
  border-color: #6d28d9;
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.3);
}

.middle-category-card .chip-count {
  display: none !important;
}

.subcategory-empty {
  width: 100%;
  text-align: center;
  padding: 20px;
  color: #999;
  font-size: 13px;
}

/* 기존 메뉴 리스트 스타일 제거 */
.main-menu-cards {
  display: none;
}

.scroll-menu-scroll-wrap {
  display: none;
}

.main-menu-list-wrap {
  display: none;
}

.main-menu-list {
  display: none;
}

/* 시술 예약 */
.treatment-layout {
  display: flex;
  flex-direction: column;
  max-width: 1080px;
  width: 100%;
  margin: 24px auto 60px;
  padding: 0 24px;
}

.treatment-wrap {
  display: flex;
  width: 100%;
}

.treatment-list-wrap {
  flex: 2;
  padding: 0 16px 16px 20px;
}

.treatment-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.treatment-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1.5px solid #eee;
  padding-bottom: 12px;
  gap: 15px;
}

.treatment-info {
  flex: 1;
}

.treatment-title {
  font-family: 'SUIT-Light', var(--font-multilang);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.treatment-desc {
  font-family: 'SUIT-Light', var(--font-multilang);
  font-size: 13px;
  color: #888;
}

/* 모바일: 시술 설명 2줄 말줄임 */
@media (max-width: 768px) {
  .treatment-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.treatment-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.treatment-price {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-right: 6px;
}

.treatment-price .percent {
  color: var(--danger);
  margin-right: 6px;
  margin-left: 6px;
  font-size: 13px;
}

.treatment-price .discount-price {
  color: var(--danger);
  margin-right: 6px;
}

.treatment-price .line-through {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
}

.treatment-price .consultation-needed {
  color: var(--danger);
  font-weight: 700;
  font-size: 14px;
}

.cart-consultation-notice {
  font-size: 12px;
  color: var(--danger);
  text-align: right;
  padding: 6px 0 0;
}

.treatment-add-btn.btn-disabled,
.treatment-add-btn.btn-disabled:hover,
.treatment-add-btn.btn-disabled:active,
.treatment-add-btn.btn-disabled:focus {
  background: #e9ecef !important;
  border-color: #ccc !important;
  color: #999 !important;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}

.treatment-review-btn,
.treatment-detail-btn,
.treatment-add-btn {
  background: #fff;
  border: 1px solid var(--point-color);
  color: var(--point-color);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 4px;
  transition: background 0.2s, color 0.2s;
}

.treatment-review-btn {
  background: #f8f4ff;
  border-color: #e6d9ff;
  color: #8b5cf6;
}

.treatment-review-btn:hover {
  background: #e6d9ff;
  color: #7c3aed;
}

.treatment-add-btn {
  background: var(--point-color);
  color: #fff;
}

.treatment-add-btn:hover {
  background: #7c5ec8;
}

.treatment-cart-wrap {
  position: fixed;
  right: 10px;
  top: 0;
  width: 370px;
  height: 100vh;
  background: #f5f0fa;
  padding: 20px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  z-index: 100;
}

.treatment-cart-list {
  width: 100%;
  flex: 1 1 auto;
  overflow-y: auto;
  margin-bottom: 12px;
}

.treatment-cart-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #ede6f7;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #222;
}

.treatment-cart-item > span {
  width: 100%;
  margin-bottom: 6px;
}

.treatment-cart-item .derma-cnt-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.treatment-cart-item .derma-cnt {
  width: 35px;
  height: 30px;
  text-align: center;
  font-size: 14px;
  border: none;
  outline: none;
}

.treatment-cart-item .derma-cnt-btns {
  display: flex;
  flex-direction: column;
}

.treatment-cart-item .derma-cnt-btns button {
  width: 18px;
  height: 15px;
  font-size: 8px;
  line-height: 1;
  padding: 0;
  border: none;
  border-left: 1px solid #ccc;
  background: #f5f5f5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.treatment-cart-item .derma-cnt-btns button:hover {
  background: #e0e0e0;
}

.treatment-cart-item .derma-cnt-btns button:first-child {
  border-bottom: 1px solid #ccc;
}

.treatment-cart-item .item-inner-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.treatment-cart-item button {
  background: none;
  border: none;
  color: var(--point-color);
  font-size: 18px;
  cursor: pointer;
}

.treatment-cart-total {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #595857F2;
  margin-top: auto;
  margin-bottom: 10px;
  padding-top: 12px;
  border-top: 1px solid #e0d6ec;
}

.treatment-cart-sum {
  color: var(--danger);
  font-size: 18px;
  font-weight: 700;
}

.treatment-cart-reserve {
  width: 100%;
  background: var(--point-color);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s;
}

.treatment-cart-reserve:hover {
  background: var(--point-color-hover);
}

.treatment-cart-show {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: var(--point-color);
  color: #fff;
  border: none;
  padding: 16px 0;
  display: none;
  font-size: 16px;
  font-weight: 700;
}

.treatment-cart-show .cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  background: rgba(255,255,255,0.95);
  color: var(--point-color);
  font-size: 15px;
  font-weight: 800;
  padding: 0 6px;
  margin-left: 6px;
}

/* 시술담기 → ✓ 담김 상태 */
.treatment-add-btn.treat-btn-added {
  background: #eee;
  color: #999;
  box-shadow: none;
  cursor: default;
}

.treatment-add-btn.treat-btn-added:hover {
  background: #eee;
  transform: none;
  box-shadow: none;
}

.treatment-add-btn .btn-icon {
  margin-right: 4px;
  font-size: 13px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 1.3), 0 0 2px rgba(0, 0, 0, 1.4);
}

.treatment-cart-close {
  display: none;
}

.cart-backdrop {
  display: none;
}

/* 상세보기 모달 */
.treatment-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.treatment-detail-modal .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.treatment-detail-modal .modal-content {
  position: relative;
  z-index: 2;
  background: #fff;
  max-width: 1092px;
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  /* 스크롤바 스타일 (컨텐츠가 넘칠 때만 표시) */
  scrollbar-width: thin !important;
  scrollbar-color: #cbd5e1 #f1f5f9 !important;
  -ms-overflow-style: auto !important;
}

/* WebKit 계열(Chrome, Safari, Edge) 커스텀 스크롤바 (auto - 넘칠 때만 표시) */
.treatment-detail-modal .modal-content::-webkit-scrollbar {
  width: 10px !important;
  -webkit-appearance: auto !important;
}
.treatment-detail-modal .modal-content::-webkit-scrollbar-track {
  background: #f1f5f9 !important;
  border-radius: 0 16px 16px 0;
}
.treatment-detail-modal .modal-content::-webkit-scrollbar-thumb {
  background: #cbd5e1 !important;
  border-radius: 8px;
  border: 2px solid #f1f5f9;
  min-height: 40px;
}
.treatment-detail-modal .modal-content::-webkit-scrollbar-thumb:hover {
  background: #94a3b8 !important;
}

.treatment-detail-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.treatment-detail-modal .modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.detail-content {
  /* 컨텐츠는 hero(가로 풀) + body(padding)로 영역 분리 */
}

/* ==========================================================================
   Ppeum 스타일 상세 모달 — Hero / Body / Tags / Info List
   ========================================================================== */

/* 1) 상단 Hero 영역: 고정 비율(1080:550, ppeum 기준) + 이미지 잘림 없이 contain */
.detail-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1080 / 550;  /* ppeum과 동일 비율로 hero 높이 고정 */
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: #f9fafb;
}
.detail-hero-image {
  display: block;
  width: 100%;
  height: 91%;
  object-fit: contain;  /* 잘림 없이 비율 유지, 빈 공간은 hero 배경색 */
}
/* 시술명 텍스트 가독성을 위한 하단 어두운 그라데이션 */
.detail-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.detail-hero-title {
  position: absolute;
  left: 0;
  right: 0;
  top: 80%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75), 0 0 24px rgba(0, 0, 0, 0.4);
  margin: 0;
  padding: 0 24px;
  text-align: center;
  line-height: 1.25;
}

/* 2) 본문 영역 */
.detail-body {
  padding: 32px 40px 40px;
}

/* 시술명 (본문 헤더) */
.detail-item-name {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}

/* 시술 설명 */
.detail-description {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 20px;
}
.detail-description p {
  margin: 6px 0;
}
.detail-description img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 12px 0;
}

/* 태그 칩 영역 */
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}
.detail-tag-chip {
  background: #fce7f3;
  color: #be185d;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #fbcfe8;
  white-space: nowrap;
}

/* 구분선 (모달 가로 풀) */
.detail-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb 15%, #e5e7eb 85%, transparent);
  margin: 0 -40px 24px;
}

/* 정보 영역 (라벨 - 값) */
.detail-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.detail-info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: baseline;
  gap: 16px;
}
.detail-info-row .label {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}
.detail-info-row .value {
  font-size: 14px;
  color: #4b5563;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .detail-hero-title {
    font-size: 22px;
    padding: 0 16px;
  }
  .detail-body {
    padding: 24px 20px 32px;
  }
  .detail-item-name {
    font-size: 20px;
  }
  .detail-divider {
    margin: 0 -20px 20px;
  }
  .detail-info-row {
    grid-template-columns: 80px 1fr;
    gap: 12px;
  }
}

/* 로딩 스타일 */
.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  padding: 40px 20px;
}

.loading-content {
  text-align: center;
}

.loading-spinner-container {
  margin-bottom: 20px;
}

.loading-spinner {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 3px solid #007bff;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.spinner-ring:nth-child(1) {
  animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-top-color: #28a745;
  animation-delay: 0.2s;
}

.spinner-ring:nth-child(3) {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-top-color: #ffc107;
  animation-delay: 0.4s;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-text {
  color: #666;
}

.loading-message {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.loading-dots .dot {
  width: 8px;
  height: 8px;
  background-color: #007bff;
  border-radius: 50%;
  animation: dotPulse 1.4s ease-in-out infinite both;
}

.loading-dots .dot:nth-child(1) {
  animation-delay: 0s;
}

.loading-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* 기존 middle-category 스타일은 category-section 내 칩으로 통합됨 */

.swiper-pagination {
  color: #fff !important;
  font-size: 10px !important;
}

.swiper-pagination-bullet-active {
  background: #fff;
  width: 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.swiper-pagination .swiper-pagination-current {
  color: #fff;
}

.swiper-pagination .swiper-pagination-total {
  color: rgba(255, 255, 255, 0.7);
}

.d-none {
  display: none !important;
}

.search-no-result {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.no-result-content {
  max-width: 400px;
}

.no-result-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.6;
}

.no-result-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.no-result-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.5;
}

.no-result-link {
  display: inline-block;
  background: var(--point-color, #8b5cf6);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.no-result-link:hover {
  background: var(--point-color-hover, #7c3aed);
  transform: translateY(-1px);
}

/* 에러 상태 스타일 */
.error-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-content {
  text-align: center;
  max-width: 400px;
}

.error-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.error-content p {
  color: #6c757d;
  font-size: 1rem;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.retry-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.retry-btn:hover {
  background: #0056b3;
}

/* 월 한정 이벤트 없음 메시지 스타일 */
.no-monthly-events {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  padding: 40px 20px;
}

.no-events-content {
  text-align: center;
  max-width: 400px;
}

.no-events-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.no-events-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.no-events-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.5;
}

.no-events-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.no-events-popular-btn,
.no-events-new-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.no-events-popular-btn {
  background: var(--point-color);
  color: white;
}

.no-events-popular-btn:hover {
  background: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.no-events-new-btn {
  background: #f8f9fa;
  color: #1d1d1f;
  border: 1px solid #e9ecef;
}

.no-events-new-btn:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


@media (max-width: 1024px) {
  .treatment-item {
    flex-direction: column;
  }

  .treatment-meta {
    margin-top: 20px;
    margin-left: auto;
  }

  .menu-cards-swiper {
    padding: 0;
  }

  /* 모바일: 장바구니 보기 버튼 상시 노출 */
  .treatment-cart-show {
    display: block;
  }

  /* [태블릿] 장바구니 사이드바 → 하단 시트 전환 */
  .treatment-cart-wrap {
    display: none;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    min-width: 0;
    min-height: 58px;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 2px 16px rgba(80, 60, 120, 0.10);
    background: #fff;
    padding: 0;
    margin: 0 auto;
    z-index: 1000;
  }

  .treatment-cart-list {
    padding: 50px 16px 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  .treatment-cart-total {
    padding: 0 16px;
  }

  .treatment-cart-reserve {
    display: block;
    width: 93%;
    margin: 0 auto 10px;
    font-size: 16px;
    margin-top: 0;
    padding: 12px 0;
  }

  .treatment-cart-close {
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    width: 24px;
    height: 24px;
    font-size: 20px;
    z-index: 10;
    cursor: pointer;
  }

  .cart-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .treatment-layout {
    padding: 0 16px;
  }

  .treatment-list-wrap {
    padding: 0;
  }

}

@media (max-width: 768px) {
  .main_banner {
    aspect-ratio: unset;
    /*margin-top: 14px;*/
    box-sizing: border-box;
    height: auto;
  }

  /* 모바일 배너 높이를 이미지 비율(860:960)에 맞춤 */
  .main_banner .swiper {
    height: auto;
    aspect-ratio: 860 / 960;
  }

  /* 배너 PC→모바일 이미지 전환 (비율 변경과 동일 시점) */
  .main_banner .swiper .swiper-wrapper .swiper-slide .banner-pc {
    display: none;
  }

  .main_banner .swiper .swiper-wrapper .swiper-slide .banner-mobile {
    display: block;
  }

  .main_banner .swiper .swiper-wrapper .swiper-slide .banner-video-pc {
    display: none;
  }

  .main_banner .swiper .swiper-wrapper .swiper-slide .banner-video-mobile {
    display: block;
  }

  .main-menu-section {
    padding: 25px 16px 0 !important;
  }

  .menu-cards-swiper {
    padding: 0;
    overflow: hidden;
    padding-bottom: 0;
  }

  .menu-cards-swiper .swiper-wrapper {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    transform: translate3d(0, 0, 0) !important;
    min-width: unset;
    width: 100%;
  }

  .menu-cards-swiper .swiper-wrapper::-webkit-scrollbar {
    display: none;
  }

  .menu-cards-custom-scrollbar {
    position: relative;
    height: 6px;
    background: #f0ecf5;
    border-radius: 3px;
    margin: 6px 16px 0;
    overflow: hidden;
  }

  .menu-cards-custom-scrollbar .scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #9b87b5;
    border-radius: 3px;
    min-width: 30px;
    transition: left 0.05s linear;
  }

  .menu-cards-swiper .swiper-slide {
    width: auto !important;
    flex: 0 0 auto;
    min-width: auto;
  }

  .main-menu-card {
    flex: 0 0 auto;
    height: 34px;
    font-size: 12px;
    padding: 0 12px;
    border-radius: 6px;
    flex-shrink: 0;
  }

  .main-menu-card img {
    width: 18px;
    height: 18px;
  }

  /* 카테고리 4열 이니셜 카드 모바일 */
  .category-section {
    overflow: hidden;
  }

  .category-tabs-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 10px;
  }

  .category-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 52px;
    padding: 10px 6px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;  /* 슬래시·영문 혼합 긴 텍스트가 셀 넘칠 때 강제 줄바꿈 (iOS Safari 대응) */
    min-width: 0;             /* grid 셀이 콘텐츠 최소폭에 끌려 커지는 것 방지 */
    text-align: center;
    line-height: 1.2;
    border: none;
    transition: all 0.25s;
  }

  .category-link::before {
    display: none;
  }

  .category-link:hover {
    transform: none;
    box-shadow: none;
  }

  .category-link:active {
    transform: scale(0.96);
  }

  .category-link.active {
    outline: 2px solid var(--point-color, #6d28d9);
    outline-offset: -2px;
    font-weight: 700;
    transform: none;
    box-shadow: none;
  }

  /* 카드 전체 파스텔 색상 (기존 이니셜 색상 → 카드 배경으로 이관) */
  .category-link:nth-child(1)  { background: #f3f0ff; color: #5b21b6; }
  .category-link:nth-child(2)  { background: #eff6ff; color: #1e40af; }
  .category-link:nth-child(3)  { background: #fdf2f8; color: #9d174d; }
  .category-link:nth-child(4)  { background: #ecfdf5; color: #065f46; }
  .category-link:nth-child(5)  { background: #fefce8; color: #854d0e; }
  .category-link:nth-child(6)  { background: #fff7ed; color: #9a3412; }
  .category-link:nth-child(7)  { background: #f0f9ff; color: #075985; }
  .category-link:nth-child(8)  { background: #faf5ff; color: #6b21a8; }
  .category-link:nth-child(9)  { background: #fef2f2; color: #991b1b; }
  .category-link:nth-child(10) { background: #f0fdf4; color: #166534; }
  .category-link:nth-child(11) { background: #fffbeb; color: #92400e; }
  .category-link:nth-child(12) { background: #eef2ff; color: #3730a3; }
  .category-link:nth-child(n+13) { background: #f5f3ff; color: #5b21b6; }

  .subcategory-chips-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    border-top: 1px solid #f0f0f0;
    background: #fff;
  }

  .middle-category-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 calc(50% - 1px);
    max-width: 50%;
    min-height: 44px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 500;
    color: #555;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #f8f8f8;
    background: #fff;
    white-space: nowrap;
    overflow: hidden;
  }

  .middle-category-card:nth-child(odd) {
    border-right: 1px solid #f8f8f8;
  }

  .middle-category-card:last-child:nth-child(odd) {
    max-width: 100%;
  }

  .middle-category-card:active {
    background: #fafafa;
  }

  .middle-category-card.active {
    background: #F3EEFF;
    color: var(--point-color);
    font-weight: 700;
    border-color: #f0f0f0;
  }

  .middle-category-card .chip-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
  }

  .middle-category-card .chip-count {
    flex-shrink: 0;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    background: #f0f0f0;
    font-size: 0 !important;
    font-weight: 600;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    padding: 0 6px;
    opacity: 1 !important;
    line-height: 1;
  }

  .middle-category-card .chip-count::before {
    content: attr(data-count);
    font-size: 10px;
    font-weight: 600;
    color: #999;
  }

  .middle-category-card.active .chip-count {
    background: var(--point-color);
    opacity: 1 !important;
  }

  .middle-category-card.active .chip-count::before {
    color: #fff;
  }

  .middle-category-card:hover {
    transform: none;
    box-shadow: none;
  }

  /* 시술 목록 폰트 축소 */
  .treatment-title {
    font-size: 14px;
  }

  .treatment-desc {
    font-size: 12px;
  }

  .treatment-price {
    font-size: 13px;
  }

  .treatment-price .percent {
    font-size: 12px;
  }

  .treatment-price .line-through {
    font-size: 12px;
  }

  .treatment-review-btn,
  .treatment-detail-btn,
  .treatment-add-btn {
    font-size: 12px;
    padding: 4px 10px;
  }

  /* 배너 반응형 스타일 */
  .main_banner .swiper .swiper-wrapper .swiper-slide .banner-content-container {
    padding-bottom: 8%;
  }

  .main_banner .swiper .swiper-wrapper .swiper-slide .slide_dec {
    left: 5%;
    max-width: 90%;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .main_banner .swiper .swiper-wrapper .swiper-slide .slide_dec .slide-title {
    font-size: 2rem;
    line-height: 1.1;
  }

  .main_banner .swiper .swiper-wrapper .swiper-slide .slide_dec .slide-description {
    font-size: 1rem;
    line-height: 1.4;
    max-width: 100%;
  }

  .main_banner .swiper .swiper-wrapper .swiper-slide .slide_dec .slide-link-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    line-height: 18px;
  }

  .main_banner .swiper .swiper-wrapper .swiper-slide .banner-bottom-controls {
    left: 5%;
    gap: 1.5rem;
  }

  /* 모바일 fraction 페이지네이션 */
  .main_banner .swiper-pagination {
    position: absolute;
    bottom: 8px !important;
    right: 8px;
    left: auto !important;
    width: auto !important;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 4px 6px;
    font-size: 13px;
    color: #fff !important;
    z-index: 10;
    line-height: 1.6;
  }

  .main_banner .swiper-pagination .swiper-pagination-current {
    color: #fff;
    font-weight: 600;
  }

  .main_banner .swiper-pagination .swiper-pagination-total {
    color: rgba(255, 255, 255, 0.5);
  }

  .main_banner .autoplay-progress {
    width: 100%;
  }

  /* 장바구니 영역 */
  .treatment-cart-wrap {
    display: none;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 2px 16px rgba(80, 60, 120, 0.10);
    background: #fff;
    padding: 0;
    left: 0;
    right: 0;
    min-height: 58px;
    margin: 0 auto;
    position: fixed;
    bottom: 0;
    z-index: 1000;
  }

  .treatment-cart-list {
    padding: 50px 16px 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  .treatment-cart-total {
    padding: 0 16px;
  }

  .treatment-cart-reserve {
    display: block;
    width: 93%;
    margin: 0 auto 10px;
    font-size: 16px;
    margin-top: 0;
    padding: 12px 0;
  }

  .treatment-cart-close {
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    width: 24px;
    height: 24px;
    font-size: 20px;
    z-index: 10;
    cursor: pointer;
  }

  .treatment-cart-wrap {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 2px 16px rgba(80, 60, 120, 0.10);
    background: #fff;
    min-width: 0;
    margin: 0 auto;
    z-index: 1000;
  }
  
  .treatment-layout {
    padding: 0 16px;
  }
  .treatment-list-wrap {
    padding: 0;
  }

  .cart-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  /* 상세보기 모달 — 모바일 화면 85% */
  .treatment-detail-modal .modal-content {
    max-width: 98vw;
    height: 80vh;
  }

  /* 검색 결과 영역 */
  .search-result-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .search-result-title {
    font-size: 20px;
  }
  
  .search-result-count {
    font-size: 16px;
  }
  
  .search-no-result {
    padding: 60px 20px;
  }
  
  /* 검색 결과가 없을 때 */
  .no-result-icon {
    font-size: 48px;
  }
  
  .no-result-content h3 {
    font-size: 18px;
  }
  
  .no-result-content p {
    font-size: 14px;
  }

  .no-monthly-events {
    min-height: 250px;
    padding: 30px 15px;
  }
  
  .no-events-icon {
    font-size: 40px;
    margin-bottom: 16px;
  }
  
  .no-events-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .no-events-content p {
    font-size: 13px;
    margin-bottom: 25px;
  }
  
  .no-events-actions {
    gap: 10px;
  }
  
  .no-events-popular-btn,
  .no-events-new-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .main-menu-section {
    padding: 20px 12px;
  }

  .menu-cards-swiper {
    padding: 0;
  }

  .main-menu-card {
    height: 32px;
    font-size: 11px;
    padding: 0 12px;
    gap: 6px;
    border-radius: 6px;
  }

  .main-menu-card img {
    width: 16px;
    height: 16px;
  }

  /* 카테고리 4열 이니셜 카드 작은 모바일 */
  .category-tabs-wrapper {
    gap: 4px;
    padding: 8px;
  }

  .category-link {
    min-height: 48px;
    padding: 8px 4px;
    font-size: 11px;
    border-radius: 10px;
  }

  .middle-category-card {
    min-height: 40px;
    padding: 0 10px;
    font-size: 11px;
  }

  .middle-category-card .chip-count {
    min-width: 18px;
    height: 18px;
    font-size: 9px;
    padding: 0 5px;
  }

  /* 시술 목록 폰트 추가 축소 */
  .treatment-title {
    font-size: 15px;
  }

  .treatment-desc {
    font-size: 11px;
  }

  .treatment-price {
    font-size: 12px;
  }

  .treatment-price .percent {
    font-size: 11px;
  }

  .treatment-price .line-through {
    font-size: 11px;
  }

  .treatment-review-btn,
  .treatment-detail-btn,
  .treatment-add-btn {
    font-size: 11px;
    padding: 3px 8px;
  }

  /* 작은 모바일에서 배너 스타일 추가 조정 */
  .main_banner .swiper .swiper-wrapper .swiper-slide .banner-content-container {
    padding-bottom: 6%;
  }

  .main_banner .swiper .swiper-wrapper .swiper-slide .slide_dec {
    left: 7%;
    max-width: 94%;
    gap: 0.6rem;
    margin-bottom: 1rem;
  }

  .main_banner .swiper .swiper-wrapper .swiper-slide .slide_dec .slide-title {
    font-size: 1.5rem;
    line-height: 1.1;
  }

  .main_banner .swiper .swiper-wrapper .swiper-slide .slide_dec .slide-description {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .main_banner .swiper .swiper-wrapper .swiper-slide .slide_dec .slide-link-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    line-height: 16px;
  }

  .main_banner .swiper .swiper-wrapper .swiper-slide .banner-bottom-controls {
    left: 7%;
    gap: 1rem;
  }

  .main_banner .swiper .swiper-wrapper .swiper-slide .banner-bottom-controls .autoplay-progress {
    width: 120px;
  }

  /* 배너 이미지/영상 전환은 768px 미디어 쿼리로 이동 (480px에서 제거) */

  /* 월 한정 이벤트가 없을 때 */
  .no-monthly-events {
    min-height: 200px;
    padding: 25px 10px;
  }
  
  .no-events-icon {
    font-size: 36px;
    margin-bottom: 14px;
  }
  
  .no-events-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .no-events-content p {
    font-size: 12px;
    margin-bottom: 20px;
  }
  
  .no-events-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .no-events-popular-btn,
  .no-events-new-btn {
    padding: 12px 16px;
    font-size: 12px;
    width: 100%;
  }
}