/* ========== Reset & Base ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

:root {
    --black: #000000;
    --black-soft: #0d0d0d;
    --black-card: #161616;
    /* 블랙 & 화이트 팔레트 (변수명은 호환 위해 유지, 값만 그레이스케일로 교체)
       - green-bright = 밝은 배경용 메인 accent(니어블랙)
       - green-light  = 어두운 배경용 밝은 accent(화이트 계열) */
    --dark-green: #131313;
    --green: #2b2b2b;
    --green-mid: #4a4a4a;
    --green-bright: #141414;
    --green-light: #f4f4f4;
    --gold: #141414;
    --white: #ffffff;
    --bg-soft: #f4f4f4;
    --text: #111111;
    --text-2: #555555;
    --text-3: #8a8a8a;
    --border: #e6e6e6;
    --border-dark: #2a2a2a;
    --kakao: #FEE500;
    --header-h: 60px;
    --tabbar-h: 68px;
    --app-w: 660px;
    --container: 660px;
    /* 로고(하이컨트라스트 세리프) 톤의 영문/브랜드 디스플레이용 — 한글엔 적용하지 않음 */
    --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
}

/* 로고 느낌의 영문 세리프 유틸 (한글은 산세리프 유지) */
.serif { font-family: var(--serif); }
/* 세리프 가격/숫자는 라이닝 정렬 숫자로 (옛스타일 숫자 흔들림 방지) */
.hcard-price, .auction-price strong, .live-best strong, .bid-amount {
    font-variant-numeric: lining-nums tabular-nums;
}

/* 어두운 배경 컨테이너에서는 accent 변수를 밝게 재정의 → 흰 글씨/포인트가 보이게 */
.hero, .page-hero, .section-dark, .auction-status, .bottom-cta-band, .footer, .tabbar,
.live-best, .live-board, .live-board-section, .live-bid-section, .live-bid-big,
.live-card, .live-feed, .live-stage, .live-target-card, .live-watch-stage,
.exclusive-section, .brand-story-text, .event-inner, .market-notice,
.method-card, .option-card, .quick-tel-card, .two-col-img, .store-img,
.expert-img, .kf-card, .map-placeholder, .ad-banner {
    --green-bright: #ffffff;
    --green-mid: #cfcfcf;
    --green-light: #ffffff;
    --green: #e2e2e2;
}
/* 위 다크 스코프 안의 솔리드 버튼은 흰 배경 + 검은 글씨로 반전 */
.hero .btn-primary, .section-dark .btn-primary, .bottom-cta-band .btn-primary,
.live-board-section .btn-primary, .live-bid-section .btn-primary,
.exclusive-section .btn-primary, .market-notice .btn-primary {
    color: var(--black);
}

html {
    scroll-behavior: smooth;
    background: #e8e8e8;
}
body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    background: #e8e8e8;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;

    /* PC에서도 핸드폰처럼 가운데 좁게 + 좌우 회색 여백 */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* 앱 컨테이너 - 모든 직접 자식을 660px로 가운데 정렬 */
body > .main-wrap,
body > .bottom-cta-band,
body > .footer {
    width: 100%;
    max-width: var(--app-w);
    background: var(--white);
}

body > .footer { background: var(--black); }
body > .bottom-cta-band { background: linear-gradient(135deg, var(--dark-green) 0%, var(--black) 100%); }

/* 흰 배경 + 양옆 그림자 (앱 화면 느낌) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: var(--app-w);
    background: var(--white);
    z-index: -1;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 15px; outline: none; }
img { display: block; max-width: 100%; height: auto; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ========== Typography Helpers ========== */
.eyebrow {
    display: inline-block;
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: var(--green-bright);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.eyebrow.center { display: block; text-align: center; position: relative; padding-top: 18px; }
.eyebrow.center::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 38px; height: 1px;
    background: currentColor;
    opacity: 0.45;
}
.eyebrow.light { color: var(--green-light); }

.section-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.32;
    letter-spacing: -0.8px;
    margin-bottom: 22px;
}
.section-title.center { text-align: center; }
.g { color: var(--green-bright); }
.hl { color: var(--gold); font-weight: 900; }
.hl-green { color: var(--green-bright); font-weight: 900; }

/* ========== Header (앱 스타일) ========== */
.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--app-w);
    height: calc(var(--header-h) + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    box-sizing: border-box;
    background: rgba(16, 13, 10, 0.32);
    backdrop-filter: blur(22px);
    z-index: 1000;
    transition: background 0.3s, border-color 0.3s;
    border-bottom: 1px solid transparent;
}
.header.scrolled,
.header.light-page {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--border);
}
.header-inner {
    padding: 0 20px;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: color 0.3s;
    border-radius: 50%;
}
.header.scrolled .header-icon,
.header.light-page .header-icon { color: var(--text); }
.header-icon:hover { background: rgba(255,255,255,0.1); }
.header.scrolled .header-icon:hover,
.header.light-page .header-icon:hover { background: rgba(0,0,0,0.05); }

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    transition: color 0.3s;
}
.header.scrolled .logo,
.header.light-page .logo { color: var(--text); }

.logo-img {
    height: 30px;
    width: auto;
    display: block;
    /* 히어로(어두운 투명 헤더)에선 로고를 흰색으로 */
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}
/* 스크롤/라이트 페이지(흰 헤더)에선 원래 검정 로고 */
.header.scrolled .logo-img,
.header.light-page .logo-img { filter: none; }

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 1px;
}
.logo-text {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 2px;
}
.logo-text em {
    font-style: normal;
    color: var(--green-bright);
    font-size: 11px;
    letter-spacing: 4px;
}

.nav-menu {
    display: flex;
    gap: 36px;
}
.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
    position: relative;
    padding: 8px 0;
}
.header.scrolled .nav-menu a,
.header.light-page .nav-menu a { color: var(--text-2); }
.nav-menu a:hover { color: var(--green-bright); }
.nav-menu a.active { color: var(--green-bright); font-weight: 700; }
.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--green-bright);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-tel {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
}
.header.scrolled .header-tel,
.header.light-page .header-tel { color: var(--text); }

.btn-cta-small {
    padding: 10px 22px;
    background: var(--green);
    color: var(--white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
}
.btn-cta-small:hover {
    background: var(--green-bright);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}
.header.scrolled .menu-toggle span,
.header.light-page .menu-toggle span { background: var(--text); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== Main / Pages ========== */
.main-wrap {
    padding-top: 0;
    padding-bottom: var(--tabbar-h);
    background: var(--white);
}
.page { display: none; }
.page.active { display: block; animation: fadeUp 0.5s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ========== Hero (홈) ========== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    padding: 100px 0 90px;
}
.hero-image {
    position: absolute;
    inset: -4%;
    background-image: url('assets/2026-02-27_이미지자료_131744.jpeg');
    background-size: cover;
    background-position: center;
    /* 블랙&화이트 톤: 완전 그레이스케일 + 시네마틱 슬로우 줌(영상 느낌) */
    filter: grayscale(1) brightness(0.5) contrast(1.06);
    z-index: 0;
    will-change: transform;
    animation: heroKenburns 24s ease-in-out infinite alternate;
}
@keyframes heroKenburns {
    from { transform: scale(1) translateY(0); }
    to   { transform: scale(1.1) translateY(-1.5%); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-image { animation: none; }
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.62) 55%, rgba(0, 0, 0, 0.92) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
    position: relative;
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--green-light);
    padding-top: 22px;
    margin-bottom: 26px;
}
.hero-eyebrow::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 46px; height: 1px;
    background: rgba(255, 255, 255, 0.55);
}
.hero-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -1px;
    margin-bottom: 32px;
}
.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 40px;
    line-height: 1.7;
}
.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: var(--green-bright);
    color: var(--white);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}
.btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--green-bright);
}
.btn-light {
    background: var(--white);
    color: var(--text);
}
.btn-light:hover { background: var(--green-bright); color: var(--white); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--text); }
.btn-large { padding: 20px 44px; font-size: 16px; }
.btn-full { width: 100%; padding: 20px; }
.btn-kakao {
    background: var(--kakao);
    color: #111;
    width: 100%;
    padding: 14px;
    font-weight: 700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
    font-size: 32px;
    font-weight: 900;
    color: var(--green-bright);
    margin-bottom: 4px;
}
.hero-stats span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

/* ========== Section Common ========== */
.section { padding: 76px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-dark .section-title { color: var(--white); }
.section-soft { background: var(--bg-soft); }
.section-about-preview { background: var(--white); }

.row-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 16px;
    flex-wrap: wrap;
}
.row-between .section-title { margin-bottom: 0; }

.link-arrow {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: var(--green-bright);
    border-bottom: 1.5px solid var(--green-bright);
    padding-bottom: 4px;
    transition: all 0.2s;
}
.link-arrow:hover { color: var(--green-mid); border-color: var(--green-mid); }

/* ========== Two-column (앱에서는 세로 스택) ========== */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.two-col-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--black);
}
.two-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    backdrop-filter: blur(10px);
}
.two-col-text .lead {
    font-size: 18px;
    color: var(--text-2);
    margin-bottom: 24px;
    line-height: 1.7;
}
.check-list {
    margin-bottom: 32px;
}
.check-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 22px;
    height: 22px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* ========== Options Grid ========== */
.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
}
.option-card {
    background: var(--black-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    transition: all 0.4s;
}
.option-card:hover {
    transform: translateY(-8px);
    border-color: var(--green);
}
.option-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.option-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
}
.option-img-1 { background-image: url('assets/2026-03-18_이미지자료_193209.jpg'); }
.option-img-2 { background-image: url('assets/2026-03-18_이미지자료_193412.jpg'); }
.option-img-3 { background-image: url('assets/2026-03-18_이미지자료_193432.jpg'); }

.option-body { padding: 32px; }
.option-num {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--green-bright);
    margin-bottom: 12px;
    font-weight: 700;
}
.option-body h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}
.option-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ========== Brand Preview Grid ========== */
.brand-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 40px;
}
.brand-prev {
    aspect-ratio: 16/10;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.brand-prev::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.35) 0%, rgba(0, 0, 0, 0.88) 100%);
    transition: opacity 0.4s;
}
.brand-prev:hover { transform: translateY(-4px); }
.brand-prev:hover::before { background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(0, 0, 0, 0.88) 100%); }
.brand-prev span {
    position: relative;
    z-index: 2;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}
