@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Roboto:wght@400;500&display=swap');

:root {
    --ink: #1a1a1a;
    --sub: #6b6b6b;
    --line: #eceae6;
    --bg: #ffffff;
    --bg-soft: #faf8f5;
    --accent: #b3272d;
    --accent-deep: #8c1d22;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
body {
    font-family: 'Noto Sans KR', 'Roboto', sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

.mall_width { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Demo notice */
.demo_notice {
    background: #1a1a1a;
    color: #f2d8a8;
    font-size: 12.5px;
    letter-spacing: .02em;
    padding: 9px 16px;
    text-align: center;
}

/* Top ticker */
.top_ticker {
    background: #000;
    color: #fff;
    font-size: 13px;
    height: 45px;
    overflow: hidden;
}
.ticker_inner {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.ticker_inner span {
    position: absolute;
    opacity: 0;
    animation: ticker_fade 8s infinite;
}
.ticker_inner span:nth-child(2) { animation-delay: 4s; }
@keyframes ticker_fade {
    0%, 4% { opacity: 0; }
    8%, 42% { opacity: 1; }
    46%, 100% { opacity: 0; }
}

/* Header */
header.site_header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
}
.header_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
}
.header_side { display: flex; align-items: center; gap: 18px; font-size: 12.5px; color: var(--sub); letter-spacing: .02em; }
.header_side a:hover { color: var(--ink); }
.header_side.right .hs_icon:hover { color: var(--ink); cursor: pointer; }
.header_side.right .hs_lang { color: #bbb; font-size: 11.5px; }
.site_logo img { height: 26px; width: auto; }
nav.main_nav {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}
nav.main_nav ul {
    display: flex;
    justify-content: center;
    gap: 46px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .01em;
}
nav.main_nav a { position: relative; display: block; padding: 16px 0; }
nav.main_nav a:hover { color: var(--accent); }

/* Hero brand banner */
.hero_banner {
    width: 100%;
    background: #fff;
    text-align: center;
    padding: 100px 24px 70px;
}
.hero_banner img { max-width: 360px; width: 100%; height: auto; margin: 0 auto; }
.hero_banner_sub {
    margin: 22px 0 0;
    font-size: 13px;
    letter-spacing: .15em;
    color: var(--sub);
}

/* Main video section */
.main_mv { padding: 60px 0; background: #000; }
.mv_inner { position: relative; width: 100%; aspect-ratio: 16/7; overflow: hidden; }
.mv_inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Category quick links */
.category_row {
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
}
.category_row a {
    padding: 22px 30px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--sub);
    border-right: 1px solid var(--line);
}
.category_row a:last-child { border-right: none; }
.category_row a:hover { color: var(--ink); background: #fff; }

/* Section headers */
.section_head {
    text-align: center;
    margin: 70px 0 32px;
}
.section_head h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .04em;
    margin: 0;
}
.section_head.left { text-align: left; margin-left: 0; }

.section_head_row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 70px 0 28px;
}
.section_head_row h2 { font-size: 20px; font-weight: 700; margin: 0; }

.more_btn {
    font-size: 12.5px;
    color: var(--sub);
    border-bottom: 1px solid var(--sub);
    padding-bottom: 2px;
}
.more_btn:hover { color: var(--ink); border-color: var(--ink); }

/* Product grid */
.prd_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 22px;
    padding-bottom: 30px;
}
.prd_grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }
.prd_card a { display: block; }
.prd_thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-soft);
    margin-bottom: 16px;
}
.prd_thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.prd_card:hover .prd_thumb img { transform: scale(1.05); }
.prd_badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--ink);
    color: #fff;
    font-size: 11px;
    letter-spacing: .05em;
    padding: 5px 10px;
}
.prd_name { font-size: 15px; margin-bottom: 8px; line-height: 1.45; min-height: 42px; color: #000; }
.prd_price .original { color: #000; font-weight: 700; text-decoration: line-through; font-size: 15px; }
.prd_price .sale { font-size: 12px; color: #555; margin-top: 2px; }
.prd_price .sale .percent { color: #ff0000; font-weight: 700; font-size: 15px; }

/* Reviews */
.review_section { padding: 0 0 100px; }
.review_strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.review_card {
    border: 1px solid var(--line);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.review_card .stars { color: #e0a83a; font-size: 13px; letter-spacing: 2px; }
.review_card .body { font-size: 13.5px; line-height: 1.6; color: #333; min-height: 66px; }
.review_card .who { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.review_card .who img { width: 34px; height: 34px; object-fit: cover; border-radius: 3px; }
.review_card .who .meta { font-size: 12px; color: var(--sub); line-height: 1.4; }
.review_card .who .meta b { color: var(--ink); font-weight: 500; display: block; font-size: 12.5px; }

/* Brand statement banner */
.brand_banner {
    background: var(--ink);
    color: #fff;
    text-align: center;
    padding: 90px 24px;
}
.brand_banner h2 {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    letter-spacing: .01em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.brand_banner .more_btn { color: #ccc; border-color: #666; }
.brand_banner .more_btn:hover { color: #fff; border-color: #fff; }

/* Footer */
footer.site_footer {
    border-top: 1px solid var(--line);
    background: #fff;
    padding: 48px 0 70px;
    font-size: 12px;
    color: #888;
    line-height: 2;
}
footer.site_footer .footer_logo { font-weight: 700; letter-spacing: 2px; font-size: 15px; color: var(--ink); margin-bottom: 18px; }
footer.site_footer .footer_menu {
    display: flex;
    gap: 22px;
    font-size: 13px;
    color: #333;
    font-weight: 500;
    margin-bottom: 18px;
}
footer.site_footer .footer_menu a:hover { color: var(--accent); }
footer.site_footer .copyright { margin-top: 14px; color: #bbb; }

/* Product detail page */
.pdp_wrap {
    display: flex;
    gap: 72px;
    max-width: 1120px;
    margin: 70px auto;
    padding: 0 24px;
}
.pdp_gallery { flex: 1; }
.pdp_gallery img { width: 100%; background: var(--bg-soft); }
.pdp_info { flex: 1; padding-top: 8px; }
.pdp_info .eyebrow { font-size: 11.5px; letter-spacing: .25em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; font-weight: 500; }
.pdp_info h1 { font-size: 26px; margin: 0 0 18px; line-height: 1.4; }
.pdp_info .desc { font-size: 14.5px; color: var(--sub); line-height: 1.75; margin-bottom: 28px; }
.pdp_info .price_box { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; margin-bottom: 28px; }
.pdp_info .price_box .original { color: #000; font-weight: 700; text-decoration: line-through; font-size: 17px; }
.pdp_info .price_box .sale { font-size: 15px; color: #555; margin-top: 10px; }
.pdp_info .price_box .sale .percent { color: #ff0000; font-weight: 700; font-size: 24px; margin-left: 8px; }
.pdp_info .buy_btn {
    display: block;
    text-align: center;
    background: var(--ink);
    color: #fff;
    padding: 18px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .03em;
}
.pdp_info .buy_btn:hover { background: var(--accent-deep); }

@media (max-width: 900px) {
    nav.main_nav { display: none; }
    .prd_grid { grid-template-columns: repeat(2, 1fr); }
    .review_strip { grid-template-columns: repeat(2, 1fr); }
    .pdp_wrap { flex-direction: column; gap: 32px; }
    .hero_banner { padding: 70px 24px 44px; }
    .hero_banner img { max-width: 240px; }
    .category_row { flex-wrap: wrap; }
    .category_row a { padding: 16px 18px; }
    .header_row { flex-wrap: wrap; gap: 12px; }
}
