:root {
    --color-brand: #fa6545;
    --color-brand-dark: #e04527;
    --color-accent: #ffb240;
    --color-ink: #23222a;
    --color-surface: #fbf7f4;
    --brand-grad: linear-gradient(135deg, #ffb240 0%, #fa6545 55%, #e8452a 100%);
}

body {
    font-family: "Pretendard", sans-serif;
    font-weight: 400;
    margin: 0;
}

::selection {
    background: #ffd9cd;
    color: #23222a;
}

/* 가로 스크롤 칩 행 (가격 필터 등) — 스크롤바 숨김 */
.chip-scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.chip-scroll::-webkit-scrollbar {
    display: none;
}

/* 브랜드 그라디언트 — 로고 버블과 같은 각도/색 */
.bg-grad-brand {
    background-image: var(--brand-grad);
}

.text-grad-brand {
    background-image: var(--brand-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* 카드 hover 상승 */
.card-lift {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card-lift:hover {
    transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
    .card-lift,
    .card-lift:hover {
        transform: none;
        transition: none;
    }
}