.brand-prev-1 { background-image: url('assets/2026-03-18_이미지자료_193209.jpg'); }
.brand-prev-2 { background-image: url('assets/2026-03-18_이미지자료_193342.jpg'); }
.brand-prev-3 { background-image: url('assets/2026-03-18_이미지자료_193452.jpg'); }
.brand-prev-4 { background-image: url('assets/2026-03-18_이미지자료_193412.jpg'); }
.brand-prev-5 { background-image: url('assets/2026-03-20_이미지자료_033809.jpg'); }
.brand-prev-6 { background-image: url('assets/1(487).jpg'); }

/* ========== Reviews Preview ========== */
.reviews-preview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.review-mini {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.review-mini:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.review-mini-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f0f0f0;
}
.review-mini-img img { width: 100%; height: 100%; object-fit: cover; }
.review-mini-body { padding: 24px; }
.badge {
    display: inline-block;
    padding: 5px 12px;
    background: var(--dark-green);
    color: var(--green-light);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.review-mini h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.review-mini p {
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 12px;
}
.review-mini small {
    font-size: 12px;
    color: var(--text-3);
}

/* ========== Insight Preview ========== */
.insight-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.insight-mini {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}
.insight-mini:hover { transform: translateY(-4px); }
.insight-mini-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f0f0f0;
    margin-bottom: 16px;
    border-radius: 16px;
}
.insight-mini-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.insight-mini:hover .insight-mini-img img { transform: scale(1.05); }
.tag-mini {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green-bright);
    margin-bottom: 8px;
}
.insight-mini h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--text);
}
.insight-mini p {
    font-size: 14px;
    color: var(--text-2);
}

/* ========== Page Hero ========== */
.page-hero {
    padding: 120px 0 56px;
    color: var(--white);
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.72), rgba(0, 0, 0, 0.9));
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
}
.page-hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
}

.page-hero-collection { background-image: url('assets/2026-03-18_이미지자료_193209.jpg'); }
.page-hero-reviews { background-image: url('assets/2026-02-27_이미지자료_131744.jpeg'); }
.page-hero-insight { background-image: url('assets/2026-03-18_이미지자료_193342.jpg'); }
.page-hero-brand { background-image: url('assets/2026-03-20_이미지자료_033800.jpg'); }
.page-hero-about { background-image: url('assets/2026-02-27_이미지자료_131815.jpg'); }
.page-hero-contact { background-image: url('assets/2026-03-18_이미지자료_193452.jpg'); }

/* ========== Ad Banner ========== */
.ad-banner {
    display: grid;
    grid-template-columns: 1fr;
    background: linear-gradient(135deg, var(--dark-green), var(--black));
    border-radius: 20px;
    overflow: hidden;
    color: var(--white);
}
.ad-banner-text {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ad-label {
    display: inline-block;
    background: var(--green-bright);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
    width: fit-content;
}
.ad-banner-text h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}
.ad-banner-text p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}
.ad-banner-text .btn { width: fit-content; }
.ad-banner-img {
    background-image: url('assets/2026-03-18_이미지자료_193412.jpg');
    background-size: cover;
    background-position: center;
    min-height: 200px;
}

/* ========== Collection Tabs ========== */
.col-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
    background: var(--white);
    padding: 8px;
    border-radius: 16px;
    border: 1px solid var(--border);
}
.col-tab {
    padding: 18px 24px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s;
    background: transparent;
    color: var(--text-2);
}
.col-tab strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}
.col-tab span {
    font-size: 13px;
    color: var(--text-3);
}
.col-tab.active {
    background: var(--black);
}
.col-tab.active strong { color: var(--white); }
.col-tab.active span { color: var(--green-light); }

.col-panel { display: none; }
.col-panel.active { display: block; animation: fadeUp 0.4s ease; }

.filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.filter-chip {
    padding: 10px 22px;
    border: 1.5px solid var(--border);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-2);
    background: var(--white);
    white-space: nowrap;
    transition: all 0.2s;
}
.filter-chip.active,
.filter-chip:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.market-notice {
    padding: 20px 24px;
    background: var(--dark-green);
    color: var(--white);
    border-radius: 14px;
    margin-bottom: 32px;
}
.market-notice strong {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--green-light);
}
.market-notice p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
}

/* ========== Product Grid ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.product-card {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
    cursor: pointer;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--green-bright);
}
.product-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.5s;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    z-index: 2;
}
.product-tag.ny { background: var(--green); color: var(--white); }
.product-tag.user { background: rgba(255,255,255,0.9); color: var(--text); border: 1px solid var(--border); }
.product-body { padding: 20px; }
.product-brand {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green-bright);
    margin-bottom: 6px;
}
.product-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
    line-height: 1.4;
}
.product-ref {
    font-size: 12px;
    color: var(--text-3);
    margin-bottom: 12px;
}
.product-price {
    font-size: 19px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}
.seller {
    font-size: 12px;
    color: var(--text-3);
}

/* ========== Reviews Page ========== */
.review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.review-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: var(--green);
}
.review-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f0f0f0;
}
.review-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.review-card:hover .review-img img { transform: scale(1.05); }
.review-body { padding: 28px; }
.review-body h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 16px;
}
.review-quote {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--bg-soft);
    border-radius: 12px;
    border-left: 3px solid var(--green-bright);
}
.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.review-meta span:first-child {
    color: var(--gold);
    font-size: 14px;
}
.review-meta small {
    font-size: 12px;
    color: var(--text-3);
}

/* ========== Insight Page ========== */
.insight-tabs-bar {
    display: flex;
    gap: 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
    overflow-x: auto;
}
.insight-tab {
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-3);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: all 0.2s;
}
.insight-tab.active,
.insight-tab:hover {
    color: var(--text);
    border-bottom-color: var(--green-bright);
    font-weight: 700;
}

.insight-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
    cursor: pointer;
}
.insight-featured-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 20px;
}
.insight-featured-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.insight-featured:hover .insight-featured-img img { transform: scale(1.04); }
.insight-featured-body h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin: 12px 0 20px;
}
.insight-featured-body p {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 20px;
}
.insight-meta {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--text-3);
}

.insight-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.insight-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 16px;
    align-items: start;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}
.insight-row:last-child { border-bottom: none; }
.insight-row-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 14px;
}
.insight-row-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.insight-row:hover .insight-row-img img { transform: scale(1.05); }
.insight-row-body h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 6px 0 8px;
    line-height: 1.4;
}
.insight-row-body p {
    font-size: 13px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.insight-row-body p {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 14px;
}

/* ========== Brand Story ========== */
.brand-story {
    display: grid;
    grid-template-columns: 1fr;
}
.brand-story-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.brand-story-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.brand-story-text {
    background: var(--black);
    color: var(--white);
    padding: 48px 24px;
}
.brand-name {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 12px;
    color: var(--white);
}
.brand-tagline {
    font-size: 20px;
    color: var(--green-bright);
    margin-bottom: 24px;
    font-weight: 600;
}
.brand-body {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 16px;
}

.brand-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
}
.brand-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.brand-card:hover {
    transform: translateY(-4px);
    border-color: var(--green-bright);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.brand-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.brand-card-img img { width: 100%; height: 100%; object-fit: cover; }
.brand-card-body { padding: 28px; }
.brand-card h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.brand-card-sub {
    font-size: 12px;
    color: var(--green-bright);
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 12px;
}
.brand-card p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
}

/* ========== About: Promises ========== */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
}
.promise-card {
    padding: 36px 28px;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.promise-card:hover {
    border-color: var(--green-bright);
    transform: translateY(-4px);
}
.promise-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--green-bright);
    margin-bottom: 16px;
    line-height: 1;
}
.promise-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.promise-card p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
}

/* About: Company Info */
.company-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.info-list { margin-top: 24px; }
.info-list li {
    display: flex;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}
.info-list li strong {
    width: 120px;
    color: var(--text-3);
    font-weight: 600;
}
.info-list li span {
    color: var(--text);
    font-weight: 600;
}
.map-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--dark-green), var(--black));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 8px;
}
.map-placeholder span {
    font-size: 18px;
    font-weight: 700;
}
.map-placeholder small {
    color: var(--green-light);
    font-size: 13px;
}

/* ========== Contact Form ========== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.quote-form {
    background: var(--white);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--border);
}
.quote-form h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 32px;
}
.quote-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin: 20px 0 8px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-row label { margin-top: 20px; }
.form-row label:first-child { margin-top: 0; }
.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    color: var(--text);
    font-size: 15px;
    transition: border-color 0.2s;
    margin-top: 8px;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { border-color: var(--green-bright); }
.quote-form textarea { resize: vertical; font-family: inherit; }
.quote-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23111'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 42px;
}
.form-note {
    font-size: 12px;
    color: var(--text-3);
    text-align: center;
    margin-top: 16px;
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-card {
    background: var(--white);
    padding: 28px;
    border-radius: 18px;
    border: 1px solid var(--border);
}
.contact-card h4 {
    font-size: 14px;
    color: var(--green-bright);
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.contact-card p {
    font-size: 14px;
    color: var(--text-2);
    margin-top: 8px;
}
.contact-big-tel {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 4px;
}
.kakao-card { background: linear-gradient(135deg, #FFEB3B 0%, #FEE500 100%); border: none; }
.kakao-card h4 { color: #3a2e00; }
.kakao-card p { color: #5a4a00; }

/* ========== Bottom CTA Band (인사이트 위 푸터식) ========== */
.bottom-cta-band {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--black) 100%);
    color: var(--white);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.bottom-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.06), transparent 60%),
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04), transparent 50%);
}
.band-flex {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.band-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.band-cta .btn { flex: 1; min-width: 140px; }
.band-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--green-bright);
    font-weight: 700;
    margin-bottom: 12px;
}
.band-flex h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}
.band-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}
.band-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========== Footer ========== */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 56px 0 calc(var(--tabbar-h) + 24px);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-dark);
}
.footer-brand { grid-column: 1 / -1; }
.footer-logo {
    display: block;
    margin-bottom: 16px;
}
.footer-logo img {
    height: 26px;
    width: auto;
    /* 어두운 푸터 → 로고 흰색 */
    filter: brightness(0) invert(1);
}
.footer-logo em {
    font-style: normal;
    color: var(--green-bright);
}
.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}
.footer-social a {
    width: 38px; height: 38px;
    display: block;
    transition: transform 0.2s, opacity 0.2s;
}
.footer-social a:hover { transform: translateY(-2px); opacity: 0.85; }
.footer-social img {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
}
.footer-sns {
    display: flex;
    gap: 10px;
}
.footer-sns a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}
.footer-sns a:hover {
    border-color: var(--green-bright);
    color: var(--green-bright);
}
.footer-col h5 {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.footer-col a {
    display: block;
    font-size: 13px;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-bright); }
