
body { background: #12102a !important; height: auto; }

/* ========================================
   히어로 비주얼 영역
   ======================================== */
.ts-hero {
  position: relative;
  background: linear-gradient(150deg, #0a0a1a 0%, #1a1035 40%, #2d1b69 70%, #1a1035 100%);
  overflow: hidden;
  padding: 5.5rem 1.5rem 1.5rem;
  color: #fff;
  text-align: center;
}

/* 배경 장식 */
.ts-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -15%;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,75,75,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.ts-hero::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -20%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* 글로우 라인 */
.ts-hero__glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,215,0,0.4) 50%, transparent 100%);
}

/* ========================================
   시계 + 할인 비주얼
   ======================================== */
.ts-hero__visual {
  position: relative;
  z-index: 1;
  margin: 0 auto 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ts-hero__clock-wrap {
  position: relative;
  width: 9rem;
  height: 9rem;
}

.ts-hero__clock-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 1.5rem rgba(255,75,75,0.12));
}

/* 시계 뒤 글로우 */
.ts-hero__clock-wrap::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(255,75,75,0.1) 0%, rgba(255,150,50,0.05) 40%, transparent 70%);
  animation: ts-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

/* 초침 회전 (2배속) */
.ts-hero__clock-svg .ts-clock-sec {
  transform-origin: 60px 60px;
  animation: ts-clock-rotate 15s linear infinite;
}


/* SALE 뱃지 */
.ts-hero__sale-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: linear-gradient(135deg, #ff4b4b, #ff6b35);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 800;
  padding: 0.25rem 0.5rem;
  border-radius: 0.75rem;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 10px rgba(255,75,75,0.5);
  animation: ts-badge-pulse 2s ease-in-out infinite;
  z-index: 3;
}

@keyframes ts-badge-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 2px 10px rgba(255,75,75,0.5); }
  50% { transform: scale(1.08); box-shadow: 0 2px 14px rgba(255,75,75,0.7); }
}

/* ========================================
   메인 타이틀
   ======================================== */
.ts-hero__head {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.ts-hero__date-accent {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFD700;
  letter-spacing: 0.25em;
}

.ts-hero__label {
  display: block;
  font-family: 'Black Han Sans', sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.1;
  background: linear-gradient(135deg, #FFD700 0%, #ffb830 40%, #ff8c42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 2rem rgba(255,215,0,0.25));
}

/* 가격 강조 */
.ts-hero__highlight {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
}

.ts-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3.125rem;
  padding: 0.625rem 1.5rem;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.ts-hero__tag::after {
  content: "";
  position: absolute;
  inset: -10% -30%;
  background: linear-gradient(115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.1) 44%,
    rgba(255,255,255,0.25) 50%,
    rgba(255,255,255,0.1) 56%,
    rgba(255,255,255,0) 100%
  );
  transform: translateX(-120%);
  animation: ts-shine 4.5s linear infinite;
  pointer-events: none;
}

.ts-hero__tag-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.ts-hero__tag-main {
  font-size: 1.375rem;
  font-weight: 900;
  color: #FFD700;
  text-shadow: 0 0 0.75rem rgba(255,215,0,0.6), 0 0 2rem rgba(255,215,0,0.3);
}

/* 쇼케이스 마키 영역 */
.ts-hero__showcase {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ts-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.ts-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.ts-marquee--left .ts-marquee__track {
  animation: marquee-left 60s linear infinite;
}

.ts-marquee--right .ts-marquee__track {
  animation: marquee-right 60s linear infinite;
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes ts-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes ts-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes ts-shine {
  0% { transform: translateX(-120%) skewX(-6deg); }
  55% { transform: translateX(120%) skewX(-6deg); }
  100% { transform: translateX(120%) skewX(-6deg); }
}

@keyframes ts-clock-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ts-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes ts-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.75rem); }
}

