*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent;overflow-x:hidden}
body{font-family:'Pretendard Variable','Pretendard',-apple-system,BlinkMacSystemFont,system-ui,Roboto,sans-serif;color:var(--fg);background:var(--bg);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;min-height:100vh;display:flex;flex-direction:column;padding-bottom:68px;overflow-x:hidden}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:none;cursor:pointer;outline:none}
img,video{display:block;max-width:100%;height:auto}
ul,ol{list-style:none}
input,textarea,select{font:inherit;color:inherit;border:none;outline:none;background:none}
:root{
--bg:#FAFAF8;
--fg:#111010;
--muted:#5A5550;
--muted-bg:#F2F0ED;
--accent:#C23B22;
--border:rgba(21,20,18,0.08);
--card:#fff;
--radius:12px;
--header-h:52px;
--tab-h:68px;
}
.flex{display:flex}
.flex-col{display:flex;flex-direction:column}
.flex-wrap{flex-wrap:wrap}
.items-center{align-items:center}
.items-start{align-items:flex-start}
.items-end{align-items:flex-end}
.justify-center{justify-content:center}
.justify-between{justify-content:space-between}
.justify-end{justify-content:flex-end}
.flex-1{flex:1}
.gap-2{gap:2px}
.gap-4{gap:4px}
.gap-6{gap:6px}
.gap-8{gap:8px}
.gap-10{gap:10px}
.gap-12{gap:12px}
.gap-16{gap:16px}
.gap-20{gap:20px}
.gap-24{gap:24px}
.grid{display:grid}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.grid-3{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.grid-4{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.text-center{text-align:center}
.text-left{text-align:left}
.text-right{text-align:right}
.text-xs{font-size:11px}
.text-sm{font-size:13px}
.text-base{font-size:15px}
.text-lg{font-size:17px}
.text-xl{font-size:20px}
.text-2xl{font-size:24px}
.text-muted{color:var(--muted)}
.text-accent{color:var(--accent)}
.text-white{color:#fff}
.font-medium{font-weight:500}
.font-semibold{font-weight:600}
.font-bold{font-weight:700}
.line-clamp-1{overflow:hidden;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}
.line-clamp-2{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.rounded{border-radius:var(--radius)}
.rounded-full{border-radius:9999px}
.rounded-8{border-radius:8px}
.rounded-16{border-radius:16px}
.overflow-hidden{overflow:hidden}
.overflow-x-auto{overflow-x:auto;-webkit-overflow-scrolling:touch}
.overflow-x-auto::-webkit-scrollbar{display:none}
.relative{position:relative}
.absolute{position:absolute}
.w-full{width:100%}
.h-full{height:100%}
.shrink-0{flex-shrink:0}
.hidden{display:none}
.block{display:block}
.inline-flex{display:inline-flex}
.pointer{cursor:pointer}
.pointer-events-none{pointer-events:none}
.select-none{user-select:none}
.transition{transition:all .2s ease}
.transition-all{transition:all .3s ease}
.transition-colors{transition:color .3s,background .3s,border-color .3s}
.transition-transform{transition:transform .5s ease}
main{flex:1;}
.page-layout{
width:100%;
min-height:100vh;
display:flex;
flex-direction:column;
}
.app-wrapper{
flex:1;
width:100%;
overflow-x:hidden;
}
.max-w{
max-width:1280px;
margin:0 auto;
padding:0 20px;
}
.site-header.header-app{
position:fixed;top:0;left:0;right:0;z-index:900;
background:#0d0d0d;border-bottom:none;border-radius:0;
padding:0;padding-top:env(safe-area-inset-top,0);
}
.header-app-inner{max-width:1280px;margin:0 auto;}
.header-app-top{
display:flex;align-items:center;justify-content:space-between;
height:56px;padding:0 20px;gap:12px;
}
.header-app-left{display:flex;align-items:center;gap:6px;min-width:0;}
.header-app-location{
display:flex;align-items:center;gap:4px;
color:#fff;font-size:1rem;font-weight:600;letter-spacing:-.02em;
text-decoration:none;flex-shrink:0;
}
.header-app-location img.logo-main{
width:90px;height:auto;display:block;filter:brightness(0) invert(1);
}
.desktop-nav.header-app-nav{
display:none;align-items:center;gap:32px;color:rgba(255,255,255,.9);
}
.desktop-nav.header-app-nav a{
font-size:.8125rem;font-weight:500;padding:14px 0;
color:rgba(255,255,255,.65);transition:color .2s;
white-space:nowrap;text-decoration:none;position:relative;
}
.desktop-nav.header-app-nav a::after{
content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%);
width:0;height:2px;border-radius:1px;background:var(--accent);
transition:width .25s ease;
}
.desktop-nav.header-app-nav a:hover{color:rgba(255,255,255,.95);}
.desktop-nav.header-app-nav a.active{color:#fff;font-weight:600;}
.desktop-nav.header-app-nav a.active::after{width:16px;}
.header-app-actions{display:flex;align-items:center;gap:2px;position:relative;}
.header-app-actions>button,
.header-app-actions>a{
display:flex;align-items:center;justify-content:center;
width:36px;height:36px;color:rgba(255,255,255,.9);
border-radius:50%;transition:background .2s;
}
.header-app-actions>svg,
.header-app-actions>button svg,
.header-app-actions>a svg{width:20px;height:20px;}
.header-app-actions>button:hover,
.header-app-actions>a:hover{background:rgba(255,255,255,.1);}
.header-app-collapsible{
display:grid;grid-template-rows:1fr;
transition:grid-template-rows .3s ease,opacity .25s ease;opacity:1;
}
.header-app-collapsible-inner{overflow:hidden;}
.header-compact .header-app-collapsible{
grid-template-rows:0fr;opacity:0;pointer-events:none;
}
.header-compact{border-radius:0;}
.header-spacer{height:132px;}

.header-app-search-wrap{padding:6px 24px 24px;}
.header-app-search-inner{position:relative;display:flex;align-items:center;}
.header-app-search-inner::before{
content:'';position:absolute;left:16px;top:50%;transform:translateY(-50%);
width:16px;height:16px;z-index:1;pointer-events:none;
background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A8680' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
background-size:contain;background-repeat:no-repeat;
}
input.header-app-search{
width:100%;height:44px;padding:0 18px 0 40px;
font-size:.875rem;border:none;border-radius:10px;
background:#fff;outline:none;color:#151412;
line-height:44px;box-sizing:border-box;font-family:inherit;
}
input.header-app-search::placeholder{color:#9E9A96;}
.header-app-banner{
position:relative;display:flex;align-items:center;justify-content:space-between;gap:12px;
padding:10px 24px 18px;min-height:48px;
}
.header-app-banner-track{
position:relative;min-height:48px;flex:1;min-width:0;
-webkit-user-select:none;user-select:none;touch-action:pan-y;
}
.header-app-banner-slide{
position:absolute;left:0;right:0;top:0;display:flex;align-items:center;
opacity:0;visibility:hidden;transition:opacity .5s ease,visibility .5s ease;pointer-events:none;
}
.header-app-banner-slide.active{
position:relative;opacity:1;visibility:visible;pointer-events:auto;
}
.header-app-banner-left{flex:1;min-width:0;}
.header-app-banner-title{
color:#fff;font-size:.8125rem;font-weight:600;margin-bottom:4px;
display:flex;align-items:center;gap:4px;letter-spacing:-.02em;
}
.header-app-banner-emoji{font-size:.9em;vertical-align:middle;margin-right:4px;}
.header-app-banner-cta{
color:rgba(255,255,255,.6);font-size:.75rem;font-weight:400;
display:inline-flex;align-items:center;gap:2px;text-decoration:none;
transition:color .2s;letter-spacing:-.01em;
}
.header-app-banner-cta:hover{color:rgba(255,255,255,.9);}
.header-app-banner-dots{
flex-shrink:0;display:flex;align-items:center;gap:5px;padding-left:8px;
}
.header-app-banner-dot{
width:5px;height:5px;border-radius:50%;
background:rgba(255,255,255,.25);transition:all .3s ease;
cursor:pointer;
}
.header-app-banner-dot.active{
width:14px;border-radius:3px;background:rgba(255,255,255,.7);
}
.header-app-search-slide{
display:grid;grid-template-rows:0fr;
transition:grid-template-rows .25s ease,opacity .2s ease;
opacity:0;min-height:0;overflow:hidden;
}
.header-app-search-slide>div{overflow:hidden;padding:0 20px;}
.header-compact:not(.header-search-open) .header-app-search-slide{
height:0;padding:0;margin:0;
}
.header-compact.header-search-open .header-app-search-slide{
grid-template-rows:1fr;opacity:1;height:auto;padding:0;
}
.header-app-search-btn{
display:none;align-items:center;justify-content:center;
width:40px;height:40px;color:rgba(255,255,255,.9);
border-radius:50%;transition:background .2s;
}
.header-app-search-btn:hover{background:rgba(255,255,255,.1);}
.header-app-search-btn svg{width:22px;height:22px;}
.header-app-alert-btn{
display:flex;align-items:center;justify-content:center;
width:40px;height:40px;color:rgba(255,255,255,.9);
border-radius:50%;transition:background .2s;border:none;background:transparent;cursor:pointer;
}
.header-app-alert-btn:hover{background:rgba(255,255,255,.1);}
.header-app-alert-btn svg{width:20px;height:20px;}
.header-auth-btn{display:flex;align-items:center;justify-content:center;}
.header-auth-img{
width:28px;height:28px;border-radius:50%;object-fit:cover;
border:1.5px solid rgba(255,255,255,.15);
}
.header-auth-initial{
width:28px;height:28px;border-radius:50%;background:#444;
display:flex;align-items:center;justify-content:center;font-size:12px;color:#fff;
}
.header-login-btn{color:rgba(255,255,255,.9);}
.header-auth-drop{
display:none;position:absolute;top:calc(100% + 8px);right:0;
background:#fff;border:1px solid var(--border);border-radius:12px;
min-width:180px;padding:6px 0;box-shadow:0 8px 30px rgba(0,0,0,.15);z-index:200;color:var(--fg);
}
.header-auth-drop.show{display:block;}
.header-auth-drop-user{padding:10px 16px;}
.header-auth-drop-name{font-size:.875rem;font-weight:600;display:block;}
.header-auth-drop-role{font-size:.625rem;color:var(--accent);letter-spacing:.5px;margin-top:2px;display:block;}
.header-auth-drop-divider{height:1px;background:var(--border);margin:4px 0;}
.header-auth-drop-link{
display:flex;align-items:center;gap:8px;padding:10px 16px;
font-size:.84rem;color:var(--muted);transition:all .15s;
}
.header-auth-drop-link:hover{background:rgba(21,20,18,.04);color:var(--fg);}
.bottom-tab{
position:fixed;
bottom:0;
left:0;
right:0;
z-index:800;
height:var(--tab-h);
background:#fff;
border-top:1px solid var(--border);
display:flex;
align-items:stretch;
justify-content:space-around;
padding-bottom:env(safe-area-inset-bottom,0);
box-shadow:0 -2px 12px rgba(0,0,0,.04);
}
.bottom-tab-item{
flex:1;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:5px;
font-size:.625rem;
font-weight:500;
letter-spacing:.01em;
color:var(--muted);
transition:color .15s;
text-decoration:none;
background:none;
border:none;
cursor:pointer;
font-family:inherit;
line-height:1;
-webkit-tap-highlight-color:transparent;
}
.bottom-tab-item svg{
width:22px;
height:22px;
flex-shrink:0;
transition:transform .15s;
}
.bottom-tab-item.active{
color:var(--fg);
}
.bottom-tab-item.active svg{
stroke-width:2.2;
}
.sidebar-overlay{
position:fixed;
inset:0;
z-index:950;
background:rgba(0,0,0,.4);
opacity:0;
visibility:hidden;
transition:opacity .25s,visibility .25s;
}
.sidebar-overlay.open{
opacity:1;
visibility:visible;
}
.sidebar{
position:fixed;
top:0;
right:0;
bottom:0;
z-index:960;
width:260px;
max-width:80vw;
background:#FAFAF8;
transform:translateX(100%);
transition:transform .3s cubic-bezier(.4,0,.2,1);
display:flex;
flex-direction:column;
box-shadow:-4px 0 24px rgba(0,0,0,.12);
}
.sidebar.open{
transform:translateX(0);
}
.sidebar-header{
display:flex;
align-items:center;
justify-content:space-between;
padding:20px 20px 16px;
border-bottom:1px solid var(--border);
}
.sidebar-logo{
display:flex;
align-items:center;
}
.sidebar-logo img{
height:24px;
width:auto;
display:block;
}
.sidebar-user{
display:flex;
align-items:center;
gap:12px;
}
.sidebar-user-avatar{
width:40px;
height:40px;
border-radius:50%;
object-fit:cover;
}
.sidebar-user-initial{
width:40px;
height:40px;
border-radius:50%;
background:var(--accent);
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-weight:600;
font-size:.875rem;
}
.sidebar-user-info{
display:flex;
flex-direction:column;
gap:2px;
}
.sidebar-user-name{
font-size:.9375rem;
font-weight:600;
color:var(--fg);
line-height:1.3;
}
.sidebar-user-role{
font-size:.6875rem;
font-weight:500;
color:var(--muted);
letter-spacing:.04em;
}
.sidebar-close{
width:36px;
height:36px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(21,20,18,.06);
transition:background .15s,transform .15s;
flex-shrink:0;
}
.sidebar-close svg{
width:18px;
height:18px;
}
.sidebar-close:hover{
background:rgba(21,20,18,.1);
}
.sidebar-nav{
flex:1;
padding:8px 0;
overflow-y:auto;
}
.sidebar-nav-group{
padding:4px 0;
}
.sidebar-nav-divider{
height:1px;
background:var(--border);
margin:4px 20px;
}
.sidebar-nav-link{
display:flex;
align-items:center;
gap:12px;
padding:12px 20px;
font-size:.875rem;
font-weight:500;
color:var(--fg);
transition:background .15s,color .15s;
position:relative;
}
.sidebar-nav-link svg{
width:20px;
height:20px;
flex-shrink:0;
color:var(--muted);
transition:color .15s;
}
.sidebar-nav-link:hover{
background:rgba(21,20,18,.04);
}
.sidebar-nav-link.active{
color:var(--accent);
font-weight:600;
}
.sidebar-nav-link.active svg{
color:var(--accent);
}
.sidebar-nav-link.active::before{
content:'';
position:absolute;
left:0;
top:50%;
transform:translateY(-50%);
width:3px;
height:20px;
border-radius:0 3px 3px 0;
background:var(--accent);
}
.sidebar-nav-logout{
color:var(--muted);
}
.sidebar-nav-logout svg{
color:var(--muted);
}
.sidebar-footer{
padding:14px 20px 24px;
border-top:1px solid var(--border);
}
.sidebar-login-btn{
display:block;
width:100%;
text-align:center;
padding:11px 0;
font-size:.875rem;
font-weight:600;
color:#fff;
background:var(--fg);
border-radius:8px;
transition:opacity .15s;
}
.sidebar-login-btn:hover{
opacity:.85;
}
/* ─── List page shared ─── */
.list-title-area{padding:28px 0 24px;}
.list-title-area h1{font-size:1.375rem;font-weight:600;letter-spacing:-.03em;margin-bottom:6px;}
.list-title-area p{font-size:.8125rem;line-height:1.7;color:var(--muted);}
.list-toolbar{
display:flex;align-items:center;justify-content:space-between;
margin-bottom:20px;padding-bottom:14px;border-bottom:1px solid var(--border);
}
.list-sort-tabs{display:flex;align-items:center;gap:0;}
.list-sort-tab{
padding:6px 14px;font-size:.8125rem;font-weight:500;
color:var(--muted);position:relative;transition:color .2s;
white-space:nowrap;text-decoration:none;cursor:pointer;
}
.list-sort-tab:first-child{padding-left:0;}
.list-sort-tab.active{color:var(--fg);font-weight:600;}
.list-sort-tab + .list-sort-tab::before{
content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);
width:1px;height:12px;background:var(--border);
}
.list-toolbar-count{font-size:.8125rem;color:var(--muted);flex-shrink:0;}
.list-empty{
text-align:center;padding:80px 20px;color:var(--muted);
display:flex;flex-direction:column;align-items:center;
}
.list-empty p{font-size:.875rem;}
.list-empty-icon{font-size:3rem;margin-bottom:16px;opacity:.2;}
.list-empty-btn{
display:inline-flex;padding:12px 28px;margin-top:16px;
background:var(--fg);color:#fff;border-radius:9999px;
font-size:.875rem;font-weight:600;transition:background .2s;text-decoration:none;
}
.list-empty-btn:hover{background:var(--accent);}
.list-pagination{display:flex;align-items:center;justify-content:center;gap:4px;padding:40px 0 60px;}
.list-page-link{
display:inline-flex;align-items:center;justify-content:center;
min-width:36px;height:36px;padding:0 8px;
font-size:.8125rem;font-weight:500;color:var(--muted);
border-radius:8px;transition:background .15s,color .15s;text-decoration:none;
}
.list-page-link:hover{background:var(--muted-bg);color:var(--fg);}
.list-page-link.active{background:var(--fg);color:#fff;font-weight:700;}
.list-page-ellipsis{
display:inline-flex;align-items:center;justify-content:center;
min-width:28px;height:36px;font-size:.8125rem;color:var(--muted);
}

/* ─── Page hero (about / partner shared) ─── */
.page-hero{
background:linear-gradient(180deg,#0d0d0d 0%,#1a1917 100%);
padding:36px 0 44px;position:relative;overflow:hidden;
}
.page-hero::after{
content:'';position:absolute;top:-30%;right:-20%;width:70%;height:140%;
background:radial-gradient(ellipse,rgba(194,59,34,.12) 0%,transparent 65%);
pointer-events:none;
}
.page-hero-inner{position:relative;z-index:1;text-align:center;}
.page-hero h1{
font-size:clamp(1.5rem,4vw,2.25rem);font-weight:600;
letter-spacing:-.04em;line-height:1.3;color:#fff;
}
.page-hero h1 em{
font-style:normal;
background:linear-gradient(135deg,#C23B22,#E8654D);
-webkit-background-clip:text;-webkit-text-fill-color:transparent;
background-clip:text;
}
.page-hero-desc{
margin-top:16px;font-size:.875rem;line-height:1.75;
color:rgba(255,255,255,.65);max-width:420px;margin-left:auto;margin-right:auto;
}
.page-hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px;justify-content:center;}
.page-hero-actions .btn-hero{
display:inline-flex;align-items:center;gap:8px;
padding:12px 24px;border-radius:9999px;font-size:.8125rem;font-weight:600;
transition:all .2s;text-decoration:none;
}
.page-hero-actions .btn-hero.primary{background:#C23B22;color:#fff;}
.page-hero-actions .btn-hero.primary:hover{background:#D4493A;}
.page-hero-actions .btn-hero.outline{
background:transparent;color:rgba(255,255,255,.8);
border:1px solid rgba(255,255,255,.2);
}
.page-hero-actions .btn-hero.outline:hover{border-color:rgba(255,255,255,.4);color:#fff;}
.page-hero-stats{display:flex;gap:28px;flex-wrap:wrap;margin-top:32px;justify-content:center;}
.page-hero-stat .num{
font-size:clamp(1.75rem,3.5vw,2.5rem);font-weight:700;letter-spacing:-.03em;
background:linear-gradient(to bottom,#fff,rgba(255,255,255,.6));
-webkit-background-clip:text;-webkit-text-fill-color:transparent;
background-clip:text;line-height:1.1;
}
.page-hero-stat .lbl{font-size:.75rem;color:rgba(255,255,255,.5);margin-top:4px;letter-spacing:.02em;}

/* ─── Section label (about / partner shared) ─── */
.section-label{
font-size:.6875rem;letter-spacing:.15em;text-transform:uppercase;
color:var(--accent);margin-bottom:14px;font-weight:600;
}

.site-footer{
border-top:1px solid var(--border);
margin-top:64px;
background:var(--card);
}
.footer-main{
padding:48px 0 36px;
display:flex;flex-direction:column;gap:36px;
}
.footer-logo{
font-size:1.25rem;font-weight:700;letter-spacing:-.03em;
color:var(--fg);text-decoration:none;
}
.footer-brand p{
margin-top:12px;font-size:.8125rem;line-height:1.7;
color:var(--muted);max-width:320px;
}
.footer-social{
display:flex;gap:8px;margin-top:20px;
}
.footer-social a{
display:inline-flex;align-items:center;justify-content:center;
width:36px;height:36px;border-radius:50%;
background:rgba(21,20,18,.04);color:var(--muted);
transition:all .2s;
}
.footer-social a:hover{background:rgba(21,20,18,.1);color:var(--fg);}
.footer-email-copy{
display:inline-flex;align-items:center;justify-content:center;
width:36px;height:36px;border-radius:50%;position:relative;
background:rgba(21,20,18,.04);color:var(--muted);
border:none;cursor:pointer;transition:all .2s;padding:0;
}
.footer-email-copy:hover{background:rgba(21,20,18,.1);color:var(--fg);}
.footer-email-copy .copy-tooltip{
position:absolute;bottom:calc(100% + 6px);left:50%;transform:translateX(-50%);
background:var(--fg);color:#fff;font-size:.6875rem;font-weight:500;
padding:4px 10px;border-radius:6px;white-space:nowrap;
opacity:0;pointer-events:none;transition:opacity .2s;
}
.footer-email-copy.copied .copy-tooltip{opacity:1;}
.footer-nav{
display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
}
.footer-nav-col h4{
font-size:.6875rem;font-weight:600;letter-spacing:.08em;
text-transform:uppercase;color:var(--fg);margin-bottom:14px;
}
.footer-nav-col a{
display:block;font-size:.8125rem;color:var(--muted);
margin-bottom:10px;transition:color .2s;text-decoration:none;
}
.footer-nav-col a:hover{color:var(--fg);}
.footer-bottom{
padding:20px 0;
border-top:1px solid var(--border);
display:flex;flex-direction:column;gap:6px;
font-size:.6875rem;color:var(--muted);line-height:1.6;
}
.footer-copy{font-weight:500;}
.footer-biz-info{opacity:.7;}
.footer-legal-inline{display:none;}
.icon-svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2;
stroke-linecap:round;stroke-linejoin:round;}
.icon-sm{width:14px;height:14px;}
.icon-xs{width:12px;height:12px;}
.icon-lg{width:20px;height:20px;}
.category-item-card{
display:flex;
flex-direction:column;
border-radius:var(--radius);
overflow:hidden;
background:var(--card);
position:relative;
text-decoration:none;
color:inherit;
transition:box-shadow .25s;
}
.category-item-card:hover{box-shadow:0 8px 28px rgba(0,0,0,.08);}
.category-card-img{
position:relative;
aspect-ratio:3/4;
overflow:hidden;
background:var(--muted-bg);
}
.category-card-img img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .35s ease;
}
.category-item-card:hover .category-card-img img{
transform:scale(1.05);
}
.category-card-wish{
position:absolute;
top:10px;
right:10px;
z-index:3;
width:32px;
height:32px;
border-radius:50%;
background:rgba(255,255,255,.85);
backdrop-filter:blur(4px);
display:flex;
align-items:center;
justify-content:center;
border:none;cursor:pointer;
color:var(--muted);
transition:all .2s;
}
.category-card-wish:hover{background:#fff;color:var(--accent);}
.category-card-wish svg{width:16px;height:16px;display:block;}
.category-card-wish.liked{color:var(--accent);}
.category-card-wish.liked svg{fill:var(--accent);stroke:var(--accent);}
.category-card-handle{
position:absolute;
bottom:0;left:0;right:0;z-index:2;
display:flex;align-items:center;justify-content:flex-end;gap:6px;
padding:10px 12px;
background:linear-gradient(transparent,rgba(0,0,0,.55));
color:#fff;font-size:.6875rem;font-weight:500;
text-shadow:0 1px 2px rgba(0,0,0,.4);
}
.category-card-handle img{
width:24px;height:24px;border-radius:50%;
object-fit:cover;border:1.5px solid rgba(255,255,255,.7);flex-shrink:0;
}
.category-card-body{
padding:12px 12px 14px;
display:flex;
flex-direction:column;
gap:4px;
}
.category-card-title{
font-size:.875rem;
font-weight:500;
letter-spacing:-.01em;
line-height:1.4;
color:var(--fg);
display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
}
.category-card-period{
display:flex;
align-items:center;
gap:6px;
font-size:.6875rem;
color:var(--muted);
margin-top:2px;
}
.category-card-period-badge{
display:inline-flex;align-items:center;padding:2px 6px;border-radius:3px;
font-size:.625rem;font-weight:600;line-height:1.4;
background:var(--fg);color:#fff;flex-shrink:0;
}
.category-card-period-dates{font-size:.6875rem;color:var(--muted);line-height:1.4;}
.category-card-tags{
display:flex;
flex-wrap:wrap;
gap:4px;
margin-top:4px;
}
.category-card-tags span{
font-size:.625rem;
font-weight:500;
color:var(--muted);
border:1px solid var(--border);
padding:3px 8px;
border-radius:9999px;
line-height:1.4;
}
.card-dday{
position:absolute;top:10px;left:10px;
display:inline-flex;
align-items:center;
gap:4px;
font-size:.6875rem;
font-weight:500;
padding:4px 8px;
border-radius:4px;
backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);
z-index:2;flex-shrink:0;
}
.card-dday.urgent{
background:var(--accent);
color:#fff;
}
.card-dday.soldout{
background:rgba(21,20,18,.7);
color:rgba(255,255,255,.8);
}
.card-dday.expired{
background:rgba(0,0,0,.4);
color:rgba(255,255,255,.75);
}
.tab-row{display:flex;align-items:center;gap:6px;overflow-x:auto;padding-bottom:4px;-ms-overflow-style:none;scrollbar-width:none;}
.tab-row::-webkit-scrollbar{display:none;}
.product-card{display:block;background:var(--card);border-radius:var(--radius);overflow:hidden;transition:box-shadow .25s;text-decoration:none;color:inherit;}
.product-card:hover{box-shadow:0 8px 28px rgba(0,0,0,.08);}
.product-card:hover .card-img img{transform:scale(1.05);}
.card-img{position:relative;overflow:hidden;background:#F2F0ED;border-radius:8px;}
.card-img.aspect-3-4{aspect-ratio:3/4;}
.card-img.aspect-square{aspect-ratio:1;}
.card-img img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease-out;}
.card-img .overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.2),transparent,transparent);opacity:0;transition:opacity .5s;}
.product-card:hover .card-img .overlay{opacity:1;}
.card-tags{position:absolute;top:12px;left:12px;display:flex;gap:6px;}
.card-tag{padding:4px 8px;font-size:.6875rem;border-radius:2px;letter-spacing:.05em;}
.card-tag.best{background:var(--fg);color:#fff;}
.card-tag.new{background:#fff;color:var(--fg);}
.card-tag.hot{background:var(--fg);color:#fff;}
.product-card .card-img{border-radius:0;}
.card-info{padding:12px 12px 14px;}
.card-meta{display:flex;align-items:center;justify-content:space-between;}
.card-category{font-size:.6875rem;color:var(--muted);letter-spacing:.1em;text-transform:uppercase;}
.card-handle{font-size:.6875rem;color:var(--muted);}
.card-title{font-size:.875rem;font-weight:500;letter-spacing:-.01em;transition:opacity .2s;}
.product-card:hover .card-title{opacity:.7;}
.card-hashtags{display:flex;gap:4px;flex-wrap:wrap;margin-top:8px;}
.card-hashtags span{font-size:.6875rem;color:var(--muted);}
.card-period{font-size:.75rem;color:rgba(138,134,128,.6);margin-top:8px;}
.card-expired{opacity:.5;pointer-events:none;}
.section-header{
display:flex;
align-items:center;
justify-content:space-between;
margin-bottom:24px;
}
.section-header .left{display:flex;align-items:center;gap:12px;}
.section-header h2,.section-header .section-title{
font-size:1.125rem;
font-weight:700;
letter-spacing:-.03em;
color:var(--fg);
position:relative;
padding-left:14px;
}
.section-header h2::before,.section-header .section-title::before{
content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);
width:3px;height:18px;border-radius:2px;background:var(--accent);
}
.section-header .sub{font-size:.75rem;color:var(--muted);display:inline-flex;align-items:center;gap:4px;}
.section-header .more,.section-header .section-more{
display:flex;
align-items:center;
gap:4px;
font-size:.8125rem;
color:var(--muted);
transition:color .2s;
}
.section-header .more:hover,.section-header .section-more:hover{color:var(--fg);}
.section-mini{
display:flex;
align-items:center;
justify-content:space-between;
padding:14px 0 8px;
}
.section-mini .section-title{
font-size:15px;
font-weight:600;
color:var(--fg);
}
.tooltip-wrap{
position:relative;
display:inline-flex;
align-items:center;
}
.tooltip-trigger{
display:inline-flex;align-items:center;justify-content:center;
color:var(--muted);opacity:.5;transition:opacity .2s;padding:0;cursor:pointer;
}
.tooltip-trigger:hover,.tooltip-wrap.active .tooltip-trigger{opacity:.8;}
.tooltip-box{
position:absolute;
left:50%;
top:calc(100% + 8px);
transform:translateX(-50%);
width:220px;
padding:10px 12px;
background:var(--fg);
color:rgba(255,255,255,.85);
font-size:.6875rem;
line-height:1.65;
border-radius:8px;
pointer-events:none;
opacity:0;
transition:opacity .2s;
z-index:10;
box-shadow:0 4px 16px rgba(0,0,0,.15);
}
.tooltip-box::before{
content:'';
position:absolute;
bottom:100%;
left:50%;
transform:translateX(-50%);
border:5px solid transparent;
border-bottom-color:var(--fg);
}
.tooltip-trigger:hover+.tooltip-box,
.tooltip-wrap.active .tooltip-box,
.tooltip-wrap:hover .tooltip-box,
.tooltip-box.show{
opacity:1;
pointer-events:auto;
}
.tab-btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:8px 16px;
font-size:.8125rem;
font-weight:500;
color:var(--muted);
border-radius:9999px;
background:rgba(21,20,18,.03);
transition:all .2s;
white-space:nowrap;
}
.tab-btn:hover{
color:var(--fg);
background:rgba(21,20,18,.06);
}
.tab-btn.active{
background:var(--fg);
color:#fff;
}
.filter-btn{
display:inline-flex;
align-items:center;
gap:6px;
padding:8px 14px;
font-size:.8125rem;
font-weight:500;
color:var(--muted);
border:1px solid var(--border);
border-radius:9999px;
background:var(--bg);
transition:all .2s;
white-space:nowrap;
}
.filter-btn:hover{
border-color:rgba(21,20,18,.15);
color:var(--fg);
}
.filter-btn.active{
background:var(--fg);
color:#fff;
border-color:var(--fg);
}
.chip{
display:inline-flex;
align-items:center;
gap:4px;
padding:4px 10px;
font-size:.75rem;
color:var(--muted);
background:rgba(21,20,18,.04);
border-radius:9999px;
white-space:nowrap;
}
.chip button{margin-left:2px;transition:color .2s;}
.chip button:hover{color:var(--fg);}
.sort-wrap{
position:relative;
}
.sort-btn{
display:inline-flex;
align-items:center;
gap:6px;
font-size:.8125rem;
color:var(--muted);
transition:color .2s;
}
.sort-btn:hover{color:var(--fg);}
.sort-dropdown{
position:absolute;
right:0;
top:100%;
margin-top:8px;
width:144px;
background:var(--bg);
border:1px solid var(--border);
border-radius:8px;
box-shadow:0 4px 20px rgba(0,0,0,.08);
z-index:50;
padding:4px 0;
display:none;
}
.sort-dropdown.open{
display:block;
}
.sort-dropdown button{
display:block;
width:100%;
text-align:left;
padding:10px 16px;
font-size:.8125rem;
color:var(--muted);
transition:all .15s;
}
.sort-dropdown button:hover{
color:var(--fg);
background:rgba(21,20,18,.02);
}
.sort-dropdown button.active{
color:var(--fg);
background:rgba(21,20,18,.03);
}
/* ─── Keyword Alert Panel ─── */
.kw-overlay{
position:fixed;inset:0;z-index:1000;
background:rgba(0,0,0,.45);
opacity:0;visibility:hidden;pointer-events:none;
transition:opacity .25s,visibility .25s;
display:flex;align-items:flex-end;justify-content:center;
}
.kw-overlay.open{opacity:1;visibility:visible;pointer-events:auto;}
.kw-panel{
position:fixed;bottom:0;left:50%;transform:translateX(-50%) translateY(100%);
width:100%;max-width:480px;max-height:85vh;pointer-events:none;
background:#fff;border-radius:20px 20px 0 0;
transition:transform .3s cubic-bezier(.4,0,.2,1);
overflow:hidden;display:flex;flex-direction:column;
z-index:1001;
}
.kw-overlay.open + .kw-panel,
.kw-panel.open{transform:translateX(-50%) translateY(0);pointer-events:auto;}
.kw-panel-header{
display:flex;align-items:center;gap:12px;
padding:18px 20px 14px;border-bottom:1px solid var(--border);
}
.kw-panel-header h3{
flex:1;font-size:.9375rem;font-weight:700;letter-spacing:-.02em;
margin:0;color:var(--fg);
}
.kw-panel-close{
width:36px;height:36px;display:flex;align-items:center;justify-content:center;
border:none;background:transparent;cursor:pointer;color:var(--muted);flex-shrink:0;
}
.kw-panel-close:hover{color:var(--fg);}
.kw-panel-body{
overflow-y:auto;padding:20px;flex:1;
-webkit-overflow-scrolling:touch;
}
.kw-toggle-row{
display:flex;align-items:center;gap:8px;
}
.kw-toggle-row span{font-size:.8125rem;font-weight:500;color:var(--muted);}
.kw-toggle{position:relative;width:44px;height:24px;flex-shrink:0;}
.kw-toggle input{opacity:0;width:0;height:0;position:absolute;}
.kw-toggle-track{
position:absolute;inset:0;border-radius:12px;
background:#ddd;cursor:pointer;transition:background .2s;
}
.kw-toggle input:checked + .kw-toggle-track{background:var(--accent);}
.kw-toggle-track::after{
content:'';position:absolute;left:2px;top:2px;
width:20px;height:20px;border-radius:50%;background:#fff;
box-shadow:0 1px 2px rgba(0,0,0,.12);transition:left .2s,right .2s;
}
.kw-toggle input:checked + .kw-toggle-track::after{left:auto;right:2px;}
.kw-input-row{display:flex;gap:8px;margin-bottom:20px;}
.kw-input{
flex:1;padding:11px 16px;font-size:.875rem;
border:1px solid var(--border);border-radius:8px;
background:#fff;outline:none;font-family:inherit;
}
.kw-input:focus{border-color:var(--fg);}
.kw-input::placeholder{color:var(--muted);}
.kw-add-btn{
padding:0 18px;border:none;border-radius:8px;
background:var(--fg);color:#fff;font-size:.8125rem;font-weight:600;
cursor:pointer;white-space:nowrap;transition:opacity .2s;
}
.kw-add-btn:hover{opacity:.85;}
.kw-list{list-style:none;margin:0 0 24px;padding:0;display:flex;flex-direction:column;gap:6px;}
.kw-item{
display:flex;align-items:center;justify-content:space-between;
padding:10px 14px;background:var(--muted-bg);border-radius:8px;
}
.kw-item-label{font-size:.875rem;color:var(--fg);font-weight:500;}
.kw-item-del{
width:28px;height:28px;display:flex;align-items:center;justify-content:center;
border:none;background:transparent;cursor:pointer;color:var(--muted);
}
.kw-item-del:hover{color:var(--fg);}
.kw-empty{text-align:center;padding:20px 0;color:var(--muted);font-size:.875rem;}
.kw-suggest-title{
font-size:.75rem;letter-spacing:.04em;
color:var(--muted);margin-bottom:10px;font-weight:600;
}
.kw-suggest-list{display:flex;flex-wrap:wrap;gap:8px;}
.kw-suggest-pill{
padding:7px 14px;border-radius:6px;font-size:.8125rem;font-weight:500;
border:1px solid var(--border);background:#fff;color:var(--fg);
cursor:pointer;transition:all .15s;
}
.kw-suggest-pill:hover{background:var(--muted-bg);}
@media(min-width:1024px){
.kw-overlay{align-items:center;}
.kw-panel{
position:fixed;bottom:auto;top:50%;left:50%;
transform:translate(-50%,-50%) scale(.95);
border-radius:16px;max-height:70vh;
opacity:0;transition:transform .25s ease,opacity .25s ease;
}
.kw-panel.open{transform:translate(-50%,-50%) scale(1);opacity:1;pointer-events:auto;}
}
@keyframes fadeIn{
from{opacity:0;transform:translateY(16px)}
to{opacity:1;transform:none}
}
.fade-in{animation:fadeIn .5s ease both;}
.fade-in-d1{animation-delay:.1s;}
.fade-in-d2{animation-delay:.2s;}
.fade-in-d3{animation-delay:.3s;}
@media(min-width:768px){
.max-w{padding:0 32px}
.grid-3{grid-template-columns:repeat(3,1fr);gap:24px}
.grid-4{grid-template-columns:repeat(3,1fr);gap:24px}
.header-app-top{padding:0 32px}
.header-app-search-wrap{padding:0 32px 22px}
.header-app-search-slide>div{padding:0 32px}
.header-app-banner{padding:12px 32px 16px}
.header-app-location img.logo-main{width:100px}
.footer-main{
flex-direction:row;align-items:flex-start;
padding:56px 0 40px;gap:48px;
}
.footer-brand{flex:1;min-width:0;}
.footer-nav{flex-shrink:0;gap:32px;}
.footer-bottom{flex-direction:row;justify-content:space-between;align-items:center;}
}
@media(min-width:1024px){
:root{--header-h:60px}
body{padding-bottom:0}
.grid-4{grid-template-columns:repeat(4,1fr);gap:24px}
.page-layout{max-width:none;margin:0;padding:0;}
.site-header.header-app .header-app-inner{max-width:1200px;margin:0 auto;}
.header-app-top{height:68px;padding:0 40px}
.header-app-search-wrap{padding:8px 40px 24px}
.header-app-search-slide>div{padding:0 40px}
.header-app-banner{padding:12px 40px 16px}
.header-app-location img.logo-main{width:120px}
.desktop-nav.header-app-nav{display:flex;gap:36px}
.desktop-nav.header-app-nav a{font-size:.875rem;}
.header-app-actions{gap:4px;}
.header-app-actions>button,
.header-app-actions>a{width:40px;height:40px;}
.header-app-actions>button svg,
.header-app-actions>a svg{width:22px;height:22px;}
.bottom-tab{display:none}
.header-compact .header-app-collapsible{
grid-template-rows:1fr;opacity:1;pointer-events:auto;
}
.header-app-search-btn{display:none!important;}
.header-app-search-slide{display:none!important;}
.header-spacer{height:148px;}
.max-w{padding:0 40px}
.footer-nav{gap:48px;}
.category-card-body{padding:14px 14px 16px;gap:6px;}
.category-card-title{font-size:.9375rem;font-weight:600;}
.category-card-period{font-size:.75rem;}
.category-card-period-badge{font-size:.6875rem;padding:3px 7px;}
.category-card-period-dates{font-size:.75rem;}
.category-card-tags span{font-size:.6875rem;padding:4px 10px;}
.category-card-tags{gap:5px;}
.card-info{padding:14px 14px 16px;}
.card-title{font-size:.9375rem;font-weight:600;}
}
@media(min-width:1400px){
.page-layout{max-width:none;}
.site-header.header-app .header-app-inner{max-width:1320px;}
.header-app-location img.logo-main{width:130px}
.desktop-nav.header-app-nav{gap:40px}
.desktop-nav.header-app-nav a{font-size:.9375rem;}
}

@media(max-width:480px){
.site-footer{margin-top:40px;}
.footer-main{padding:24px 0 16px;gap:0;}
.footer-nav{display:none;}
.footer-brand p{font-size:.75rem;margin-top:8px;}
.footer-social{margin-top:14px;}
.footer-social a,.footer-email-copy{width:32px;height:32px;}
.footer-social a svg,.footer-email-copy svg{width:15px;height:15px;}
.footer-bottom{padding:16px 0;font-size:.625rem;}
.footer-legal-inline{display:flex;gap:12px;margin-top:6px;}
.footer-legal-inline a{font-size:.625rem;color:var(--muted);text-decoration:underline;text-underline-offset:2px;}
}