.footer-col p {
    font-size: 13px;
    margin-bottom: 6px;
}
.footer-tel {
    font-size: 22px;
    font-weight: 800;
    color: var(--white) !important;
    margin-bottom: 8px !important;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0 16px;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-company p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}
.footer-links a:hover { color: var(--green-bright); }
.footer-copy {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 16px;
    letter-spacing: 1px;
}

/* ========== 홈 히어로 3 CTA ========== */
.hero-cta-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.hero-cta-3 .btn {
    padding: 14px 8px;
    font-size: 14px;
    white-space: nowrap;
    min-width: 0;
}
.hero-new .hero-image {
    /* Unsplash 흑백 럭셔리 시계 (핫링크 안정 CDN) */
    background-image: url('https://images.unsplash.com/photo-1523275335684-37898b6baf30?auto=format&fit=crop&w=1600&q=80');
}

/* ========== 폼 페이지 (판매/구입/수리) ========== */
.page-form .page-hero {
    padding-top: 100px;
}
.page-hero-sell { background-image: url('assets/2026-03-18_이미지자료_193412.jpg'); }
.page-hero-buy { background-image: url('assets/2026-03-18_이미지자료_193452.jpg'); }
.page-hero-repair { background-image: url('assets/2026-03-18_이미지자료_193432.jpg'); }

.quick-tel-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--dark-green), var(--black));
    color: var(--white);
    padding: 18px 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    transition: transform 0.2s;
}
.quick-tel-card:hover { transform: translateY(-2px); }
.quick-tel-card .qt-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    background: rgba(150,150,150,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.quick-tel-card strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
    color: var(--green-bright);
    font-weight: 800;
}
.quick-tel-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 22px;
}
.form-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 18px;
}
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}
.form-label input,
.form-label select,
.form-label textarea {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 13px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
}
.form-label input:focus,
.form-label select:focus,
.form-label textarea:focus { border-color: var(--green-bright); outline: none; }
.form-label textarea { resize: vertical; font-family: inherit; }
.form-label select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23111'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 38px;
}
.form-hint {
    display: block;
    font-size: 11px;
    color: var(--text-3);
    font-weight: 500;
    margin-top: 6px;
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ========== 비교견적: 매입완료 표시 ========== */
.auction-recent {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(150,150,150,0.1);
    border: 1px solid rgba(150,150,150,0.25);
    border-radius: 10px;
}
.recent-dot {
    width: 8px;
    height: 8px;
    background: var(--green-bright);
    border-radius: 50%;
    animation: pulseGreen 1s infinite;
}
@keyframes pulseGreen {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}
.recent-by {
    flex: 1;
    font-size: 13px;
    color: var(--white);
    font-weight: 700;
}
.recent-time {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

/* 매입완료 시 가격에 줄긋기 */
.auction-status.done .auction-price strong {
    color: var(--green-bright);
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}
.auction-status.done .auction-recent { display: none; }
.auction-done {
    margin-top: 16px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
    color: var(--white);
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(150,150,150,0.35);
}
.done-badge {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 6px;
    color: var(--white);
}

/* ========== 직영점 강조 ========== */
.official-badge-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.official-badge {
    background: rgba(150,150,150,0.1);
    color: var(--green-bright);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(150,150,150,0.25);
}
.official-badge strong {
    color: var(--green-bright);
    margin-right: 4px;
    font-weight: 900;
}

/* ========== 제휴처 섹션 타이틀 ========== */
.partner-section-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    margin: 16px 0 12px;
    padding-left: 4px;
}
.partner-badge.branch-badge {
    background: var(--green-bright);
    color: var(--white);
}
.partner-card.branch {
    background: linear-gradient(135deg, #f5f9f7, var(--white));
    border-color: rgba(150,150,150,0.2);
}

/* ========== 페이지 히어로 슬라이더 (판매시계) ========== */
.page-hero-slider {
    padding-top: 76px;
    background: var(--white);
}
.page-hero-slider .event-slider {
    margin-top: 0;
}
.page-hero-slider .event-inner {
    border-radius: 0 0 20px 20px;
    height: 240px;
}

/* ========== 홈: LIVE 비교견적 진행 현황 ========== */
.live-board-section {
    background: linear-gradient(180deg, #0a1410 0%, #050505 100%);
    color: var(--white);
    padding: 56px 0 64px;
    position: relative;
    overflow: hidden;
}
.live-board-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 10%, rgba(150,150,150,0.18), transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(150,150,150,0.1), transparent 50%);
}
.live-board-section > .container { position: relative; }

.live-board-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    flex-wrap: wrap;
}
.live-board-header strong {
    color: var(--white);
    font-weight: 900;
    letter-spacing: 1px;
}
.live-board-header .live-title {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    margin-left: 4px;
}
.live-board-header .live-count {
    margin-left: auto;
    font-size: 11px;
    color: var(--green-bright);
    background: rgba(150,150,150,0.15);
    padding: 4px 10px;
    border-radius: 30px;
    font-weight: 700;
}

.live-board {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.live-row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 14px;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 16px;
    transition: all 0.3s;
}
.live-row.new-in {
    animation: boardSlideIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.live-row.highlight {
    border-color: var(--green-bright);
    background: rgba(150,150,150,0.08);
}
@keyframes boardSlideIn {
    from { opacity: 0; transform: translateY(-20px); max-height: 0; }
    to { opacity: 1; transform: translateY(0); max-height: 120px; }
}

.live-row-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background: #1a1a1a;
}
.live-row-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.live-row-info {
    min-width: 0;
}
.live-row-model {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.live-row-by {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
    margin-bottom: 4px;
}
.live-row-by b {
    color: var(--green-bright);
    font-weight: 700;
}
.live-row-by .amount {
    color: var(--white);
    font-weight: 800;
}
.live-row-meta {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    gap: 8px;
}

.live-row-badge {
    padding: 5px 11px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
    align-self: flex-start;
}
.badge-progress {
    background: rgba(150,150,150,0.2);
    color: var(--green-bright);
    border: 1px solid rgba(150,150,150,0.4);
}
.badge-done {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}
.badge-pending {
    background: rgba(0, 0, 0, 0.06);
    color: #666666;
    border: 1px solid rgba(0, 0, 0, 0.16);
}
.badge-end {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
}

/* ========== 비교견적 페이지: 등록된 시계 상세 ========== */
.auction-detail-section {
    background: var(--bg-soft);
    padding: 56px 0;
}
.registered-watch {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    margin-top: 0;
}

/* 이미지 + 내용 가로 배치 (한 열) */
.registered-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0;
    align-items: stretch;
}
.registered-img-side {
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.registered-img-side img {
    width: 100%;
    height: 100%;
    max-height: 160px;
    object-fit: contain;
}
.registered-row .registered-info {
    padding: 18px 18px 20px;
}
.registered-row .registered-status {
    font-size: 10px;
    padding: 4px 10px;
    margin-bottom: 10px;
}
.registered-row .registered-model {
    font-size: 17px;
    margin-bottom: 12px;
}
.registered-row .registered-spec {
    padding: 4px 14px;
}
.registered-row .registered-spec li {
    font-size: 12px;
    padding: 7px 0;
}
.registered-info { padding: 22px 22px 24px; }
.registered-status {
    display: inline-block;
    background: rgba(150,150,150,0.12);
    color: var(--green-bright);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.registered-brand {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--green-bright);
    margin-bottom: 4px;
}
.registered-model {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}
.registered-spec {
    list-style: none;
    padding: 0;
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 6px 16px;
}
.registered-spec li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ebebeb;
    font-size: 13px;
}
.registered-spec li:last-child { border-bottom: none; }
.registered-spec li span { color: var(--text-3); }
.registered-spec li strong { color: var(--text); font-weight: 700; }

.auction-status {
    background: var(--black);
    color: var(--white);
    border-radius: 18px;
    padding: 24px 22px;
    margin-top: 16px;
}
.auction-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 18px;
}
.auction-label {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.auction-price strong {
    font-size: 36px;
    font-weight: 900;
    color: var(--green-bright);
    display: inline-block;
    font-variant-numeric: tabular-nums;
}
.auction-price em {
    font-style: normal;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-left: 6px;
    font-weight: 700;
}
.auction-price.flash strong {
    transform: scale(1.08);
}
.auction-count {
    text-align: right;
}
.auction-count p {
    font-size: 13px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 2px;
}
.auction-count strong {
    font-size: 26px;
    font-weight: 900;
    color: var(--green-bright);
}
.auction-count span {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.auction-progress {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}
.auction-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
    /* JS에서 requestAnimationFrame으로 부드럽게 제어 */
}
.auction-range {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}
.auction-range span span { color: var(--green-bright); font-weight: 700; }

.auction-feed-wrap {
    margin-top: 24px;
}
.auction-feed {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    max-height: 360px;
    overflow-y: auto;
    margin-top: 12px;
}
.auction-feed-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    animation: feedSlideIn 0.4s ease;
}
.auction-feed-row:last-child { border-bottom: none; }
.auction-feed-bidder {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-weight: 700;
}
.auction-feed-bidder::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--green-bright);
    border-radius: 50%;
}
.auction-feed-time {
    font-size: 10px;
    color: var(--text-3);
    margin-left: 4px;
    font-weight: 500;
}
.auction-feed-amount {
    font-weight: 900;
    color: var(--text);
    font-size: 14px;
}
.auction-feed-amount em {
    font-style: normal;
    font-size: 11px;
    color: var(--text-3);
    margin-left: 3px;
}

