﻿@charset "utf-8";
/* ============================================================
   레브슈슈 (LevChuChu) — 강아지·고양이 전문 쇼핑몰 스타일시트
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --brand:        #FF6F91;
  --brand-dark:   #E5587A;
  --brand-deep:   #C8456A;
  --brand-soft:   #FFEAF0;
  --brand-tint:   #FFF4F7;
  --amber:        #FFB13F;
  --amber-soft:   #FFF1D9;
  --mint:         #34B89A;
  --mint-soft:    #E1F4EF;
  --ink:          #2B2A35;
  --ink-2:        #6C6878;
  --ink-3:        #9B97A6;
  --paper:        #FFFFFF;
  --cream:        #FFF7F2;
  --cream-2:      #FBEFE9;
  --line:         #EFE6E1;
  --line-2:       #E6DCD6;
  --shadow-sm:    0 4px 14px rgba(43,42,53,.07);
  --shadow:       0 10px 30px rgba(43,42,53,.10);
  --shadow-lg:    0 22px 50px rgba(43,42,53,.16);
  --radius:       18px;
  --radius-lg:    26px;
  --maxw:         1240px;
  --font: "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont,
          "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -.01em;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.28; font-weight: 800; letter-spacing: -.02em; }
form { display: block; }
:focus-visible { outline: 3px solid rgba(255,111,145,.45); outline-offset: 2px; border-radius: 6px; }
.lc-illu { width: 100%; height: 100%; overflow: visible; }

/* ---------- Layout helpers ---------- */
.lc-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.lc-section { padding: 64px 0; }
.lc-section--tight { padding: 44px 0; }
.lc-cream { background: var(--cream); }
.lc-pink { background: var(--brand-tint); }
main { display: block; min-height: 50vh; }

/* ---------- Buttons ---------- */
.lc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: 15px;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap; border: 2px solid transparent;
}
.lc-btn:active { transform: translateY(1px) scale(.99); }
.lc-btn--primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(255,111,145,.36); }
.lc-btn--primary:hover { background: var(--brand-dark); }
.lc-btn--dark { background: var(--ink); color: #fff; }
.lc-btn--dark:hover { background: #1c1b24; }
.lc-btn--ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.lc-btn--ghost:hover { border-color: var(--brand); color: var(--brand-dark); }
.lc-btn--light { background: rgba(255,255,255,.9); color: var(--ink); }
.lc-btn--light:hover { background: #fff; }
.lc-btn--lg { padding: 16px 34px; font-size: 16px; }
.lc-btn--sm { padding: 9px 16px; font-size: 13.5px; }
.lc-btn--block { width: 100%; }
.lc-btn--wide { min-width: 180px; }

/* ---------- Announcement bar ---------- */
.lc-anno {
  background: linear-gradient(100deg, var(--brand) 0%, var(--brand-dark) 60%, #d96a92 100%);
  color: #fff; font-size: clamp(9px, 2.6vw, 13px); font-weight: 600;
}
.lc-anno__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 16px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 38px; overflow: hidden; text-align: center;
}
/* 공지 메시지: 항상 한 줄 — 길이와 무관하게 공지바 높이 고정 */
.lc-anno__msg { display: none; align-items: center; gap: 6px; white-space: nowrap; }
.lc-anno__msg.is-on { display: inline-flex; animation: lc-fade .5s ease; }
.lc-anno b { font-weight: 800; }
@keyframes lc-fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ---------- Sticky header wrapper ---------- */
.lc-stick { position: sticky; top: 0; z-index: 120; background: #fff; }
.lc-stick.is-scrolled { box-shadow: 0 6px 22px rgba(43,42,53,.10); }

/* ---------- Header ---------- */
.lc-header { background: #fff; }
.lc-header__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 22px;
}
.lc-logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.lc-logo__mark {
  width: 42px; height: 42px; border-radius: 13px; flex-shrink: 0; overflow: hidden;
  box-shadow: 0 5px 14px rgba(120,140,165,.34);
}
.lc-logo__mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.lc-logo__name { font-size: 23px; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.lc-logo__name b { color: var(--brand); }
.lc-logo__tag { font-size: 10.5px; font-weight: 600; color: var(--ink-3); letter-spacing: .04em; }

/* search */
.lc-search { flex: 1; max-width: 540px; position: relative; }
.lc-search__field {
  width: 100%; height: 48px; border-radius: 999px; border: 2px solid var(--ink);
  background: #fff; padding: 0 52px 0 22px; font-size: 14.5px; font-weight: 500;
}
.lc-search__field::placeholder { color: var(--ink-3); font-weight: 500; }
.lc-search__btn {
  position: absolute; right: 5px; top: 5px; width: 38px; height: 38px;
  border-radius: 50%; background: var(--brand); display: grid; place-items: center;
  transition: background .2s ease;
}
.lc-search__btn:hover { background: var(--brand-dark); }
.lc-search__btn svg { width: 19px; height: 19px; stroke: #fff; }

/* header actions */
.lc-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; flex-shrink: 0; }
.lc-act {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 11px; border-radius: 14px; position: relative; color: var(--ink);
  transition: background .15s ease; flex-shrink: 0;
}
.lc-act:hover { background: var(--brand-tint); }
.lc-act svg { width: 23px; height: 23px; stroke: var(--ink); fill: none; max-width: none; flex-shrink: 0; }
.lc-act__label { font-size: 11px; font-weight: 600; color: var(--ink-2); }
.lc-act__count {
  position: absolute; top: 2px; right: 4px; min-width: 18px; height: 18px;
  padding: 0 5px; border-radius: 999px; background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 800; display: grid; place-items: center; line-height: 1;
}
.lc-act__count:empty { display: none; }

/* hamburger */
.lc-burger { display: none; width: 44px; height: 44px; border-radius: 12px; }
.lc-burger:hover { background: var(--brand-tint); }
.lc-burger span { display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 4px auto; }

/* ---------- Category nav ---------- */
.lc-nav { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lc-nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; }
.lc-nav__list { display: flex; align-items: stretch; gap: 2px; }
.lc-nav__item { position: relative; }
.lc-nav__link {
  display: flex; align-items: center; gap: 6px; padding: 15px 16px;
  font-size: 15px; font-weight: 700; color: var(--ink); position: relative;
}
.lc-nav__link:hover { color: var(--brand-dark); }
.lc-nav__link.is-hot { color: var(--brand); }
.lc-nav__item::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 0; height: 3px;
  background: var(--brand); border-radius: 3px 3px 0 0; transform: scaleX(0);
  transition: transform .2s ease;
}
.lc-nav__item:hover::after { transform: scaleX(1); }
.lc-nav__item.is-active::after { transform: scaleX(1); }
.lc-nav__item.is-active .lc-nav__link { color: var(--brand); }
.lc-nav__tagline { margin-left: auto; display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink-2); font-weight: 600; }
.lc-nav__tagline svg { width: 16px; height: 16px; stroke: var(--mint); }

/* mega dropdown */
.lc-mega {
  position: absolute; top: 100%; left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow); padding: 12px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .18s ease; z-index: 60;
}
.lc-nav__item:hover .lc-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.lc-mega a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 11px; font-size: 14px; font-weight: 600; color: var(--ink-2);
}
.lc-mega a:hover { background: var(--brand-tint); color: var(--brand-dark); }
.lc-mega a span.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }

/* ---------- Mobile drawer ---------- */
.lc-scrim {
  position: fixed; inset: 0; background: rgba(43,42,53,.5); z-index: 200;
  opacity: 0; visibility: hidden; transition: opacity .25s ease;
}
.lc-scrim.is-open { opacity: 1; visibility: visible; }
.lc-mnav {
  position: fixed; top: 0; left: 0; bottom: 0; width: 320px; max-width: 86vw;
  background: #fff; z-index: 210; transform: translateX(-100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column;
}
.lc-mnav.is-open { transform: translateX(0); }
.lc-mnav__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; background: var(--brand); color: #fff;
}
.lc-mnav__top b { font-size: 19px; font-weight: 800; }
.lc-mnav__close { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; }
.lc-mnav__close svg { width: 20px; height: 20px; stroke: #fff; }
.lc-mnav__body { overflow-y: auto; padding: 10px 0; flex: 1; }
.lc-mnav__link {
  display: flex; align-items: center; gap: 12px; padding: 14px 22px;
  font-size: 15.5px; font-weight: 700; border-bottom: 1px solid var(--line);
}
.lc-mnav__link svg { width: 20px; height: 20px; }
.lc-mnav__foot { padding: 18px 22px; display: flex; gap: 10px; border-top: 1px solid var(--line); }

/* ---------- Section heading ---------- */
.lc-head { margin-bottom: 30px; }
.lc-head--center { text-align: center; }
.lc-head__eyebrow {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800;
  color: var(--brand); background: var(--brand-soft); padding: 5px 13px; border-radius: 999px;
  margin-bottom: 12px; letter-spacing: .02em;
}
.lc-head__title { font-size: 30px; color: var(--ink); }
.lc-head__title em { color: var(--brand); font-style: normal; }
.lc-head__desc { margin-top: 9px; color: var(--ink-2); font-size: 15px; font-weight: 500; }
.lc-head__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.lc-head__more { font-size: 14px; font-weight: 700; color: var(--ink-2); display: inline-flex; align-items: center; gap: 4px; flex-shrink: 0; }
.lc-head__more:hover { color: var(--brand-dark); }

/* ---------- Hero ---------- */
.lc-hero { position: relative; overflow: hidden; background: var(--cream); }
.lc-hero__viewport { overflow: hidden; }
.lc-hero__track { display: flex; transition: transform .6s cubic-bezier(.45,.05,.25,1); }
.lc-hero__slide { min-width: 100%; }
.lc-hero__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 56px 24px;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 30px;
  min-height: 460px;
}
.lc-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 7px; background: #fff;
  padding: 7px 15px; border-radius: 999px; font-size: 13px; font-weight: 800;
  color: var(--brand-dark); box-shadow: var(--shadow-sm); margin-bottom: 18px;
}
.lc-hero__title { font-size: 46px; line-height: 1.18; color: var(--ink); }
.lc-hero__title em { font-style: normal; color: var(--brand); }
.lc-hero__desc { margin-top: 16px; font-size: 16.5px; color: var(--ink-2); font-weight: 500; max-width: 440px; }
.lc-hero__cta { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.lc-hero__art { position: relative; height: 380px; }
.lc-hero__blob {
  position: absolute; inset: 0; margin: auto; width: 340px; height: 340px;
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
}
.lc-hero__pet {
  position: absolute; width: 210px; height: 210px; filter: drop-shadow(0 16px 26px rgba(43,42,53,.16));
}
.lc-hero__pet--main { width: 252px; height: 252px; left: 50%; top: 50%; transform: translate(-58%,-52%); z-index: 2; }
.lc-hero__pet--sub { width: 150px; height: 150px; right: 6%; bottom: 4%; z-index: 3; }
.lc-hero__chip {
  position: absolute; background: #fff; border-radius: 16px; padding: 11px 15px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px; z-index: 4;
}
.lc-hero__chip svg { width: 30px; height: 30px; }
.lc-hero__chip b { display: block; font-size: 14px; font-weight: 800; }
.lc-hero__chip span { font-size: 11.5px; color: var(--ink-3); font-weight: 600; }
.lc-hero__chip--a { top: 8%; left: -2%; }
.lc-hero__chip--b { bottom: 12%; left: 2%; }
.lc-hero__float { position: absolute; width: 70px; height: 70px; z-index: 1; opacity: .95; }
.lc-hero__float--1 { top: 6%; right: 16%; transform: rotate(-12deg); }
.lc-hero__float--2 { bottom: 2%; right: 38%; transform: rotate(10deg); width: 58px; height: 58px; }
.lc-hero__dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 9px; z-index: 6; }
.lc-hero__dot { width: 9px; height: 9px; border-radius: 999px; background: rgba(43,42,53,.22); transition: all .25s ease; }
.lc-hero__dot.is-on { width: 28px; background: var(--brand); }
.lc-hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px;
  border-radius: 50%; background: #fff; box-shadow: var(--shadow); display: grid;
  place-items: center; z-index: 6;
}
.lc-hero__arrow:hover { background: var(--brand); }
.lc-hero__arrow:hover svg { stroke: #fff; }
.lc-hero__arrow svg { width: 20px; height: 20px; stroke: var(--ink); }
.lc-hero__arrow--prev { left: 18px; }
.lc-hero__arrow--next { right: 18px; }

/* ---------- Trust bar ---------- */
.lc-trust { background: #fff; border-bottom: 1px solid var(--line); }
.lc-trust__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 18px 24px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px;
}
.lc-trust__item { display: flex; align-items: center; gap: 12px; justify-content: center; }
.lc-trust__ico {
  width: 44px; height: 44px; border-radius: 13px; background: var(--brand-tint);
  display: grid; place-items: center; flex-shrink: 0;
}
.lc-trust__ico svg { width: 23px; height: 23px; stroke: var(--brand); }
.lc-trust__txt b { display: block; font-size: 14px; font-weight: 800; }
.lc-trust__txt span { font-size: 12px; color: var(--ink-3); font-weight: 600; }

/* ---------- Category circles ---------- */
.lc-cats { display: grid; grid-template-columns: repeat(8,1fr); gap: 12px; }
.lc-cat { display: flex; flex-direction: column; align-items: center; gap: 11px; padding: 8px 4px; border-radius: 18px; transition: transform .16s ease; }
.lc-cat:hover { transform: translateY(-5px); }
.lc-cat__disc {
  width: 100%; aspect-ratio: 1; border-radius: 24px; display: grid; place-items: center;
  padding: 16%; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease;
}
.lc-cat:hover .lc-cat__disc { box-shadow: var(--shadow); }
.lc-cat__name { font-size: 13.5px; font-weight: 700; text-align: center; }

/* ---------- Product card ---------- */
.lc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.lc-grid--3 { grid-template-columns: repeat(3,1fr); }
.lc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; position: relative;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.lc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.lc-card__media { position: relative; aspect-ratio: 1; display: grid; place-items: center; padding: 13%; }
.lc-card__media .lc-illu { width: 100%; height: 100%; transition: transform .25s ease; }
.lc-card:hover .lc-card__media .lc-illu { transform: scale(1.06) rotate(-2deg); }
.lc-badge {
  position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 800; color: #fff; letter-spacing: .02em; z-index: 2;
}
.lc-badge--BEST { background: var(--ink); }
.lc-badge--NEW { background: var(--mint); }
.lc-badge--SALE { background: var(--brand); }
.lc-wish {
  position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.92); display: grid; place-items: center; z-index: 2;
  box-shadow: 0 2px 8px rgba(43,42,53,.14); transition: transform .15s ease;
}
.lc-wish:hover { transform: scale(1.12); }
.lc-wish svg { width: 18px; height: 18px; stroke: var(--ink-2); fill: none; transition: all .15s ease; }
.lc-wish.is-on svg { fill: var(--brand); stroke: var(--brand); }
.lc-card__body { padding: 15px 16px 17px; display: flex; flex-direction: column; flex: 1; }
.lc-card__brand { font-size: 11.5px; font-weight: 700; color: var(--ink-3); margin-bottom: 4px; }
.lc-card__name {
  font-size: 14.5px; font-weight: 700; color: var(--ink); line-height: 1.42;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 41px;
}
.lc-card__name:hover { color: var(--brand-dark); }
.lc-rate { display: flex; align-items: center; gap: 4px; margin: 7px 0 9px; }
.lc-rate__stars { display: inline-flex; gap: 1px; }
.lc-rate__stars svg { width: 13px; height: 13px; }
.lc-rate__num { font-size: 12px; font-weight: 700; }
.lc-rate__cnt { font-size: 11.5px; color: var(--ink-3); }
.lc-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.lc-price__off { font-size: 15px; font-weight: 800; color: var(--brand); }
.lc-price__now { font-size: 18px; font-weight: 800; color: var(--ink); }
.lc-price__now small { font-size: 13px; font-weight: 700; }
.lc-price__was { font-size: 13px; color: var(--ink-3); text-decoration: line-through; }
.lc-card__add {
  margin-top: 13px; width: 100%; padding: 10px; border-radius: 12px;
  background: var(--brand-tint); color: var(--brand-dark); font-weight: 800; font-size: 13.5px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background .16s ease, color .16s ease;
}
.lc-card__add:hover { background: var(--brand); color: #fff; }
.lc-card__add svg { width: 16px; height: 16px; }

/* ---------- Clothing spotlight ---------- */
.lc-cloth { background: linear-gradient(180deg, var(--brand-tint) 0%, #fff 78%); }
.lc-cloth__subs { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-bottom: 38px; }
.lc-sub {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 16px; text-align: center; transition: transform .16s ease, box-shadow .2s ease;
}
.lc-sub:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.lc-sub__art { width: 88px; height: 88px; margin: 0 auto 12px; border-radius: 20px; display: grid; place-items: center; padding: 13px; }
.lc-sub__name { font-size: 16px; font-weight: 800; }
.lc-sub__desc { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; font-weight: 600; }
.lc-sizeguide {
  margin-top: 36px; background: #fff; border: 1px dashed var(--brand);
  border-radius: var(--radius-lg); padding: 26px 30px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.lc-sizeguide__ico { width: 62px; height: 62px; border-radius: 18px; background: var(--brand-soft); display: grid; place-items: center; flex-shrink: 0; }
.lc-sizeguide__ico svg { width: 32px; height: 32px; stroke: var(--brand); }
.lc-sizeguide__txt { flex: 1; min-width: 220px; }
.lc-sizeguide__txt b { font-size: 17px; font-weight: 800; }
.lc-sizeguide__txt p { font-size: 13.5px; color: var(--ink-2); margin-top: 3px; }
.lc-sizetable { display: flex; gap: 8px; flex-wrap: wrap; }
.lc-sizetable span {
  padding: 7px 13px; background: var(--cream); border-radius: 10px;
  font-size: 12.5px; font-weight: 700; color: var(--ink-2);
}

/* ---------- Promo banners ---------- */
.lc-promos { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lc-promo {
  border-radius: var(--radius-lg); padding: 38px; position: relative; overflow: hidden;
  min-height: 220px; display: flex; flex-direction: column; justify-content: center;
}
.lc-promo__tag { font-size: 13px; font-weight: 800; color: var(--brand-dark); margin-bottom: 9px; }
.lc-promo--dark .lc-promo__tag { color: var(--amber); }
.lc-promo__title { font-size: 27px; color: var(--ink); }
.lc-promo--dark .lc-promo__title { color: #fff; }
.lc-promo__desc { margin-top: 8px; font-size: 14.5px; color: var(--ink-2); font-weight: 500; max-width: 260px; }
.lc-promo--dark .lc-promo__desc { color: rgba(255,255,255,.8); }
.lc-promo__btn { margin-top: 20px; align-self: flex-start; }
.lc-promo__art { position: absolute; right: -10px; bottom: -10px; width: 170px; height: 170px; opacity: .92; }
.lc-promo--dark { background: linear-gradient(135deg, #34323F, #211f29); }

/* ---------- Banner strip ---------- */
.lc-banner {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff; padding: 50px 56px; display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.lc-banner__txt { position: relative; z-index: 2; }
.lc-banner__txt h3 { font-size: 32px; }
.lc-banner__txt p { margin-top: 10px; font-size: 15.5px; color: rgba(255,255,255,.88); font-weight: 500; }
.lc-banner__pets { display: flex; gap: 4px; position: relative; z-index: 2; }
.lc-banner__pets > div { width: 130px; height: 130px; filter: drop-shadow(0 12px 20px rgba(0,0,0,.22)); }
.lc-banner__pets > div:last-child { width: 104px; height: 104px; align-self: flex-end; }
.lc-banner::before {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.1); right: -80px; top: -120px;
}

/* ---------- Brand strip ---------- */
.lc-brands { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.lc-brand {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 10px;
  transition: transform .16s ease, box-shadow .2s ease;
}
.lc-brand:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.lc-brand__logo { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 18px; font-weight: 900; color: #fff; }
.lc-brand__name { font-size: 12.5px; font-weight: 700; color: var(--ink-2); }

/* ---------- Reviews ---------- */
.lc-reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.lc-review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; display: flex; flex-direction: column;
}
.lc-review__stars { display: inline-flex; gap: 2px; margin-bottom: 12px; }
.lc-review__stars svg { width: 16px; height: 16px; }
.lc-review__body { font-size: 14.5px; color: var(--ink); font-weight: 500; line-height: 1.62; flex: 1; }
.lc-review__by { margin-top: 18px; display: flex; align-items: center; gap: 11px; }
.lc-review__ava { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; }
.lc-review__ava svg { width: 30px; height: 30px; }
.lc-review__by b { font-size: 13.5px; font-weight: 800; display: block; }
.lc-review__by span { font-size: 12px; color: var(--ink-3); }

/* ---------- Newsletter ---------- */
.lc-news {
  background: var(--ink); border-radius: var(--radius-lg); padding: 48px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; color: #fff;
}
.lc-news__title { font-size: 27px; }
.lc-news__title em { color: var(--brand); font-style: normal; }
.lc-news__desc { margin-top: 8px; color: rgba(255,255,255,.72); font-size: 14.5px; }
.lc-news__form { display: flex; gap: 10px; }
.lc-news__input {
  width: 290px; height: 52px; border-radius: 999px; border: 0; padding: 0 22px;
  background: #fff; font-weight: 500;
}
.lc-news__note { margin-top: 10px; font-size: 12px; color: rgba(255,255,255,.5); }

/* ---------- Footer ---------- */
.lc-footer { background: var(--cream); border-top: 1px solid var(--line); padding-top: 54px; }
.lc-footer__top {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px 40px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px;
}
.lc-footer__brand .lc-logo { margin-bottom: 14px; }
.lc-footer__about { font-size: 13.5px; color: var(--ink-2); max-width: 290px; line-height: 1.7; }
.lc-footer__social { display: flex; gap: 9px; margin-top: 16px; }
.lc-footer__social a {
  width: 38px; height: 38px; border-radius: 11px; background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; transition: all .16s ease;
}
.lc-footer__social a:hover { background: var(--brand); border-color: var(--brand); }
.lc-footer__social a:hover svg { stroke: #fff; fill: #fff; }
.lc-footer__social svg { width: 18px; height: 18px; stroke: var(--ink-2); }
.lc-footer__col h4 { font-size: 14px; font-weight: 800; margin-bottom: 14px; }
.lc-footer__col li { margin-bottom: 9px; }
.lc-footer__col a { font-size: 13.5px; color: var(--ink-2); font-weight: 500; }
.lc-footer__col a:hover { color: var(--brand-dark); }
.lc-footer__mid {
  border-top: 1px solid var(--line);
}
.lc-footer__info {
  max-width: var(--maxw); margin: 0 auto; padding: 22px 24px;
  font-size: 12px; color: var(--ink-3); line-height: 1.9;
}
.lc-footer__info b { color: var(--ink-2); font-weight: 700; }
.lc-footer__bottom {
  border-top: 1px solid var(--line);
}
.lc-footer__bottominner {
  max-width: var(--maxw); margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.lc-footer__copy { font-size: 12.5px; color: var(--ink-3); }
.lc-footer__pay { display: flex; gap: 7px; }
.lc-footer__pay span {
  padding: 5px 11px; background: #fff; border: 1px solid var(--line); border-radius: 8px;
  font-size: 11px; font-weight: 800; color: var(--ink-3);
}
.lc-footer__bottomright { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.lc-footer__admin {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 15px; border-radius: 999px;
  border: 1.5px solid var(--line-2); background: #fff;
  font-size: 12.5px; font-weight: 700; color: var(--ink-2);
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.lc-footer__admin:hover { border-color: var(--brand); color: var(--brand-dark); background: var(--brand-tint); }
.lc-footer__admin svg { width: 15px; height: 15px; }

/* ---------- Cart drawer ---------- */
.lc-cart {
  position: fixed; top: 0; right: 0; bottom: 0; width: 410px; max-width: 92vw;
  background: #fff; z-index: 210; transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column;
}
.lc-cart.is-open { transform: translateX(0); }
.lc-cart__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid var(--line);
}
.lc-cart__head b { font-size: 18px; font-weight: 800; }
.lc-cart__head b span { color: var(--brand); }
.lc-cart__close { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; }
.lc-cart__close:hover { background: var(--cream); }
.lc-cart__close svg { width: 20px; height: 20px; stroke: var(--ink); }
.lc-cart__body { flex: 1; overflow-y: auto; padding: 12px 18px; }
.lc-cart__empty { text-align: center; padding: 70px 20px; color: var(--ink-3); }
.lc-cart__empty svg { width: 96px; height: 96px; margin: 0 auto 16px; }
.lc-cart__empty b { display: block; font-size: 16px; color: var(--ink); font-weight: 800; margin-bottom: 6px; }
.lc-citem { display: flex; gap: 13px; padding: 15px 4px; border-bottom: 1px solid var(--line); }
.lc-citem__media { width: 78px; height: 78px; border-radius: 14px; padding: 9px; flex-shrink: 0; display: grid; place-items: center; }
.lc-citem__info { flex: 1; min-width: 0; }
.lc-citem__name { font-size: 13.5px; font-weight: 700; line-height: 1.4; }
.lc-citem__opt { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }
.lc-citem__price { font-size: 14px; font-weight: 800; color: var(--brand); margin-top: 6px; }
.lc-citem__ctrl { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.lc-qty { display: flex; align-items: center; border: 1px solid var(--line-2); border-radius: 9px; overflow: hidden; }
.lc-qty button { width: 26px; height: 26px; display: grid; place-items: center; font-weight: 800; color: var(--ink-2); }
.lc-qty button:hover { background: var(--cream); color: var(--brand); }
.lc-qty span { width: 32px; text-align: center; font-size: 13px; font-weight: 800; }
.lc-citem__del { font-size: 11.5px; color: var(--ink-3); }
.lc-citem__del:hover { color: var(--brand); }
.lc-cart__foot { border-top: 1px solid var(--line); padding: 18px 22px; }
.lc-cart__row { display: flex; justify-content: space-between; font-size: 13.5px; margin-bottom: 7px; color: var(--ink-2); }
.lc-cart__total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 800; margin: 12px 0 4px; }
.lc-cart__total span:last-child { color: var(--brand); }
.lc-cart__ship { font-size: 12px; color: var(--ink-3); margin-bottom: 14px; }

/* ---------- Toast ---------- */
.lc-toasts { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 300; display: flex; flex-direction: column; gap: 9px; align-items: center; }
.lc-toast {
  background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 999px;
  font-size: 13.5px; font-weight: 700; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 9px; animation: lc-toast-in .3s ease;
}
.lc-toast svg { width: 18px; height: 18px; }
.lc-toast--ok { background: var(--mint); }
@keyframes lc-toast-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ---------- Breadcrumb ---------- */
.lc-crumb { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--ink-3); font-weight: 600; }
.lc-crumb a:hover { color: var(--brand-dark); }
.lc-crumb span.sep { opacity: .5; }
.lc-crumb b { color: var(--ink); font-weight: 700; }

/* ---------- Page hero ---------- */
.lc-pagehero {
  background: linear-gradient(116deg, #FFF7F1 0%, var(--brand-tint) 56%, #FFE3EC 100%);
  padding: 40px 0 42px;
}
.lc-pagehero__inner { display: flex; align-items: center; gap: 30px; }
.lc-pagehero__text { flex: 1 1 auto; min-width: 0; }
.lc-pagehero__art {
  flex: 0 0 clamp(230px, 32%, 352px); height: 172px;
  background: url("../img/main-top.png") no-repeat center / contain;
  filter: drop-shadow(0 10px 20px rgba(200,69,106,.15));
}
.lc-pagehero__title { font-size: 33px; margin-top: 12px; }
.lc-pagehero__desc { margin-top: 9px; color: var(--ink-2); font-size: 15px; }
@media (max-width: 880px) {
  /* 모바일 — 브랜드 이미지를 히어로 배경 전체로 깔고, 글자는 또렷하게 */
  .lc-pagehero {
    padding: 34px 0 36px;
    background-color: var(--brand-tint);
    background-image:
      linear-gradient(rgba(255,250,248,.62), rgba(255,248,250,.55)),
      url("../img/main-top.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .lc-pagehero__art { display: none; }
  .lc-pagehero__desc { color: var(--ink); }
  .lc-crumb, .lc-crumb b { color: var(--ink); }
  .lc-crumb a { color: var(--brand-dark); }
  .lc-pagehero__title,
  .lc-pagehero__desc,
  .lc-crumb {
    text-shadow:
      -1px -1px 0 rgba(255,255,255,.9), 1px -1px 0 rgba(255,255,255,.9),
      -1px 1px 0 rgba(255,255,255,.9), 1px 1px 0 rgba(255,255,255,.9),
      0 2px 8px rgba(255,255,255,.95);
  }
}

/* ---------- Shop layout ---------- */
.lc-shop { display: grid; grid-template-columns: 256px 1fr; gap: 32px; align-items: start; }
.lc-filters {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 8px 20px 20px; position: sticky; top: 150px;
}
.lc-fgroup { padding: 18px 0; border-bottom: 1px solid var(--line); }
.lc-fgroup:last-child { border-bottom: 0; }
.lc-fgroup h4 { font-size: 14.5px; font-weight: 800; margin-bottom: 13px; }
.lc-fopt { display: flex; align-items: center; gap: 9px; padding: 6px 0; cursor: pointer; font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.lc-fopt:hover { color: var(--brand-dark); }
.lc-fopt input { width: 17px; height: 17px; accent-color: var(--brand); cursor: pointer; }
.lc-fopt.is-on { color: var(--ink); font-weight: 700; }
.lc-fopt__cnt { margin-left: auto; font-size: 11.5px; color: var(--ink-3); }
.lc-filters__reset { width: 100%; margin-top: 6px; padding: 11px; border-radius: 11px; background: var(--cream); font-weight: 700; font-size: 13px; color: var(--ink-2); }
.lc-filters__reset:hover { background: var(--brand-tint); color: var(--brand-dark); }
/* 모바일 필터 — 확인(적용·닫기) 버튼: 데스크톱에서는 숨김 */
.lc-filters__done {
  display: none; width: 100%; position: sticky; bottom: 10px;
  margin-top: 14px; padding: 15px; border-radius: 12px;
  background: var(--brand); color: #fff; font-weight: 800; font-size: 15px;
  box-shadow: 0 10px 24px rgba(255,111,145,.42);
}
.lc-filters__done:hover { background: var(--brand-dark); }
.lc-fchips { display: flex; flex-wrap: wrap; gap: 8px; }
.lc-fchip {
  padding: 7px 13px; border-radius: 999px; border: 1.5px solid var(--line-2);
  font-size: 12.5px; font-weight: 700; color: var(--ink-2); transition: all .14s ease;
}
.lc-fchip:hover { border-color: var(--brand); }
.lc-fchip.is-on { background: var(--brand); border-color: var(--brand); color: #fff; }

.lc-shop__toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 22px; flex-wrap: wrap;
}
.lc-shop__count { font-size: 14px; color: var(--ink-2); font-weight: 600; }
.lc-shop__count b { color: var(--ink); font-weight: 800; }
.lc-sort { display: flex; align-items: center; gap: 8px; }
.lc-sort select {
  height: 42px; border-radius: 11px; border: 1.5px solid var(--line-2); background: #fff;
  padding: 0 36px 0 14px; font-weight: 700; font-size: 13.5px; cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%232B2A35' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
}
.lc-mfilter { display: none; }
.lc-empty { text-align: center; padding: 80px 20px; color: var(--ink-3); }
.lc-empty svg { width: 110px; height: 110px; margin: 0 auto 18px; }
.lc-empty b { display: block; font-size: 18px; color: var(--ink); font-weight: 800; margin-bottom: 6px; }

/* ---------- Product detail ---------- */
.lc-pd { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.lc-pd__gallery { position: sticky; top: 150px; }
.lc-pd__main {
  border-radius: var(--radius-lg); aspect-ratio: 1; display: grid; place-items: center;
  padding: 13%; position: relative;
}
.lc-pd__badge { position: absolute; top: 18px; left: 18px; }
.lc-pd__thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 14px; }
.lc-pd__thumb {
  aspect-ratio: 1; border-radius: 14px; padding: 14%; display: grid; place-items: center;
  border: 2px solid transparent; cursor: pointer;
}
.lc-pd__thumb.is-on { border-color: var(--brand); }
.lc-pd__brand { font-size: 13px; font-weight: 800; color: var(--brand); }
.lc-pd__title { font-size: 28px; margin: 8px 0 10px; }
/* 상품명 + 공유 버튼 한 줄 */
.lc-pd__titlerow { display: flex; align-items: center; gap: 12px; }
.lc-pd__titlerow .lc-pd__title { flex: 1; min-width: 0; }
.lc-pd__share {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: var(--brand-tint); color: var(--brand-dark);
  border: 1.5px solid var(--line);
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.lc-pd__share:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-2px); }
.lc-pd__share:active { transform: translateY(0); }
.lc-pd__share svg { width: 18px; height: 18px; }
.lc-pd__rate { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 13px; }
.lc-pd__rate .lc-rate__stars svg { width: 16px; height: 16px; }
.lc-pd__rate a { color: var(--ink-3); text-decoration: underline; }
.lc-pd__pricebox { background: var(--cream); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 22px; }
.lc-pd__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.lc-pd__price .off { font-size: 24px; font-weight: 800; color: var(--brand); }
.lc-pd__price .now { font-size: 28px; font-weight: 800; }
.lc-pd__price .was { font-size: 16px; color: var(--ink-3); text-decoration: line-through; }
.lc-pd__pricenote { margin-top: 7px; font-size: 12.5px; color: var(--ink-2); display: flex; align-items: center; gap: 6px; }
.lc-pd__pricenote svg { width: 15px; height: 15px; stroke: var(--mint); flex-shrink: 0; }
.lc-pd__summary { font-size: 15px; color: var(--ink-2); font-weight: 500; margin-bottom: 22px; line-height: 1.66; }
.lc-pd__opt { margin-bottom: 20px; }
.lc-pd__opt > label { font-size: 13.5px; font-weight: 800; display: block; margin-bottom: 10px; }
.lc-pd__opt > label span { color: var(--ink-3); font-weight: 600; }
.lc-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.lc-swatch { display: flex; flex-direction: column; align-items: center; gap: 5px; cursor: pointer; }
.lc-swatch__dot {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--line-2);
  box-shadow: inset 0 0 0 3px #fff; transition: all .14s ease;
}
.lc-swatch.is-on .lc-swatch__dot { border-color: var(--brand); }
.lc-swatch__name { font-size: 11px; font-weight: 700; color: var(--ink-2); }
.lc-sizes { display: flex; gap: 9px; flex-wrap: wrap; }
.lc-size {
  min-width: 50px; height: 44px; padding: 0 14px; border-radius: 12px;
  border: 1.5px solid var(--line-2); font-weight: 800; font-size: 13.5px; color: var(--ink-2);
  transition: all .14s ease;
}
.lc-size:hover { border-color: var(--brand); }
.lc-size.is-on { background: var(--brand); border-color: var(--brand); color: #fff; }
.lc-pd__buybar { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.lc-qtybox { display: flex; align-items: center; border: 1.5px solid var(--line-2); border-radius: 12px; }
.lc-qtybox button { width: 44px; height: 50px; display: grid; place-items: center; font-size: 20px; font-weight: 700; color: var(--ink-2); }
.lc-qtybox button:hover { color: var(--brand); }
.lc-qtybox span { width: 48px; text-align: center; font-weight: 800; font-size: 15px; }
.lc-pd__actions { display: flex; gap: 12px; }
.lc-pd__actions .lc-btn { flex: 1; }
.lc-pd__wishbtn {
  width: 56px; flex: 0 0 56px !important; border: 2px solid var(--line-2);
  border-radius: 999px; display: grid; place-items: center; background: #fff;
}
.lc-pd__wishbtn:hover { border-color: var(--brand); }
.lc-pd__wishbtn svg { width: 22px; height: 22px; stroke: var(--ink-2); fill: none; }
.lc-pd__wishbtn.is-on svg { fill: var(--brand); stroke: var(--brand); }
.lc-pd__perks { border: 1px solid var(--line); border-radius: var(--radius); padding: 6px 18px; margin-top: 18px; }
.lc-pd__perk { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.lc-pd__perk:last-child { border-bottom: 0; }
.lc-pd__perk svg { width: 20px; height: 20px; stroke: var(--brand); flex-shrink: 0; }
.lc-pd__perk b { font-weight: 800; }
.lc-pd__perk span { color: var(--ink-3); }

/* tabs */
.lc-tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--line); margin-bottom: 28px; }
/* 탭: 항상 한 줄·4등분, 길면 말줄임(…) */
.lc-tab {
  flex: 1 1 0; min-width: 0; text-align: center;
  padding: 14px 12px; font-size: clamp(11px, 3vw, 15px); font-weight: 800; color: var(--ink-3);
  position: relative; bottom: -2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lc-tab.is-on { color: var(--ink); }
.lc-tab.is-on::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--brand); border-radius: 3px; }
.lc-tabpane { display: none; }
.lc-tabpane.is-on { display: block; animation: lc-fade .3s ease; }
.lc-infogrid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.lc-infocard { background: var(--cream); border-radius: 14px; padding: 18px 20px; display: flex; gap: 13px; align-items: flex-start; }
.lc-infocard svg { width: 24px; height: 24px; stroke: var(--brand); flex-shrink: 0; }
.lc-infocard b { font-size: 14px; font-weight: 800; display: block; margin-bottom: 3px; }
.lc-infocard p { font-size: 13px; color: var(--ink-2); }
.lc-spectable { width: 100%; border-collapse: collapse; }
.lc-spectable th, .lc-spectable td { text-align: left; padding: 13px 16px; font-size: 13.5px; border-bottom: 1px solid var(--line); }
.lc-spectable th { background: var(--cream); width: 160px; font-weight: 800; }
.lc-spectable td { color: var(--ink-2); }

/* ---------- About page ---------- */
.lc-abouthero { background: linear-gradient(135deg, var(--brand-tint), var(--cream)); }
.lc-abouthero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.lc-abouthero__art { position: relative; height: 340px; }
.lc-mission { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.lc-mission__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; text-align: center; }
.lc-mission__ico { width: 66px; height: 66px; border-radius: 20px; margin: 0 auto 16px; display: grid; place-items: center; }
.lc-mission__ico svg { width: 34px; height: 34px; }
.lc-mission__card h3 { font-size: 18px; }
.lc-mission__card p { margin-top: 9px; font-size: 13.5px; color: var(--ink-2); line-height: 1.66; }
.lc-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.lc-stat { text-align: center; }
.lc-stat__num { font-size: 40px; font-weight: 900; color: var(--brand); letter-spacing: -.03em; }
.lc-stat__label { font-size: 13.5px; color: var(--ink-2); font-weight: 600; margin-top: 4px; }
.lc-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.lc-step { position: relative; padding-top: 14px; }
.lc-step__no {
  width: 46px; height: 46px; border-radius: 14px; background: var(--brand); color: #fff;
  display: grid; place-items: center; font-size: 19px; font-weight: 900; margin-bottom: 14px;
}
.lc-step h4 { font-size: 16px; }
.lc-step p { margin-top: 6px; font-size: 13px; color: var(--ink-2); }

/* ---------- Contact page ---------- */
.lc-contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: start; }
.lc-contact__cards { display: flex; flex-direction: column; gap: 16px; }
.lc-ccard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; display: flex; gap: 16px; align-items: flex-start;
}
.lc-ccard__ico { width: 50px; height: 50px; border-radius: 15px; background: var(--brand-soft); display: grid; place-items: center; flex-shrink: 0; }
.lc-ccard__ico svg { width: 25px; height: 25px; stroke: var(--brand); }
.lc-ccard b { font-size: 15px; font-weight: 800; }
.lc-ccard p { font-size: 13.5px; color: var(--ink-2); margin-top: 4px; line-height: 1.6; }
.lc-ccard p strong { color: var(--ink); font-weight: 800; }
.lc-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px;
}
.lc-field { margin-bottom: 18px; }
.lc-field label { font-size: 13.5px; font-weight: 800; display: block; margin-bottom: 7px; }
.lc-field label i { color: var(--brand); font-style: normal; }
.lc-input, .lc-textarea, .lc-select {
  width: 100%; border: 1.5px solid var(--line-2); border-radius: 12px; padding: 13px 15px;
  font-size: 14px; font-weight: 500; background: #fff; transition: border-color .15s ease;
}
.lc-input:focus, .lc-textarea:focus, .lc-select:focus { border-color: var(--brand); outline: none; }
.lc-textarea { min-height: 130px; resize: vertical; }
.lc-field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* FAQ */
.lc-faq { max-width: 760px; margin: 0 auto; }
.lc-faqitem { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: #fff; }
.lc-faqitem__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 22px; font-size: 15px; font-weight: 700; text-align: left;
}
.lc-faqitem__q .ico { width: 26px; height: 26px; border-radius: 8px; background: var(--brand-tint); display: grid; place-items: center; flex-shrink: 0; transition: transform .2s ease; }
.lc-faqitem__q .ico svg { width: 14px; height: 14px; stroke: var(--brand); }
.lc-faqitem.is-open .lc-faqitem__q .ico { transform: rotate(45deg); }
.lc-faqitem__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.lc-faqitem__a p { padding: 0 22px 20px; font-size: 13.5px; color: var(--ink-2); line-height: 1.7; }
.lc-faqcat__q { font-weight: 700; }

/* tag pill */
.lc-tag {
  display: inline-flex; align-items: center; gap: 5px; padding: 5px 11px; border-radius: 999px;
  background: var(--mint-soft); color: #1d8a72; font-size: 11.5px; font-weight: 800;
}
.lc-tag svg { width: 13px; height: 13px; flex-shrink: 0; }

/* related */
.lc-related { margin-top: 60px; }

/* ---------- Utilities ---------- */
.lc-mt8 { margin-top: 8px; }
.lc-center { text-align: center; }
.lc-loadmore { text-align: center; margin-top: 36px; }
.is-hidden { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .lc-hero__title { font-size: 38px; }
  .lc-cats { grid-template-columns: repeat(4,1fr); }
  .lc-brands { grid-template-columns: repeat(3,1fr); }
  .lc-cloth__subs { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 960px) {
  .lc-nav { display: none; }
  .lc-burger { display: block; }
  .lc-search { display: none; }
  .lc-grid { grid-template-columns: repeat(3,1fr); }
  .lc-shop { grid-template-columns: 1fr; }
  .lc-filters { display: none; }
  .lc-mfilter { display: inline-flex; }
  .lc-filters__done { display: block; }
  .lc-pd { grid-template-columns: 1fr; gap: 30px; }
  .lc-pd__gallery { position: static; }
  .lc-contact { grid-template-columns: 1fr; }
  .lc-abouthero__grid { grid-template-columns: 1fr; }
  .lc-news { grid-template-columns: 1fr; text-align: center; }
  .lc-news__form { justify-content: center; }
  .lc-trust__inner { grid-template-columns: repeat(2,1fr); }
  .lc-trust__item { justify-content: flex-start; }
  .lc-footer__top { grid-template-columns: 1fr 1fr; }
  .lc-mission { grid-template-columns: 1fr; }
  .lc-stats { grid-template-columns: repeat(2,1fr); }
  .lc-steps { grid-template-columns: repeat(2,1fr); }
  .lc-reviews { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .lc-section { padding: 46px 0; }
  .lc-header__inner { padding: 12px 14px; gap: 8px; }
  .lc-wrap { padding: 0 18px; }
  .lc-hero__grid { grid-template-columns: 1fr; text-align: center; padding: 38px 20px; min-height: auto; }
  .lc-hero__art { height: 280px; order: -1; }
  .lc-hero__title { font-size: 31px; }
  .lc-hero__desc { margin-left: auto; margin-right: auto; }
  .lc-hero__cta { justify-content: center; }
  .lc-hero__arrow { display: none; }
  .lc-grid, .lc-grid--3 { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .lc-promos { grid-template-columns: 1fr; }
  .lc-cloth__subs { grid-template-columns: repeat(2,1fr); }
  .lc-head__title, .lc-pagehero__title { font-size: 24px; }
  .lc-banner { flex-direction: column; text-align: center; padding: 38px 26px; }
  .lc-banner__txt h3 { font-size: 25px; }
  .lc-news { padding: 34px 24px; }
  .lc-news__input { width: 100%; }
  .lc-news__form { flex-direction: column; }
  .lc-actions .lc-act__label { display: none; }
  .lc-actions { gap: 2px; }
  .lc-act { padding: 8px 6px; }
  .lc-act svg { width: 24px; height: 24px; }
  .lc-logo__name { font-size: 20px; }
  .lc-logo__tag { display: none; }
  .lc-logo__mark { width: 38px; height: 38px; }
  .lc-pd__title { font-size: 23px; }
  .lc-pd__actions { flex-wrap: wrap; }
  .lc-tab { padding: 12px 5px; }
  .lc-form { padding: 24px 20px; }
  .lc-field--row { grid-template-columns: 1fr; }
  .lc-footer__top { grid-template-columns: 1fr; }
  .lc-cats { grid-template-columns: repeat(3,1fr); }
  .lc-infogrid { grid-template-columns: 1fr; }
}
@media (max-width: 440px) {
  .lc-cats { grid-template-columns: repeat(2,1fr); }
  .lc-stats { grid-template-columns: 1fr; }
  .lc-steps { grid-template-columns: 1fr; }
  .lc-hero__title { font-size: 26px; }
  .lc-trust__inner { grid-template-columns: max-content; justify-content: center; }
}

/* ---------- 로딩 스피너 (화면 정중앙) ---------- */
.lc-loading {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,251,247,.86);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  animation: lcLoadIn .2s ease;
}
.lc-loading.is-out { opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.lc-loading__box { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.lc-loading__ring { position: relative; width: 96px; height: 96px; display: grid; place-items: center; }
.lc-loading__ring::before, .lc-loading__ring::after {
  content: ""; position: absolute; border-radius: 50%; border: 5px solid transparent;
}
.lc-loading__ring::before {
  inset: 0; border-top-color: var(--brand); border-right-color: var(--brand);
  animation: lcSpin .95s linear infinite;
}
.lc-loading__ring::after {
  inset: 14px; border-bottom-color: #F4CE86; border-left-color: #F4CE86;
  animation: lcSpin 1.5s linear infinite reverse;
}
.lc-loading__icon {
  width: 54px; height: 54px; border-radius: 16px; object-fit: cover; display: block;
  box-shadow: 0 5px 15px rgba(74,90,107,.2); animation: lcPulse 1.15s ease-in-out infinite;
}
.lc-loading__txt { font-size: 14px; font-weight: 700; color: var(--ink-2); letter-spacing: .01em; }
.lc-loading__txt::after { content: ""; animation: lcDots 1.4s steps(1,end) infinite; }
@keyframes lcSpin { to { transform: rotate(360deg); } }
@keyframes lcPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }
@keyframes lcLoadIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes lcDots { 0% { content: ""; } 25% { content: "."; } 50% { content: ".."; } 75% { content: "..."; } }

/* ---------- 팝업 (사이트 진입 시) ---------- */
.lc-popups {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 24px; padding: 30px 20px;
  background: rgba(36,33,44,.6);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  overflow: auto; animation: lcPopFade .3s ease both;
}
.lc-popup {
  width: 360px; max-width: 92vw; height: 70vh; max-height: 70vh;
  background: #fff; border-radius: 24px;
  position: relative; overflow: hidden;
  box-shadow: 0 26px 64px rgba(36,33,44,.42), 0 3px 12px rgba(36,33,44,.2);
  display: flex; flex-direction: column;
  animation: lcPopDrop .82s cubic-bezier(.33,.05,.36,1) both;
}
.lc-popup__x {
  position: absolute; top: 13px; right: 13px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%; border: none; padding: 0;
  background: rgba(255,255,255,.94); color: var(--ink);
  display: grid; place-items: center; font-size: 21px; line-height: 1; cursor: pointer;
  box-shadow: 0 4px 14px rgba(36,33,44,.26);
  transition: transform .18s ease, background .18s ease;
}
.lc-popup__x:hover { background: #fff; transform: rotate(90deg); }
.lc-popup__scroll { flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.lc-popup__scroll::-webkit-scrollbar { width: 6px; }
.lc-popup__scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 6px; }
.lc-popup__scroll > .lc-popup__body:first-child { padding-top: 54px; }
.lc-popup__img { width: 100%; background: var(--brand-tint); line-height: 0; }
.lc-popup__img img { width: 100%; height: auto; display: block; }
.lc-popup__body { padding: 24px 24px 20px; }
.lc-popup__title {
  font-size: 20px; font-weight: 800; color: var(--ink);
  margin-bottom: 9px; letter-spacing: -.02em; line-height: 1.4;
}
.lc-popup__text { font-size: 14px; color: var(--ink-2); line-height: 1.75; white-space: pre-line; }
.lc-popup__foot {
  flex-shrink: 0; display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding: 13px 16px 13px 18px; border-top: 1px solid var(--line); background: #fff;
}
.lc-popup__chk {
  display: flex; align-items: center; gap: 7px; font-size: 12.5px;
  color: var(--ink-3); font-weight: 600; cursor: pointer; user-select: none;
}
.lc-popup__chk input { width: 16px; height: 16px; accent-color: var(--brand); cursor: pointer; }
.lc-popup__close {
  padding: 10px 24px; border-radius: 999px; border: none; cursor: pointer;
  background: var(--brand); color: #fff; font-size: 13px; font-weight: 700;
  box-shadow: 0 7px 18px rgba(255,111,145,.42);
  transition: transform .15s ease, box-shadow .15s ease;
}
.lc-popup__close:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(255,111,145,.52); }
.lc-popup__close:active { transform: translateY(0); }
@keyframes lcPopFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lcPopDrop {
  0%   { opacity: 0; transform: translateY(-100vh); }
  55%  { opacity: 1; transform: translateY(0); }
  70%  { transform: translateY(-22px); }
  83%  { transform: translateY(0); }
  91%  { transform: translateY(-7px); }
  100% { transform: translateY(0); }
}
@media (max-width: 480px) {
  .lc-popups { padding: 20px 13px; gap: 16px; }
  .lc-popup { width: 100%; height: 70vh; max-height: 76vh; }
  .lc-popup__body { padding: 20px 20px 18px; }
  .lc-popup__scroll > .lc-popup__body:first-child { padding-top: 50px; }
  .lc-popup__title { font-size: 18.5px; }
}

/* ---------- 상품 이미지 (업로드 사진 / 기본 일러스트 대체) ---------- */
.lc-card__media--photo { padding: 0; background: #fff; overflow: hidden; }
.lc-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.lc-card:hover .lc-card__media--photo .lc-card__img { transform: scale(1.05); }
.lc-citem__media--photo { padding: 0; overflow: hidden; }
.lc-citem__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-pd__main--photo { padding: 0; overflow: hidden; }
.lc-pd__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-pd__thumb--photo { padding: 0; overflow: hidden; }
.lc-pd__thumb--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- 상품 정보 탭 — 상세 설명 / 상세 이미지 ---------- */
.lc-pd__detailtext { font-size: 15px; color: var(--ink-2); margin-bottom: 22px; line-height: 1.75; white-space: pre-line; }
.lc-pd__details { max-width: 860px; margin: 30px auto 0; display: flex; flex-direction: column; gap: 14px; }
.lc-pd__details img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--line); border-radius: 14px;
}