.ts-card {
  width: 7rem;
  flex-shrink: 0;
  margin-right: 0.625rem;
  border-radius: 0.625rem;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.ts-card__thumb {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

/* 타임세일 안내 */
.ts-hero__desc {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
}

.ts-hero__desc-sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   하단 리스트 영역 — 타임세일 전용
   ======================================== */
.ts-list-wrap {
  padding: 1.25rem 1rem 5rem !important;
}

/* 타임세일 전용: 할인율 레드 */
.ts-list-wrap .discount { color: #ff4b4b; }

/* 타임세일 전용: 프로모션 뱃지 숨김 */
.ts-list-wrap .badges { display: none; }

/* 별점 없음 표시는 item-promo.css 에서 공통 처리 */

/* 모바일 GNB (다크) */
.ts-gnb.is-scrolled {
  background: #1a1535;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* 스크롤업 */
.scroll-up { background: rgba(30,25,60,0.85); }

/* 장식 요소: 떠다니는 빛 오브 */
.ts-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ts-hero__orb--1 {
  width: 6rem; height: 6rem;
  top: 12%; right: 5%;
  background: radial-gradient(circle, rgba(255,215,0,0.12) 0%, transparent 70%);
  animation: ts-float 6s ease-in-out infinite;
}

.ts-hero__orb--2 {
  width: 4rem; height: 4rem;
  top: 50%; left: 3%;
  background: radial-gradient(circle, rgba(255,100,200,0.1) 0%, transparent 70%);
  animation: ts-float 8s ease-in-out infinite 1s;
}

.ts-hero__orb--3 {
  width: 3rem; height: 3rem;
  bottom: 20%; right: 12%;
  background: radial-gradient(circle, rgba(100,180,255,0.1) 0%, transparent 70%);
  animation: ts-float 7s ease-in-out infinite 2s;
}

/* 장식 요소: 반짝이 별 (십자 형태) */
.ts-hero__star {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.ts-hero__star::before,
.ts-hero__star::after {
  content: "";
  position: absolute;
  background: #FFD700;
  border-radius: 0.125rem;
}

.ts-hero__star::before {
  width: 100%; height: 0.125rem;
  top: 50%; left: 0;
  transform: translateY(-50%);
}

.ts-hero__star::after {
  width: 0.125rem; height: 100%;
  left: 50%; top: 0;
  transform: translateX(-50%);
}

.ts-hero__star--1 { width: 0.75rem; height: 0.75rem; top: 18%; left: 12%; animation: ts-twinkle 3s ease-in-out infinite; }
.ts-hero__star--2 { width: 0.5rem; height: 0.5rem; top: 10%; right: 18%; animation: ts-twinkle 2.5s ease-in-out infinite 0.8s; }
.ts-hero__star--3 { width: 0.625rem; height: 0.625rem; top: 42%; right: 8%; animation: ts-twinkle 3.5s ease-in-out infinite 1.5s; }
.ts-hero__star--4 { width: 0.5rem; height: 0.5rem; bottom: 32%; left: 6%; animation: ts-twinkle 2.8s ease-in-out infinite 0.4s; }
.ts-hero__star--5 { width: 0.375rem; height: 0.375rem; top: 32%; left: 28%; animation: ts-twinkle 4s ease-in-out infinite 2s; }

/* ========================================
   웹(.is-web) 전용 오버라이드
   ======================================== */
.is-web .ts-hero {
  padding: 3rem 1.25rem 2rem;
}

.is-web .ts-hero::before { width: 31rem; height: 31rem; }
.is-web .ts-hero::after { width: 25rem; height: 25rem; }

.is-web .ts-hero__visual { margin-bottom: 1.5rem; }
.is-web .ts-hero__clock-wrap { width: 12rem; height: 12rem; }
.is-web .ts-hero__clock-wrap::before { width: 18rem; height: 18rem; }
.is-web .ts-hero__sale-badge { font-size: 0.6875rem; padding: 0.3125rem 0.625rem; }

.is-web .ts-hero__head { margin-bottom: 1.25rem; }
.is-web .ts-hero__date-accent { font-size: 0.9375rem; }
.is-web .ts-hero__label { font-size: 5.5rem; }

.is-web .ts-hero__highlight { margin-bottom: 1.5rem; }
.is-web .ts-hero__tag { gap: 0.75rem; padding: 0.875rem 2rem; }
.is-web .ts-hero__tag-sub { font-size: 1rem; }
.is-web .ts-hero__tag-main { font-size: 1.5rem; }

/* 히어로 장식: 웹 확대 */
.is-web .ts-hero__orb--1 { width: 10rem; height: 10rem; }
.is-web .ts-hero__orb--2 { width: 7rem; height: 7rem; }
.is-web .ts-hero__orb--3 { width: 5rem; height: 5rem; }

/* 쇼케이스: 웹 */
.is-web .ts-hero__showcase { max-width: 68.75rem; margin-left: auto; margin-right: auto; margin-bottom: 0; gap: 1rem; }
.is-web .ts-card { width: 11rem; margin-right: 1rem; border-radius: 0.75rem; }

/* 안내: 웹 */
.is-web .ts-hero__desc { padding-top: 1.5rem; }
.is-web .ts-hero__desc-sub { font-size: 1rem; }

/* 하단 리스트: 웹 */
.is-web .ts-list-wrap {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 3.75rem !important;
}

/* 웹 리스트 카드 스타일은 item-promo.css 에서 처리 */