/* ========== 로그인 모달: 추가 메뉴 ========== */
.login-extra {
    border-top: 1px solid var(--border);
    margin-top: 22px;
    padding-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
}
.extra-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 6px;
    border-radius: 10px;
    background: var(--bg-soft);
    font-size: 11px;
    color: var(--text-2);
    font-weight: 600;
    transition: all 0.2s;
}
.extra-link:hover {
    background: var(--green);
    color: var(--white);
}
.extra-icon {
    font-size: 18px;
    line-height: 1;
}
.admin-hint {
    text-align: center;
    font-size: 11px;
    color: var(--text-3);
    margin-top: 14px;
}
.admin-hint code {
    background: var(--bg-soft);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    color: var(--text);
    font-weight: 700;
}

/* ========== 인사이트: 제휴처 그리드 ========== */
.partner-grid {
    padding: 16px 0;
}
.partner-grid-title {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 13px;
    color: var(--text-2);
    margin-bottom: 16px;
    line-height: 1.5;
}
.partner-grid-title strong {
    color: var(--green-bright);
    font-weight: 800;
}
.partner-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.partner-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 14px;
    text-align: left;
    transition: all 0.2s;
    position: relative;
}
.partner-card:hover {
    border-color: var(--green-bright);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.partner-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--dark-green);
    color: var(--green-light);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}
.partner-card strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
    padding-right: 50px;
    line-height: 1.3;
}
.partner-card small {
    font-size: 11px;
    color: var(--text-3);
    line-height: 1.4;
}

/* ========== 관리자 패널 ========== */
.admin-only.show {
    display: block !important;
}
.admin-only[hidden] { display: none; }

.admin-add-btn {
    width: 100%;
    background: #fff;
    color: #2b2620;
    padding: 13px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1.5px dashed #cfc8bb;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.admin-add-btn:hover { background: #f7f5f0; border-color: #b8af9e; }
.admin-add-btn:active { transform: scale(0.98); }

.admin-panel {
    background: #f6f6f6;
    border: 1.5px dashed #cfcfcf;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
}
.admin-panel-title {
    font-size: 13px;
    font-weight: 800;
    color: #d33;
    margin-bottom: 12px;
}
.admin-pending-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 8px;
}
.admin-pending-item:last-child { margin-bottom: 0; }
.admin-pending-img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}
.admin-pending-img img { width: 100%; height: 100%; object-fit: cover; }
.admin-pending-info strong {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--green-bright);
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.admin-pending-info p {
    font-size: 12px;
    color: var(--text);
    margin-bottom: 2px;
}
.admin-pending-info small {
    font-size: 10px;
    color: var(--text-3);
}
.admin-pending-actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.admin-btn {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    border: 0;
}
.admin-btn.approve {
    background: var(--green-bright);
    color: var(--white);
}
.admin-btn.reject {
    background: var(--bg-soft);
    color: var(--text-2);
}

/* 관리자 모드: 상단 배너 제거 — 확인은 마이페이지에서만 */
body.admin-mode::after { content: none; display: none; }
body.admin-mode .header { top: 0; }
body.admin-mode .main-wrap { padding-top: 0; }

/* ========== EXCLUSIVE PRICING 카드 슬라이드 (사용 안함 - 보존만) ========== */
.exclusive-section {
    background: var(--black);
    color: var(--white);
    padding: 64px 0;
    overflow: hidden;
}
.exclusive-eyebrow {
    color: var(--green-bright);
    letter-spacing: 4px;
    font-size: 11px;
    font-weight: 700;
}

.exclusive-slider {
    margin-top: 32px;
    position: relative;
    overflow: hidden;
}
.exclusive-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.exclusive-slide {
    flex: 0 0 100%;
    padding: 0 24px;
}
.exclusive-card {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid var(--border-dark);
    border-radius: 22px;
    padding: 36px 24px 28px;
    text-align: center;
}
.exclusive-img-wrap {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
}
.exclusive-img-wrap img {
    max-height: 240px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.exclusive-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    text-align: left;
}
.exclusive-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-align: left;
    margin-bottom: 22px;
}
.exclusive-divider {
    height: 1px;
    background: var(--border-dark);
    margin-bottom: 22px;
}
.exclusive-prices {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
}
.exclusive-price-col p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
}
.exclusive-price-col strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
}
.exclusive-price-col.target {
    text-align: right;
}
.exclusive-price-col.target p {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}
.exclusive-badge {
    background: #ffffff;
    color: #111111;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 900;
}
.exclusive-target-label {
    font-size: 13px;
    color: var(--white);
    font-weight: 700;
}
.exclusive-price-col.target strong {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
}

.exclusive-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
}
.exclusive-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.exclusive-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--green-bright);
}

/* ========== 컬렉션 2단 그리드 ========== */
.col-grid {
    margin-top: 24px;
}
.col-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.col-grid-inner .hcard {
    flex: none;
    width: auto;
}

/* ========== 로그인 모달 - 회원가입 추가 ========== */
.login-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
    margin-top: 8px;
}
.login-tab {
    flex: 1;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-3);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    background: none;
}
.login-tab.active {
    color: var(--text);
    border-bottom-color: var(--green-bright);
    font-weight: 800;
}
.login-panel { display: none; }
.login-panel.active { display: block; animation: fadeIn 0.3s ease; }

.login-divider {
    text-align: center;
    position: relative;
    margin: 22px 0 18px;
    font-size: 12px;
    color: var(--text-3);
}
.login-divider::before,
.login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: var(--border);
}
.login-divider::before { left: 0; }
.login-divider::after { right: 0; }
.login-divider span { background: var(--white); padding: 0 12px; position: relative; z-index: 1; }

.login-form,
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.login-form input,
.signup-form input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    background: var(--white);
}
.login-form input:focus,
.signup-form input:focus { border-color: var(--green-bright); outline: none; }

.signup-form label {
    display: block;
}
.signup-form label > span {
    display: block;
    font-size: 12px;
    color: var(--text-2);
    margin-bottom: 6px;
    font-weight: 600;
}
.signup-check {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 10px 0 6px;
}
.signup-check input { width: auto; }
.signup-check span {
    font-size: 12px;
    color: var(--text-2);
    margin-bottom: 0 !important;
}

.login-btn.login-default {
    background: var(--text);
    color: var(--white);
    margin-top: 4px;
}

.login-switch {
    text-align: center;
    font-size: 13px;
    color: var(--text-2);
    margin-top: 18px;
}
.link-switch {
    color: var(--green-bright);
    font-weight: 700;
    margin-left: 4px;
    text-decoration: underline;
    background: none;
}

/* ========== 홈 판매시계 가로 스와이프 - 여백 정리 ========== */
/* 컨테이너 안쪽으로 시작 + 깔끔한 패딩 */

/* ========== 홈 실시간 매입 피드 리스트 ========== */
.feed-section {
    padding: 48px 0;
    background: var(--bg-soft);
}
.feed-section .live-header {
    margin-bottom: 20px;
}
.feed-section .live-header strong {
    color: var(--text);
}
.feed-section .live-header .live-sub {
    color: var(--text-3);
}

.bid-feed-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
}
.bid-feed-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    animation: feedSlideIn 0.4s ease;
}
.bid-feed-item:last-child { border-bottom: none; }

@keyframes feedSlideIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.feed-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}
.feed-thumb img { width: 100%; height: 100%; object-fit: cover; }
.feed-info { flex: 1; min-width: 0; }
.feed-model {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.3;
}
.feed-model strong {
    font-weight: 800;
    color: var(--green-bright);
    letter-spacing: 0.5px;
    margin-right: 6px;
}
.feed-by {
    font-size: 13px;
    color: var(--text-2);
    margin-bottom: 6px;
    line-height: 1.4;
}
.feed-by b {
    color: var(--text);
    font-weight: 700;
}
.feed-meta {
    display: flex;
    gap: 10px;
    font-size: 11px;
    color: var(--text-3);
    align-items: center;
}
.feed-meta .time {
    color: var(--text-3);
}
.feed-meta .status {
    padding: 3px 9px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.3px;
}
.status-done {
    background: rgba(150,150,150,0.12);
    color: var(--green-bright);
}
.status-progress {
    background: #f0f0f0;
    color: #555555;
}
.status-pending {
    background: #f0f0f0;
    color: var(--text-2);
}

/* ========== 비교견적 페이지: 경매 카드 ========== */
.auction-section {
    padding: 48px 0;
    background: var(--bg-soft);
}
.auction-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
}
.auction-watch {
    width: 100%;
    aspect-ratio: 16/10;
    background: #f0f0f0;
    overflow: hidden;
}
.auction-watch img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s; }
.auction-watch.fading img { opacity: 0; }

.auction-info {
    padding: 24px 22px 22px;
}
.auction-brand {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--green-bright);
    margin-bottom: 4px;
}
.auction-model {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 18px;
}
.auction-label {
    font-size: 12px;
    color: var(--text-3);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.auction-price {
    margin-bottom: 18px;
}
.auction-price strong {
    font-family: var(--serif);
    font-size: 46px;
    font-weight: 600;
    color: var(--green-bright);
    transition: transform 0.3s, color 0.3s;
    display: inline-block;
}
.auction-price.flash strong {
    transform: scale(1.06);
    color: var(--green-light);
}
.auction-price em {
    font-style: normal;
    font-size: 18px;
    color: var(--text-2);
    margin-left: 6px;
    font-weight: 700;
}

.auction-progress {
    width: 100%;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}
.auction-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.auction-range {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-3);
    font-weight: 600;
}

.auction-feed-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.auction-feed {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    max-height: 320px;
    overflow-y: auto;
}
.auction-feed-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    animation: feedSlideIn 0.4s ease;
}
.auction-feed-row:last-child { border-bottom: none; }
.auction-feed-bidder {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-2);
    font-weight: 600;
}
.auction-feed-bidder::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--green-bright);
    border-radius: 50%;
}
.auction-feed-amount {
    font-weight: 900;
    color: var(--text);
    font-size: 14px;
}
.auction-feed-amount em {
    font-style: normal;
    font-size: 11px;
    color: var(--text-3);
    margin-left: 3px;
}

/* ========== 로그인 모달 ========== */
.login-modal {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.login-modal[hidden] { display: none; }
.login-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    animation: fadeIn 0.3s ease;
}
.login-content {
    position: relative;
    width: 100%;
    max-width: 380px;
    max-height: 88vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: 20px;
    padding: 26px 22px 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    animation: modalIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.login-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    color: var(--text);
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-head { margin-bottom: 16px; }
.login-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--green-bright);
    margin-bottom: 6px;
}
.login-head h2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
}
.login-head h2 strong {
    font-weight: 900;
    color: var(--text);
}

.login-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}
.login-btn:hover { opacity: 0.9; }
.login-kakao {
    background: var(--kakao);
    color: #111;
}
.login-icon-kakao {
    width: 18px; height: 18px;
    background: #111;
    border-radius: 50%;
    position: relative;
}
.login-icon-kakao::after {
    content: '💬';
    font-size: 12px;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-naver {
    background: #03C75A;
    color: #fff;
}
.login-icon-naver {
    width: 20px; height: 20px;
    background: #fff;
    color: #03C75A;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
}

.login-note {
    font-size: 12px;
    color: var(--text-3);
    text-align: center;
    margin: 20px 0;
    line-height: 1.6;
}

.my-info-mini {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
}
.my-info-mini h4 {
    font-size: 12px;
    color: var(--text-3);
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.my-info-tel {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 4px;
}
.my-info-mini p {
    font-size: 12px;
    color: var(--text-2);
}

/* ========== 상품 상세 모달 ========== */
/* ========== 상품 상세 (전체 페이지) ========== */
.product-page {
    position: fixed;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--app-w);
    z-index: 2500;
    background: var(--white);
    display: flex;
    flex-direction: column;
    animation: ppIn 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 0 60px rgba(0,0,0,0.18);
}
.product-page[hidden] { display: none; }
@keyframes ppIn { from { opacity: 0; transform: translate(-50%, 16px); } to { opacity: 1; transform: translate(-50%, 0); } }

.pp-topbar {
    flex-shrink: 0;
    height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}
.pp-back, .pp-top-wish {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text); border-radius: 50%;
}
.pp-back:active, .pp-top-wish:active { background: var(--bg-soft); }
.pp-topbar-title { flex: 1; font-size: 16px; font-weight: 700; }
.pp-top-wish.on { color: #111111; }

.pp-scroll { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }

/* 갤러리 */
.pp-gallery { background: #f7f5f1; }
.pp-main {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    padding: 28px;
}
.pp-main img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pp-count {
    position: absolute;
    bottom: 14px; left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 20px;
}
.pp-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px 16px 16px;
    overflow-x: auto;
}
.pp-thumb {
    flex-shrink: 0;
    width: 58px; height: 58px;
    border-radius: 8px;
    border: 1.5px solid transparent;
    background: #fff;
    overflow: hidden;
    padding: 4px;
}
.pp-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pp-thumb.on { border-color: var(--green); }

/* 핵심 정보 */
.pp-info { padding: 20px 18px 8px; }
.pp-brand-row { display: flex; align-items: center; justify-content: space-between; }
.pp-brand {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text);
}
.pp-used {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-3);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 4px;
}
.pp-title { font-size: 16px; font-weight: 600; color: var(--text-2); margin-top: 6px; line-height: 1.5; }
.pp-price { font-size: 26px; font-weight: 900; margin: 14px 0 18px; }
.pp-price .won { font-size: 17px; font-weight: 700; margin-left: 1px; }

.pp-meta {
    border-top: 1px solid var(--border);
    padding: 14px 0;
}
.pp-meta-row {
    display: flex;
    gap: 14px;
    font-size: 13px;
    padding: 4px 0;
}
.pp-meta-row > span {
    flex-shrink: 0;
    width: 72px;
    color: var(--text-3);
}
.pp-meta-row > strong { font-weight: 600; color: var(--text); }
.pp-meta-benefit > strong { color: var(--green); font-weight: 500; line-height: 1.7; font-size: 12.5px; }

/* 탭 */
.pp-tabs {
    display: flex;
    border-top: 8px solid var(--bg-soft);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0;
    background: var(--white);
    z-index: 1;
}
.pp-tab {
    flex: 1;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-3);
    border-bottom: 2px solid transparent;
}
.pp-tab.active { color: var(--text); border-bottom-color: var(--dark-green); font-weight: 800; }

.pp-panel { padding: 22px 18px 30px; }
.pp-sec-title { font-size: 15px; font-weight: 800; margin: 22px 0 12px; }
.pp-sec-title:first-child { margin-top: 0; }

/* 부속품 */
.pp-acc { display: flex; gap: 10px; }
.pp-acc-item {
    flex: 1;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 14px 4px;
}
.pp-acc-ic { display: block; font-size: 20px; margin-bottom: 6px; filter: grayscale(0.2); }
.pp-acc-item.off { opacity: 0.38; }

/* 기본 정보 */
.pp-spec { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.pp-spec-row {
    display: flex;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
}
.pp-spec-row:last-child { border-bottom: none; }
.pp-spec-row > span {
    width: 100px; flex-shrink: 0;
    background: var(--bg-soft);
    color: var(--text-3);
    padding: 12px 14px;
}
.pp-spec-row > strong { padding: 12px 14px; font-weight: 600; }

.pp-desc { margin-top: 22px; font-size: 13.5px; color: var(--text-2); line-height: 1.7; }
.pp-desc h4 { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.pp-desc ul { padding-left: 18px; }
.pp-desc li { margin-bottom: 4px; }

.pp-detail-imgs { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.pp-detail-imgs img { width: 100%; border-radius: 10px; }

.pp-ask-desc, .pp-notice { font-size: 13.5px; color: var(--text-2); line-height: 1.8; }
.pp-notice { padding-left: 18px; }
.pp-notice li { margin-bottom: 8px; }
.pp-ask-desc { margin-bottom: 16px; }

/* 하단 고정 구매바 */
.pp-bottom {
    flex-shrink: 0;
    display: flex;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: var(--white);
}
.pp-wish {
    width: 52px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-2);
}
.pp-wish.on { color: #111111; border-color: var(--border); }
.pp-buy {
    flex: 1;
    background: var(--dark-green);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    border-radius: 10px;
}
.pp-buy:active { opacity: 0.9; }

/* ========== 소개 강화 ========== */
.about-vision {
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.9;
}

.kf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}
.kf-card {
    background: var(--black-card);
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
}
.kf-card strong {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: var(--green-bright);
    margin-bottom: 6px;
}
.kf-card strong em {
    font-style: normal;
    font-size: 18px;
}
.kf-card span {
    display: block;
    font-size: 13px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 4px;
}
.kf-card small {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.expert-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    margin-top: 32px;
}
.expert-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--black);
}
.expert-img img { width: 100%; height: 100%; object-fit: cover; }
.expert-info { padding: 28px 24px; }
.expert-role {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--green-bright);
    margin-bottom: 6px;
}
.expert-info h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
}
.expert-list {
    list-style: none;
    padding: 0;
}
.expert-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 14px;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
}
.expert-list li:last-child { border-bottom: none; }
.expert-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 11px;
    width: 20px;
    height: 20px;
    background: var(--green);
    color: #fff;
    font-size: 11px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}
.cert-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
}
.cert-icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.cert-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}
.cert-card p {
    font-size: 12px;
    color: var(--text-2);
}

.process-list {
    list-style: none;
    padding: 0;
    margin-top: 32px;
    counter-reset: step;
}
.process-list li {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}
.process-list li:last-child { border-bottom: none; }
.process-num {
    width: 36px;
    height: 36px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 15px;
    flex-shrink: 0;
}
.process-list li strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}
.process-list li p {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.6;
}

/* 매장 카드 (강화 버전) */
.store-card-rich {
    padding: 0;
    overflow: hidden;
}
.store-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--black);
}
.store-img img { width: 100%; height: 100%; object-fit: cover; }
.store-body { padding: 18px 20px 20px; }

/* ========== 가로 스와이프 (홈) ========== */
.hscroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    padding: 8px 0 16px 24px;
    margin: 24px 0 0;
    cursor: grab;
    /* 스크롤바 숨김 */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.hscroll:active { cursor: grabbing; }
.hscroll::-webkit-scrollbar { display: none; }
.hscroll-track {
    display: flex;
    gap: 12px;
    width: max-content;
    padding-right: 24px;
}
.hcard {
    flex: 0 0 200px;
    width: 200px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    cursor: pointer;
    user-select: none;
}
.hcard:hover {
    transform: translateY(-6px);
    border-color: rgba(0,0,0,0.16);
    box-shadow: 0 18px 42px rgba(0,0,0,0.10);
}
.hcard-img {
    width: 100%;
    aspect-ratio: 1;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}
.hcard-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.hcard-tag {
    position: absolute;
    top: 10px; left: 10px;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}
.hcard-tag.ny { background: var(--green); color: var(--white); }
.hcard-tag.user { background: rgba(255,255,255,0.9); color: var(--text); border: 1px solid var(--border); }
.hcard-brand {
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-bright);
    padding: 12px 14px 0;
    margin: 0;
}
.hcard-model {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    padding: 4px 14px 8px;
    margin: 0;
    line-height: 1.3;
    min-height: 36px;
}
.hcard-price {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--text);
    padding: 0 14px 14px;
    margin: 0;
}
.hcard-price em {
    font-style: normal;
    font-size: 11px;
    color: var(--text-3);
    margin-left: 2px;
    font-weight: 600;
}

/* ========== 매입방식 사진 ========== */
.method-thumb {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--black);
    flex-shrink: 0;
}
.method-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.method-info { flex: 1; }

/* ========== 시계 사진 슬라이드 (실시간 입찰 위) ========== */
.live-watch-stage {
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
    border-radius: 16px;
    height: 110px;
    background: var(--black-card);
    border: 1px solid var(--border-dark);
}
.live-watch-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    opacity: 0;
    transform: translateX(60%);
}
.live-watch-card.in {
    animation: watchIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.live-watch-card.out {
    animation: watchOut 0.45s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}
@keyframes watchIn {
    0% { opacity: 0; transform: translateX(60%); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes watchOut {
    0% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(-60%); }
}
.live-watch-card .watch-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}
.live-watch-card .watch-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.live-watch-card .watch-meta strong {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--green-bright);
    margin-bottom: 4px;
}
.live-watch-card .watch-meta span {
    display: block;
    font-size: 14px;
    color: var(--white);
    font-weight: 700;
}

/* ========== 홈: 큰 실시간 비교견적 ========== */
.live-bid-big {
    padding: 48px 0;
    background: var(--black);
    color: var(--white);
}
.live-bid-big .live-header {
    margin-bottom: 24px;
}

.live-target-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--black-card);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
}
.live-target-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}
.live-target-img img { width: 100%; height: 100%; object-fit: cover; }
.live-target-brand {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--green-bright);
    margin-bottom: 4px;
}
.live-target-model {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.live-stage {
    position: relative;
    height: 76px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-green), var(--black-card));
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    margin-bottom: 16px;
}
.live-bid-card {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%) translateX(100%);
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
}
.live-bid-card.in {
    animation: bidSlideIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.live-bid-card.out {
    animation: bidSlideOut 0.5s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}
@keyframes bidSlideIn {
    0% { transform: translateY(-50%) translateX(110%); opacity: 0; }
    100% { transform: translateY(-50%) translateX(0); opacity: 1; }
}
@keyframes bidSlideOut {
    0% { transform: translateY(-50%) translateX(0); opacity: 1; }
    100% { transform: translateY(-50%) translateX(-110%); opacity: 0; }
}
.bid-bidder {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    letter-spacing: 0.3px;
}
.bid-bidder::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green-bright);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green-bright);
}
.bid-amount {
    font-weight: 900;
    font-size: 19px;
    color: var(--green-bright);
}
.bid-amount em { font-style: normal; font-size: 13px; color: rgba(255,255,255,0.6); margin-left: 4px; }

.live-best {
    text-align: center;
    padding: 18px;
    background: var(--black-card);
    border-radius: 14px;
    margin-bottom: 20px;
}
.live-best span {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 6px;
    letter-spacing: 1px;
}
.live-best strong {
    display: block;
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 600;
    color: var(--green-bright);
    transition: transform 0.2s, color 0.2s;
}
.live-best strong em { font-style: normal; font-size: 16px; margin-left: 4px; color: rgba(255,255,255,0.6); }
.live-best.flash strong { transform: scale(1.08); }

/* 최근 매물 카드 (홈) */
.recent-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
}
.recent-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s;
}
.recent-card:hover {
    transform: translateY(-4px);
    border-color: var(--green-bright);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.recent-img {
    aspect-ratio: 1;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.recent-img img {
    width: 100%; height: 100%;
    object-fit: contain;
}
.recent-info { padding: 14px; }
.recent-brand {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--green-bright);
    margin-bottom: 4px;
}
.recent-model {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 36px;
}
.recent-price {
    font-size: 13px;
    color: var(--text);
}
.recent-price em {
    font-style: normal;
    color: var(--text-3);
    font-size: 11px;
    margin-right: 4px;
}
.recent-price strong {
    font-weight: 900;
    font-size: 15px;
    color: var(--text);
}

/* 매입 방법 한 칸 */
.method-card {
    background: var(--black-card);
    border: 1px solid var(--border-dark);
    border-radius: 18px;
    padding: 8px 20px;
    margin-top: 32px;
}
.method-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.method-row:last-child { border-bottom: none; }
.method-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-bright);
    flex-shrink: 0;
}
.method-row strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}
.method-row p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

/* 브랜드 무한 슬라이드 (마퀴) */
.brand-marquee {
    overflow: hidden;
    padding: 40px 0;
    background: var(--bg-soft);
    margin-top: 32px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.brand-marquee-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: marquee 30s linear infinite;
}
.brand-chip {
    padding: 14px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text);
    white-space: nowrap;
    flex-shrink: 0;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* 업적 카드 */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
}
.ach-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
}
.ach-card strong {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--green-bright);
    margin-bottom: 8px;
    line-height: 1;
}
.ach-card span {
    font-size: 13px;
    color: var(--text-2);
    font-weight: 600;
}

/* 이벤트 슬라이드 (컬렉션) - 높이 고정 */
.event-slider {
    position: relative;
    overflow: hidden;
    margin-top: 24px;
}
.event-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: stretch;
}
.event-slide {
    flex: 0 0 100%;
    padding: 0 24px;
    display: flex;
}
.event-inner {
    width: 100%;
    background: linear-gradient(135deg, var(--dark-green), var(--black));
    color: var(--white);
    border-radius: 20px;
    padding: 36px 28px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.event-1 .event-inner {
    background-image:
        linear-gradient(135deg, rgba(13,43,34,0.85), rgba(10,10,10,0.9)),
        url('assets/2026-03-18_이미지자료_193432.jpg');
}
.event-2 .event-inner {
    background-image:
        linear-gradient(135deg, rgba(13,43,34,0.82), rgba(10,10,10,0.92)),
        url('assets/2026-02-27_이미지자료_131744.jpeg');
}
.event-3 .event-inner {
    background-image:
        linear-gradient(135deg, rgba(13,43,34,0.85), rgba(10,10,10,0.9)),
        url('assets/2026-03-18_이미지자료_193416.jpg');
}
.event-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(150,150,150,0.25), transparent 60%);
}
.event-inner > * { position: relative; z-index: 1; }
.event-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--green-bright);
    font-weight: 800;
    margin-bottom: 14px;
    width: fit-content;
}
.event-inner h3 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.event-inner h3 strong {
    color: var(--green-bright);
    font-weight: 900;
}
.event-inner p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 22px;
}
.event-inner .btn { width: fit-content; }
.event-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}
.event-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s;
    cursor: pointer;
}
.event-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--green-bright);
}

/* 인사이트 모달 */
.post-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.post-modal[hidden] { display: none; }
.post-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    animation: fadeIn 0.3s ease;
}
.post-modal-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    background: var(--white);
    border-radius: 20px;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    animation: modalIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.post-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    backdrop-filter: blur(8px);
}
.post-modal-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f0f0f0;
}
.post-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.post-modal-body { padding: 28px 24px 36px; }
.post-modal-body h2 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    margin: 12px 0 12px;
    letter-spacing: -0.5px;
}
.post-modal-meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: var(--text-3);
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.post-modal-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-2);
}
.post-modal-text p { margin-bottom: 16px; }
.post-modal-text h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin: 24px 0 12px;
}

/* 스크롤 안내 화살표 (SVG, 깔끔) */
.scroll-arrow-link {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    z-index: 4;
    opacity: 0;
    animation: heroLineIn 1s ease-out 1.8s forwards;
    padding: 8px;
    text-decoration: none;
}
.scroll-arrow-link svg {
    animation: arrowBounceY 1.5s ease-in-out infinite;
}
@keyframes arrowBounceY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* 다크 외곽선 버튼 */
.btn-outline-dark {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--text);
}
.btn-outline-dark:hover { background: var(--text); color: var(--white); }

.lead-sub {
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ========== 히어로 순차 애니메이션 ========== */
.anim-line {
    opacity: 0;
    transform: translateY(20px);
    animation: heroLineIn 0.7s ease-out forwards;
}
.hero-eyebrow.anim-line { animation-delay: 0.1s; }
.hero-title .anim-line:nth-child(1) { animation-delay: 0.3s; }
.hero-title .anim-line:nth-child(2) { animation-delay: 0.55s; }
.hero-title .anim-line:nth-child(3) { animation-delay: 0.8s; }
.hero-desc.anim-line { animation-delay: 1.1s; }
.hero-cta.anim-line { animation-delay: 1.35s; }
.hero-stats.anim-line { animation-delay: 1.6s; }

.hero-title .anim-line {
    display: block;
}

@keyframes heroLineIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* (스크롤 안내는 .scroll-arrow-link로 통합됨) */

/* ========== 시계 수리 ========== */
.repair-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}
.repair-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    transition: all 0.2s;
}
.repair-card:hover {
    border-color: var(--green-bright);
    transform: translateY(-3px);
}
.repair-icon {
    font-size: 32px;
    margin-bottom: 10px;
}
.repair-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}
.repair-card p {
    font-size: 12px;
    color: var(--text-2);
    line-height: 1.5;
}

/* ========== 인증 제휴처 ========== */
.partner-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 32px 0 24px;
}
.partner-stat {
    background: var(--dark-green);
    color: var(--white);
    padding: 20px 12px;
    border-radius: 14px;
    text-align: center;
}
.partner-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: var(--green-bright);
    margin-bottom: 4px;
}
.partner-stat span {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}
.partner-list {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}
.partner-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    font-size: 13px;
}
.partner-row:last-child { border-bottom: none; }
.partner-region {
    font-weight: 700;
    color: var(--text);
}
.partner-names {
    color: var(--text-2);
    line-height: 1.5;
}
.partner-note {
    margin-top: 14px;
    font-size: 11px;
    color: var(--text-3);
    text-align: center;
}

/* ========== 실시간 입찰 위젯 ========== */
.live-bid-section { padding: 40px 0; background: var(--black); color: var(--white); }
.live-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.live-header strong {
    color: var(--white);
    font-weight: 800;
    margin-right: 4px;
}
.live-header .live-dot {
    width: 8px; height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255,255,255,0.7);
    animation: pulseRed 1.2s infinite;
}
@keyframes pulseRed {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.15); }
}
.live-sub {
    margin-left: auto;
    color: var(--green-bright);
    font-size: 12px;
}
.live-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--black-card) 100%);
    border: 1px solid var(--border-dark);
    border-radius: 18px;
    padding: 20px;
    align-items: center;
}
.live-watch {
    width: 110px;
    height: 110px;
    border-radius: 14px;
    overflow: hidden;
    background: #f0f0f0;
}
.live-watch img { width: 100%; height: 100%; object-fit: cover; }
.live-model { font-size: 13px; color: var(--green-light); margin-bottom: 6px; font-weight: 600; }
.live-price-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.live-price {
    font-size: 28px;
    font-weight: 900;
    color: var(--green-bright);
    line-height: 1;
}
.live-price em { font-style: normal; font-size: 14px; margin-left: 4px; color: rgba(255,255,255,0.7); }
.live-bidders {
    margin-top: 10px;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    height: 14px;
    overflow: hidden;
}
.live-bidders .bidder-line { animation: slideUp 0.5s ease; }
@keyframes slideUp {
    from { transform: translateY(14px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.live-feed {
    margin-top: 16px;
    background: var(--black-card);
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    padding: 12px 16px;
    max-height: 200px;
    overflow-y: auto;
}
.feed-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    animation: slideUp 0.4s ease;
}
.feed-row:last-child { border-bottom: none; }
.feed-bidder {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}
.feed-bidder::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--green-bright);
    border-radius: 50%;
}
.feed-amount {
    color: var(--green-bright);
    font-weight: 700;
}

/* ========== 비교견적 폼 ========== */
.page-hero-compare {
    background-image: url('assets/2026-03-18_이미지자료_193412.jpg');
}
/* 비교견적 히어로: 배경 위 글씨가 흐릿하지 않도록 대비 강화 */
.page-hero-compare::before {
    background: linear-gradient(135deg, rgba(28, 22, 14, 0.82), rgba(16, 12, 8, 0.92));
}
.page-hero-compare .eyebrow.light { color: #f4f4f4; opacity: 1; letter-spacing: 2px; }
.page-hero-compare .page-hero-title { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.45); }
.page-hero-compare .page-hero-desc { color: rgba(255,255,255,0.92); text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.compare-form {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 20px;
    margin-top: 32px;
    border: 1px solid var(--border);
}
.upload-block { margin-bottom: 28px; }
.upload-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}
.upload-hint {
    font-size: 12px;
    color: var(--text-3);
    margin-bottom: 14px;
}
.upload-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.upload-cell {
    aspect-ratio: 1;
    border: 2px dashed var(--border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    background: var(--bg-soft);
}
.upload-cell.upload-add:hover {
    border-color: var(--green-bright);
    background: rgba(150,150,150,0.05);
}
.upload-cell .plus {
    font-size: 28px;
    font-weight: 300;
    color: var(--text-3);
    line-height: 1;
}
.upload-cell-text {
    font-size: 11px;
    color: var(--text-3);
    margin-top: 4px;
}
.upload-count {
    font-size: 10px;
    color: var(--green-bright);
    font-weight: 700;
    margin-top: 4px;
}
.upload-cell.has-img {
    border: 1px solid var(--border);
    padding: 0;
    background: #000;
}
.upload-cell.has-img img {
    width: 100%; height: 100%; object-fit: cover;
}
.upload-cell .remove-btn {
    position: absolute;
    top: 4px; right: 4px;
    width: 22px; height: 22px;
    background: rgba(0,0,0,0.7);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.form-block { margin-bottom: 22px; }
.form-block label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}
.form-block input,
.form-block select,
.form-block textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    font-size: 14px;
    margin-top: 6px;
}
.form-block input:focus,
.form-block select:focus,
.form-block textarea:focus { border-color: var(--green-bright); outline: none; }
.form-block textarea { resize: vertical; font-family: inherit; }
.form-block select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23111'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 42px;
}
.block-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    display: block;
}
.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}
.check-cell {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0 !important;
    font-weight: 500 !important;
}
.check-cell input {
    display: none;
}
.check-cell span {
    font-size: 13px;
    color: var(--text-2);
}
.check-cell:has(input:checked) {
    border-color: var(--green-bright);
    background: rgba(150,150,150,0.08);
}
.check-cell:has(input:checked) span {
    color: var(--green-bright);
    font-weight: 700;
}

/* 내 매물 목록 */
.my-items { margin-top: 24px; }
.empty-items {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-soft);
    border-radius: 16px;
    color: var(--text-3);
}
.empty-items p { font-size: 14px; }
.empty-items .sub { font-size: 12px; margin-top: 4px; }

.my-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 10px;
}
.my-item-img {
    width: 80px; height: 80px;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
}
.my-item-img img { width: 100%; height: 100%; object-fit: cover; }
.my-item-info strong { display: block; font-size: 14px; margin-bottom: 4px; }
.my-item-info p { font-size: 12px; color: var(--text-3); }
.my-item-status {
    padding: 6px 12px;
    background: #f0f0f0;
    color: #555555;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.submit-success {
    background: linear-gradient(135deg, #f0f9f4, #e6f7ed);
    border: 1.5px solid var(--green-bright);
    color: var(--dark-green);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    margin-top: 24px;
}
.submit-success strong { display: block; font-size: 16px; margin-bottom: 8px; }
.submit-success p { font-size: 13px; color: var(--text-2); }

/* ========== 매장 카드 ========== */
.store-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
}
.store-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
}
.store-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}
.store-card p {
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 8px;
}
.store-card small {
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.6;
    display: block;
}

/* ========== 연락처 빠른 카드 ========== */
.contact-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.contact-quick-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 18px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    display: block;
}
.contact-quick-card:hover {
    border-color: var(--green-bright);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.contact-quick-card .cq-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}
.contact-quick-card strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text);
}
.contact-quick-card p {
    font-size: 13px;
    color: var(--text-2);
    margin-bottom: 6px;
    font-weight: 600;
}
.contact-quick-card small {
    font-size: 11px;
    color: var(--green-bright);
    font-weight: 700;
}
.contact-quick-card.kakao { background: linear-gradient(135deg, #FFF8B0 0%, #FEE500 100%); border: none; }
.contact-quick-card.kakao small { color: #5a4500; }
.contact-quick-card.compare { background: var(--dark-green); border: none; color: white; }
.contact-quick-card.compare strong,
.contact-quick-card.compare p { color: white; }
.contact-quick-card.compare small { color: var(--green-light); }

/* ========== 정보 리스트 ========== */
.info-list-app {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 24px;
}
.info-list-app li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.info-list-app li:last-child { border-bottom: none; }
.info-label { color: var(--text-3); }
.info-value { color: var(--text); font-weight: 600; }
.info-value.link { color: var(--green-bright); }

.lead.center { text-align: center; max-width: 480px; margin: 0 auto 32px; }

/* ========== 하단 탭바 (앱 네비게이션) ========== */
.tabbar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--app-w);
    height: calc(var(--tabbar-h) + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    box-sizing: border-box;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-left: 4px;
    padding-right: 4px;
    z-index: 1000;
}

.tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 2px;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s, transform 0.15s;
}
/* 탭이 7개라 아이콘/글자를 약간 줄여 한 줄에 맞춤 */
.tab-item svg { width: 20px; height: 20px; }

.tab-item span {
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0;
    white-space: nowrap;
}

.tab-item.active {
    color: var(--green-bright);
}

.tab-item.active span {
    font-weight: 700;
}

.tab-item:active {
    transform: scale(0.92);
}

/* 기존 상단 네비 잔재 숨김 */
.nav-menu,
.menu-toggle,
.header-tel,
.btn-cta-small {
    display: none !important;
}

/* ========== Floating Kakao ========== */
.float-kakao {
    position: fixed;
    bottom: calc(var(--tabbar-h) + 16px);
    left: 50%;
    margin-left: calc(var(--app-w) / 2 - 70px);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--kakao);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(254, 229, 0, 0.5);
    z-index: 900;
    transition: transform 0.3s;
    animation: floatBounce 3s ease-in-out infinite;
}
@media (max-width: 680px) {
    .float-kakao {
        margin-left: 0;
        left: auto;
        right: 16px;
    }
}
.float-kakao:hover { transform: scale(1.1); }
@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ========== 앱 설치 배너 (푸터) ========== */
.install-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin: 24px 0 0;
    padding: 16px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    text-align: left;
}
.install-banner:hover  { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.24); }
.install-banner:active { transform: scale(0.985); }
.install-banner[hidden] { display: none; }
.install-banner-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.install-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.install-banner-logo {
    height: 18px;
    width: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
}
.install-banner-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.1px;
}
.install-banner-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: rgba(255,255,255,0.7);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* ========== 알림 벨 + 뱃지 ========== */
#btnNoti { position: relative; }
#btnNoti[hidden] { display: none; }
.noti-badge {
    position: absolute;
    top: -2px; right: -2px;
    min-width: 16px; height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #e5484d;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 16px;
    text-align: center;
}
.noti-badge[hidden] { display: none; }

/* ========== 구글 로그인 버튼 ========== */
.login-google { background: #fff; color: #1a1a1a; border: 1px solid #dadce0; }
.login-icon-google {
    width: 20px; height: 20px;
    border-radius: 50%;
    color: #4285f4;
    font-weight: 900;
    font-size: 15px;
    display: flex; align-items: center; justify-content: center;
}
.login-icon-img {
    width: 22px; height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ========== 마이포켓 ========== */
.customer-only[hidden] { display: none; }
.pocket { margin: 4px 0 20px; }

.pocket-card {
    background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 60%, #0a0a0a 100%);
    border-radius: 16px;
    padding: 20px 18px;
    color: #fff;
    margin-bottom: 14px;
}
.pocket-card-top { display: flex; align-items: center; justify-content: space-between; }
.pocket-title { font-size: 14px; font-weight: 700; opacity: 0.92; }
.pocket-grade {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 800;
}
.pocket-grade-ic {
    width: 20px; height: 20px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.22);
    border-radius: 6px;
    font-size: 11px; font-weight: 900;
}
.pocket-name { font-size: 24px; font-weight: 800; margin: 14px 0 18px; }
.pocket-line {
    display: flex; align-items: center; justify-content: space-between;
    padding: 9px 0;
    border-top: 1px solid rgba(255,255,255,0.18);
    font-size: 14px;
}
.pocket-line-label { opacity: 0.85; }
.pocket-line-val { font-size: 17px; font-weight: 800; }

.pocket-promo {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 18px;
    margin-bottom: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.pocket-promo h4 { font-size: 17px; font-weight: 800; margin-bottom: 16px; line-height: 1.4; }
.pocket-benefits { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.pocket-benefits li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-2); }
.pb-ic {
    flex-shrink: 0;
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--bg-soft);
    border-radius: 50%;
    font-size: 16px; color: var(--green);
}
.pocket-promo-btn {
    width: 100%; padding: 15px;
    background: var(--dark-green);
    color: #fff;
    font-size: 15px; font-weight: 800;
    border-radius: 10px;
}

.pocket-quick {
    display: flex; gap: 10px;
    overflow-x: auto;
    margin-bottom: 22px;
    padding-bottom: 2px;
}
.pocket-quick-item {
    flex: 1; min-width: 110px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.pq-ic {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: var(--bg-soft);
    border-radius: 50%;
    font-size: 18px;
    margin-bottom: 12px;
}
.pq-label { display: block; font-size: 12.5px; color: var(--text-2); }
.pocket-quick-item strong { display: block; font-size: 18px; font-weight: 800; margin-top: 4px; }

.pocket-shop { margin-bottom: 6px; }
.pocket-shop-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pocket-shop-head h4 { font-size: 16px; font-weight: 800; }
.pocket-shop-all {
    font-size: 12px; color: var(--text-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 12px;
}
.pocket-status { display: flex; justify-content: space-between; text-align: center; }
.ps-cell { flex: 1; }
.ps-cell b { display: block; font-size: 22px; font-weight: 800; color: var(--text-3); }
.ps-cell span { font-size: 11.5px; color: var(--text-2); }

/* ========== 마이페이지 / 알림 목록 ========== */
.mypage-email { font-size: 12px; color: var(--text-3); margin-top: 4px; }
.mypage-section { margin-bottom: 18px; }
.mypage-section h4 {
    font-size: 13px; font-weight: 800; color: var(--text);
    margin-bottom: 10px; padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}
.mypage-btn {
    width: 100%; padding: 11px;
    border: 1px dashed var(--green-bright);
    border-radius: 10px;
    color: var(--green-bright);
    font-weight: 700; font-size: 13px;
    margin-top: 8px;
}
.admin-list { display: flex; flex-direction: column; gap: 6px; }
.admin-list-item {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; color: var(--text);
    padding: 8px 10px; background: var(--bg-soft); border-radius: 8px;
}
.admin-list-item button {
    color: #e5484d; font-size: 12px; font-weight: 700;
}
.noti-list { display: flex; flex-direction: column; gap: 8px; max-height: 60vh; }
.noti-item {
    padding: 12px 14px; border-radius: 12px;
    background: var(--bg-soft); font-size: 13px; line-height: 1.5; color: var(--text);
}
.noti-item.unread { background: #f2f2f2; border-left: 3px solid var(--green-bright); }
.noti-item time { display: block; margin-top: 4px; font-size: 11px; color: var(--text-3); }
.noti-empty, .mypage-empty {
    text-align: center; color: var(--text-3); font-size: 13px; padding: 16px 0;
}

/* ========== 상품/입찰 관리 버튼 (관리자) ========== */
.hcard-admin { display: none; gap: 6px; margin-top: 8px; }
body.admin-mode .hcard-dynamic .hcard-admin { display: flex; }
.hcard-admin button {
    flex: 1; padding: 7px 0; border-radius: 8px;
    font-size: 11.5px; font-weight: 700;
}
.hcard-edit { background: var(--green); color: #fff; }
.hcard-del { background: #f2dede; color: #b42318; }
.admin-bid-btn {
    margin-top: 6px; width: 100%;
    padding: 8px 0; border-radius: 8px;
    background: var(--gold); color: #fff;
    font-size: 12px; font-weight: 800;
}
.my-item-bid { font-size: 12px; color: var(--gold); font-weight: 800; margin-top: 2px; }

/* ========== Reveal Animation ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Responsive (모바일 실기기에서 풀폭) ========== */
@media (max-width: 680px) {
    body { background: var(--white); }
    body::before { display: none; }
    .container { padding: 0 18px; }
    .product-grid,
    .brand-preview-grid,
    .promise-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .insight-row { grid-template-columns: 120px 1fr; gap: 12px; }
    .insight-row-body h3 { font-size: 14px; }
    .insight-row-body p { font-size: 12px; }
    .brand-name { font-size: 36px; }
    .tab-item span { font-size: 10px; }
}

/* ============================================================
   Supabase 기능 연동 추가 스타일 (디자인 톤 유지 · 심플)
   ============================================================ */
.my-item-bids { margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.my-item-bids .bid-row {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    font-size: 13px; padding: 8px 10px; border: 1px solid var(--line, #e7e3da);
    border-radius: 10px; background: var(--soft, #f7f5f0);
}
.my-item-bids .bid-row strong { font-weight: 700; }
.my-item-bids .bid-row span { color: #8a8a8a; }
.my-item-sub { font-size: 12.5px; color: #8a8a8a; margin-top: 6px; }

/* 업체 입찰 폼 */
.vendor-bid-form { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.vendor-bid-form input {
    flex: 1; min-width: 130px; padding: 10px 12px;
    border: 1px solid var(--line, #e7e3da); border-radius: 10px; font-size: 14px;
}
.vendor-bid-form .admin-bid-btn { white-space: nowrap; }

/* 인사이트 행: 관리자 수정/삭제 — 작은 아이콘 버튼(관리자만 노출) */
.insight-row { position: relative; }
.insight-row .row-actions {
    position: absolute; top: 10px; right: 10px; display: flex; gap: 6px; margin: 0;
}
.row-act {
    width: 30px; height: 30px; padding: 0;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid #e7e3da; background: rgba(255,255,255,0.94); color: #6b6256;
    border-radius: 8px; cursor: pointer; transition: background 0.15s, color 0.15s;
}
.row-act svg { width: 15px; height: 15px; }
.row-act:hover { background: #fff; color: #2b2620; }

/* 마이페이지 관리 현황 요약 */
.summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 4px 0 10px; }
.summary-cell {
    border: 1px solid var(--line, #e7e3da); border-radius: 12px;
    padding: 14px 10px; text-align: center; background: #fff;
}
.summary-cell b { display: block; font-size: 22px; font-weight: 800; color: var(--ink, #2b2620); }
.summary-cell span { font-size: 11.5px; color: #8a8a8a; }

/* 모달 본문 (등록/수정 폼) */
#listingModal .modal-body, #insightEditModal .modal-body { margin-top: 6px; }
.modal-body .signup-form .upload-grid { margin-top: 6px; }
.modal-body .muted, .mypage-section .muted { color: #8a8a8a; }
.modal-body .small, .mypage-section .small { font-size: 12px; }

/* 마이페이지 역할/보안 표시 */
.mypage-role {
    display: inline-block; margin-top: 8px; padding: 4px 12px;
    border: 1px solid var(--line, #e7e3da); border-radius: 20px;
    font-size: 12.5px; color: var(--ink, #2b2620); background: var(--soft, #f7f5f0);
}
.mypage-security { margin-top: 10px; font-size: 11.5px; color: #8a8a8a; line-height: 1.6; }
.admin-list-item small { color: #8a8a8a; font-size: 11.5px; }

/* ── 이모지 → SVG 아이콘 교체분 사이징/색상 (기업형 톤) ───────── */
.qt-icon svg, .cq-icon svg { width: 26px; height: 26px; color: #1a1a1a; }
.cert-icon svg { width: 30px; height: 30px; color: #1a1a1a; }
.extra-icon svg { width: 18px; height: 18px; display: block; color: #777777; }
.float-kakao svg { width: 26px; height: 26px; color: #3a1d1d; }
.btn-outline svg { vertical-align: -3px; width: 18px; height: 18px; }

/* ── 관리자 통합 추가 버튼(우측 상단 +) + 추가 메뉴 ───────────── */
/* 관리자 인라인 등록 버튼 — 판매시계/커뮤니티 탭 아래에 자연스럽게 녹임 */
.admin-add-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 14px 0 4px;
    padding: 13px;
    border: 1.5px dashed var(--green-bright);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.035);
    color: var(--green-mid);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.1s;
}
.admin-add-inline:hover { background: rgba(0, 0, 0, 0.07); border-color: var(--green-mid); }
.admin-add-inline:active { transform: scale(0.99); }
.admin-add-inline svg { width: 18px; height: 18px; }

.add-menu { display: flex; flex-direction: column; gap: 10px; }
.add-menu-item {
    text-align: left; width: 100%; cursor: pointer;
    background: #fff; border: 1px solid #e7e3da; border-radius: 14px;
    padding: 16px 18px; transition: background 0.15s, border-color 0.15s;
}
.add-menu-item:hover { background: #f7f5f0; border-color: #cfc8bb; }
.add-menu-item b { display: block; font-size: 15px; font-weight: 700; color: #2b2620; }
.add-menu-item span { display: block; margin-top: 3px; font-size: 12.5px; color: #8a8a8a; }

/* ============ PWA 설치 모달 ============ */
#pwaInstallModal { position: fixed; inset: 0; z-index: 9000; display: flex; align-items: flex-end; }
#pwaInstallModal[hidden] { display: none; }
.pwa-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.pwa-sheet {
  position: relative; width: 100%; background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 32px 28px 48px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: pwaUp .32s cubic-bezier(.2,.8,.2,1);
}
@keyframes pwaUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.pwa-close {
  position: absolute; top: 16px; right: 16px;
  background: #f3f3f3; border: none; border-radius: 50%;
  width: 30px; height: 30px; font-size: 14px; cursor: pointer; color: #555;
  display: flex; align-items: center; justify-content: center;
}
.pwa-app-icon { width: 80px; height: 80px; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,.12); margin-bottom: 4px; }
.pwa-app-name { font-size: 22px; font-weight: 800; letter-spacing: .08em; color: #111; margin: 0; }
.pwa-app-sub { font-size: 13px; color: #888; margin: 0 0 10px; }
.pwa-desc { font-size: 14px; color: #444; text-align: center; line-height: 1.65; margin: 6px 0 16px; }
.pwa-btn-primary {
  width: 100%; padding: 15px;
  background: #111; color: #fff; border: none; border-radius: 12px;
  font-size: 16px; font-weight: 700; cursor: pointer; letter-spacing: .03em;
  margin-bottom: 10px;
}
.pwa-btn-secondary {
  width: 100%; padding: 13px;
  background: #f3f3f3; color: #555; border: none; border-radius: 12px;
  font-size: 15px; cursor: pointer;
}
.pwa-steps { text-align: left; width: 100%; padding-left: 20px; margin: 0 0 20px; }
.pwa-steps li { font-size: 14px; color: #333; line-height: 2; }
