/* ============================================================
   LOVVON Theme CSS
   기준: lovvon_wireframe_1.html 외 10종 와이어프레임
   ============================================================ */

/* ── 1. CSS VARIABLES ── */
:root {
  --lv-black:    #111;
  --lv-white:    #fff;
  --lv-gray-100: #f5f5f3;
  --lv-gray-200: #e8e8e4;
  --lv-gray-400: #b0afa8;
  --lv-gray-600: #6b6b65;
  --lv-gray-800: #2c2c2a;
  --lv-accent:   #c8a98a;
  --lv-accent-light: #f5ede3;
  --lv-font: 'Helvetica Neue', Arial, sans-serif;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--lv-font);
  color: var(--lv-black);
  background: var(--lv-white);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { cursor: pointer; font-family: var(--lv-font); background: none; border: none; padding: 0; }

/* 기존 gnuboard 스타일 리셋 */
#hd_login_msg { display: none; }
#container_title {
  text-align: center;
  padding: 48px 40px 40px;
  border-bottom: 1px solid var(--lv-gray-200);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lv-gray-600);
  font-weight: 400;
}
@media (max-width: 768px) {
  #container_title { padding: 32px 20px 28px; }
}
#container { padding: 0; max-width: none; }
#wrapper { margin: 0; }
/* mobile_shop.css 충돌 오버라이드 */
a:link, a:visited { color: inherit; }
p { word-break: break-word; }

/* ── 3. NOTICE BAR ── */
.lv-notice-bar {
  background: var(--lv-black);
  color: var(--lv-white);
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

/* ── 4. GNB ── */
.lv-gnb {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--lv-white);
  border-bottom: 1px solid var(--lv-gray-200);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 40px;
  height: 60px;
}
.lv-gnb-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.lv-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.lv-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--lv-black);
  transition: all 0.2s;
}
.lv-logo { display: flex; align-items: center; }
.lv-logo img { height: 22px; width: auto; display: block; }
.lv-gnb-nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lv-gray-600);
  justify-content: center;
  align-items: center;
}
.lv-gnb-nav a,
.lv-gnb-nav span {
  cursor: pointer;
  white-space: nowrap;
  color: var(--lv-gray-600);
  transition: color 0.15s;
}
.lv-gnb-nav a:hover,
.lv-gnb-nav span:hover,
.lv-gnb-nav a.active { color: var(--lv-black); }
.lv-gnb-item { position: relative; }
.lv-gnb-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lv-white);
  border: 1px solid var(--lv-gray-200);
  min-width: 130px;
  z-index: 900;
  padding: 12px 0 8px;
}
.lv-gnb-item.has-sub:hover .lv-gnb-dropdown { display: block; }
.lv-gnb-dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--lv-gray-600);
  white-space: nowrap;
  text-transform: uppercase;
}
.lv-gnb-dropdown a:hover { color: var(--lv-black); background: var(--lv-gray-100); }

/* 전체메뉴 트리거 */
.lv-gnb-allcat-trigger > a {
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lv-gray-500);
}
.lv-gnb-allcat-trigger > a:hover { color: var(--lv-black); }

/* 전체 카테고리 레이어 */
.lv-allcat {
  display: none;
  position: absolute;
  top: 100%; left: 0; width: 100%;
  background: var(--lv-white);
  border-top: 1px solid var(--lv-gray-200);
  border-bottom: 1px solid var(--lv-gray-200);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  z-index: 800;
  padding: 32px 40px 36px;
}
.lv-allcat.active { display: block; }
.lv-allcat-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  max-width: 1200px;
}
.lv-allcat-group {
  min-width: 130px;
  padding-right: 36px;
  margin-right: 36px;
  border-right: 1px solid var(--lv-gray-200);
  flex-shrink: 0;
}
.lv-allcat-group:last-of-type { border-right: none; margin-right: 0; padding-right: 0; }
.lv-allcat-col-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lv-gray-400);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--lv-gray-200);
}
.lv-allcat-col-title a { color: inherit; text-decoration: none; }
.lv-allcat-col-title a:hover { color: var(--lv-gray-600); }
.lv-allcat-links { display: flex; flex-direction: column; }
.lv-allcat-2nd {
  display: block;
  font-size: 13px;
  color: var(--lv-gray-800) !important;
  padding: 7px 0;
  text-decoration: none;
  transition: color 0.1s;
}
.lv-allcat-2nd:hover { color: var(--lv-accent) !important; }
.lv-allcat-highlight { color: var(--lv-accent) !important; font-weight: 500; }
.lv-allcat-banner {
  margin-left: auto;
  flex-shrink: 0;
  width: 180px;
}
.lv-allcat-banner img { width: 100%; height: auto; display: block; }

.lv-gnb-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-shrink: 0;
}
.lv-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--lv-black);
  position: relative;
}
.lv-icon-btn svg { width: 20px; height: 20px; }
.lv-cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--lv-black);
  color: var(--lv-white);
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.lv-cart-count:empty,
.lv-cart-count[data-count="0"] { display: none; }

/* ── 5. SIDE MENU (OVERLAY) ── */
.lv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  display: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.lv-overlay.open {
  display: flex;
  opacity: 1;
}
.lv-side-panel {
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--lv-white);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}
.lv-overlay.open .lv-side-panel { transform: translateX(0); }
.lv-overlay-bg {
  flex: 1;
  cursor: pointer;
}

/* 사이드 패널 헤더 */
.lv-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--lv-gray-200);
  flex-shrink: 0;
}
.lv-panel-logo { display: flex; align-items: center; }
.lv-panel-logo img { height: 22px; width: auto; display: block; }
.lv-panel-close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.lv-panel-close::before,
.lv-panel-close::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: var(--lv-black);
}
.lv-panel-close::before { transform: rotate(45deg); }
.lv-panel-close::after  { transform: rotate(-45deg); }

/* 사이드 회원 영역 */
.lv-member-block {
  padding: 24px;
  border-bottom: 1px solid var(--lv-gray-200);
  flex-shrink: 0;
}
.lv-member-guest { display: flex; flex-direction: column; gap: 12px; }
.lv-member-guest p { font-size: 13px; color: var(--lv-gray-600); line-height: 1.6; }
.lv-member-guest p strong { color: var(--lv-black); }
.lv-member-btns { display: flex; gap: 8px; }
.lv-btn-outline {
  flex: 1; padding: 10px 0; text-align: center;
  border: 1px solid var(--lv-gray-200); font-size: 12px;
  letter-spacing: 0.06em; color: var(--lv-gray-600);
  background: var(--lv-white); transition: all 0.15s;
}
.lv-btn-outline:hover { border-color: var(--lv-black); color: var(--lv-black); }
a.lv-btn-outline, a.lv-btn-outline:link, a.lv-btn-outline:visited { color: var(--lv-gray-600); }
.lv-btn-fill {
  flex: 1; padding: 10px 0; text-align: center;
  border: 1px solid var(--lv-black); background: var(--lv-black);
  font-size: 12px; letter-spacing: 0.06em; color: var(--lv-white);
}
.lv-btn-fill:hover { opacity: 0.85; }
a.lv-btn-fill, a.lv-btn-fill:link, a.lv-btn-fill:visited { color: var(--lv-white); }

/* 로그인 후 */
.lv-member-logged { display: none; flex-direction: column; gap: 14px; }
.lv-member-logged.show { display: flex; }
.lv-member-name { font-size: 15px; font-weight: 600; color: var(--lv-gray-800); }
.lv-member-name span { font-weight: 400; color: var(--lv-gray-600); font-size: 13px; }
.lv-member-points { display: flex; gap: 16px; }
.lv-point-item { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.lv-point-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lv-gray-400); }
.lv-point-value { font-size: 14px; font-weight: 600; color: var(--lv-gray-800); }
.lv-member-quick { display: flex; gap: 6px; }
.lv-quick-btn {
  flex: 1; padding: 9px 0; text-align: center;
  border: 1px solid var(--lv-gray-200); font-size: 11px;
  letter-spacing: 0.04em; color: var(--lv-gray-600); cursor: pointer;
}
.lv-quick-btn:hover { border-color: var(--lv-black); color: var(--lv-black); }

/* 사이드 카테고리 Nav */
.lv-nav-section { flex-shrink: 0; }
.lv-nav-section + .lv-nav-section { border-top: 1px solid var(--lv-gray-200); }
.lv-nav-section-title {
  padding: 20px 24px 10px;
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--lv-gray-400);
}
.lv-nav-list { list-style: none; }
.lv-nav-item {
  display: flex; flex-wrap: wrap; align-items: center;
  border-bottom: 1px solid var(--lv-gray-200);
}
.lv-nav-item > a,
.lv-nav-item > span {
  flex: 1; display: block;
  padding: 15px 24px; font-size: 14px; color: var(--lv-gray-800);
  cursor: pointer; transition: background 0.1s;
}
.lv-nav-item > a:hover,
.lv-nav-item > span:hover { background: var(--lv-gray-100); }
.lv-nav-arrow {
  padding: 15px 20px; background: none; border: none; cursor: pointer;
  font-size: 14px; color: var(--lv-gray-400);
  transition: transform 0.2s; line-height: 1;
}
.lv-nav-item.open .lv-nav-arrow { transform: rotate(90deg); }
.lv-nav-sub {
  width: 100%; display: none;
  background: var(--lv-gray-100);
  border-top: 1px solid var(--lv-gray-200);
  list-style: none;
}
.lv-nav-item.open .lv-nav-sub { display: block; }
.lv-nav-sub a {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 24px 11px 36px; font-size: 13px;
  color: var(--lv-gray-600); border-bottom: 1px solid var(--lv-gray-200);
}
.lv-nav-sub li:last-child a { border-bottom: none; }
.lv-nav-sub a:hover { color: var(--lv-black); }
.lv-nav-sub a::before {
  content: ''; display: block; width: 4px; height: 4px;
  border-radius: 50%; background: var(--lv-gray-400); flex-shrink: 0;
}

/* 사이드 커뮤니티 / CS */
.lv-community-section {
  padding: 20px 24px;
  border-top: 1px solid var(--lv-gray-200);
  flex-shrink: 0;
}
.lv-community-title {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lv-gray-400); margin-bottom: 14px;
}
.lv-community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.lv-community-btn {
  padding: 12px 0; text-align: center;
  border: 1px solid var(--lv-gray-200); font-size: 12px;
  color: var(--lv-gray-600); cursor: pointer; background: var(--lv-white);
}
.lv-community-btn:hover { border-color: var(--lv-black); color: var(--lv-black); }

/* 사이드 패널 푸터 */
.lv-panel-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--lv-gray-200);
  flex-shrink: 0;
  margin-top: auto;
}
.lv-sns-links { display: flex; gap: 16px; margin-bottom: 16px; }
.lv-sns-link {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lv-gray-400); cursor: pointer;
}
.lv-sns-link:hover { color: var(--lv-black); }
.lv-panel-footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.lv-footer-link {
  font-size: 11px; color: var(--lv-gray-400); cursor: pointer;
}
.lv-footer-link:hover { color: var(--lv-gray-600); }

/* ── 6. SEARCH MODAL ── */
.lv-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 400;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.lv-search-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.lv-search-box {
  background: var(--lv-white);
  width: 100%;
  max-width: 560px;
  padding: 32px 32px 28px;
  margin: 0 20px;
}
.lv-search-box form {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--lv-black);
}
.lv-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  font-family: var(--lv-font);
  padding: 8px 0;
  color: var(--lv-black);
  background: transparent;
}
.lv-search-input::placeholder { color: var(--lv-gray-400); }
.lv-search-input:focus { outline: none; box-shadow: none; }
.lv-search-box-inner {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--lv-black);
  width: 100%;
}
.lv-search-box-inner .lv-search-input { flex: 1; }
.lv-search-submit {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0 8px 12px;
  color: var(--lv-black);
}
.lv-search-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.lv-search-close button {
  font-size: 20px;
  color: var(--lv-gray-400);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* 검색 키워드 태그 */
.lv-keyword-list { margin-top: 24px; }
.lv-keyword-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lv-gray-400);
  margin-bottom: 12px;
}
.lv-keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── 7. PAGE LAYOUT ── */
.lv-section { padding: 64px 40px; }
.lv-mag-index-section { background: #f7f4ef; }
.lv-section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}
.lv-section-title {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lv-gray-600);
}
.lv-section-link {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lv-gray-400);
}
.lv-section-link:hover { color: var(--lv-black); }

/* 페이지 타이틀 (리스트, 게시판 등) */
.lv-page-title {
  position: relative;
  text-align: center;
  padding: 48px 40px 40px;
  border-bottom: 1px solid var(--lv-gray-200);
}
.lv-page-title h1 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lv-gray-600);
  font-weight: 400;
}

/* ── 8. HERO SLIDER ── */
.lv-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.lv-pc-only { display: block; }
.lv-mobile-only { display: none; }
.lv-hero .swiper,
.lv-hero .swiper-slide { height: 100%; }
.lv-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lv-hero-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  color: var(--lv-white);
  z-index: 2;
  pointer-events: none;
}
.lv-hero-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.7;
}
.lv-hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 420px;
}
.lv-hero-cta {
  display: inline-block;
  border: 1px solid var(--lv-white);
  padding: 12px 32px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lv-white);
  pointer-events: auto;
  transition: background 0.2s;
}
.lv-hero-cta:hover { background: rgba(255,255,255,0.15); }
/* Swiper 페이지네이션 커스텀 */
.lv-hero .swiper-pagination-bullet {
  width: 24px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  opacity: 1;
}
.lv-hero .swiper-pagination-bullet-active {
  width: 36px;
  background: var(--lv-white);
}

/* sh_banner → lv-hero 연동: 배너 자체 높이로 hero 크기 결정 */
.lv-hero .pc_ban,
.lv-hero .mobile_ban { width: 100%; }
.lv-hero [id^="sh_banner_"],
.lv-hero .slick-slider,
.lv-hero .slick-list,
.lv-hero .slick-track { width: 100% !important; margin: 0 !important; padding: 0 !important; }
.lv-hero .sh-banner-img-wrap img { width: 100%; height: auto; display: block; }
.lv-hero .main_banner_wrap {
  position: absolute;
  bottom: 60px;
  left: 60px;
  color: var(--lv-white);
  z-index: 2;
  pointer-events: none;
}
.lv-hero .main_title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 420px;
}
.lv-hero .sub_title {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.lv-hero .banner_btn { pointer-events: auto; }
.lv-hero .banner_btn a {
  display: inline-block;
  border: 1px solid var(--lv-white);
  padding: 12px 32px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lv-white);
  transition: background 0.2s;
}
.lv-hero .banner_btn a:hover { background: rgba(255,255,255,0.15); }
@media (max-width: 768px) {
  .lv-hero .main_banner_wrap { left: 24px; bottom: 40px; }
  .lv-hero .main_title { font-size: 28px; }
}

/* ── 9. MARQUEE ── */
.lv-marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--lv-gray-200);
  border-bottom: 1px solid var(--lv-gray-200);
  padding: 10px 0;
  background: var(--lv-white);
}
.lv-marquee-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: lv-marquee 18s linear infinite;
}
.lv-marquee-inner span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lv-gray-600);
  flex-shrink: 0;
}
@keyframes lv-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 10. CATEGORY TAGS ── */
.lv-category-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top:10px;
}
.lv-cat-tag {
  border: 1px solid var(--lv-gray-200);
  padding: 7px 18px;
  font-size: 12px;
  letter-spacing: 0.06em;
  border-radius: 40px;
  cursor: pointer;
  color: var(--lv-gray-600);
  background: var(--lv-white);
  transition: all 0.15s;
}
.lv-cat-tag.active,
.lv-cat-tag:hover {
  background: var(--lv-black);
  color: var(--lv-white);
  border-color: var(--lv-black);
}

/* ── 11. PRODUCT GRID ── */
.lv-product-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lv-product-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.lv-product-card { cursor: pointer; }
.lv-product-card .lv-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--lv-gray-100);
  position: relative;
}
.lv-product-card .lv-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s;
}
.lv-product-card:hover .lv-thumb img { transform: scale(1.03); }

/* 상품 배지 */
.lv-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--lv-black);
  color: var(--lv-white);
}
.lv-badge.sale { background: var(--lv-accent); color: var(--lv-white); }
.lv-badge.best { background: var(--lv-gray-800); color: var(--lv-white); }

.lv-product-card .lv-brand {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lv-gray-400);
  margin-bottom: 4px;
}
.lv-product-card .lv-name {
  font-size: 13px;
  color: var(--lv-gray-800);
  margin-bottom: 6px;
  line-height: 1.4;
}
.lv-product-card .lv-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--lv-black);
}
.lv-product-card .lv-price-original {
  font-size: 12px;
  color: var(--lv-gray-400);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}
.lv-product-card .lv-discount {
  font-size: 12px;
  color: var(--lv-accent);
  margin-left: 4px;
}

/* ── 12. MAGAZINE 섹션 (메인) ── */
.lv-magazine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--lv-gray-200);
  margin-bottom: 1px;
}
.lv-magazine-sub-col {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--lv-gray-200);
}
.lv-mag-card { background: var(--lv-white); }
.lv-mag-card .lv-thumb { width: 100%; overflow: hidden; }
.lv-mag-card .lv-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lv-mag-card .lv-meta { padding: 16px 20px 20px; }
.lv-mag-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lv-accent);
  margin-bottom: 8px;
}
.lv-mag-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--lv-gray-800);
  margin-bottom: 8px;
}
.lv-mag-title.sm { font-size: 13px; }
.lv-mag-desc {
  font-size: 12px;
  color: var(--lv-gray-600);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 매거진 하단 3열 */
.lv-magazine-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--lv-gray-200);
}
.lv-mag-sm { background: var(--lv-white); }
.lv-mag-sm .lv-thumb { width: 100%; aspect-ratio: 1; overflow: hidden; }
.lv-mag-sm .lv-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lv-mag-sm .lv-meta { padding: 12px 14px 16px; }

/* ── 13. EDITORIAL SPLIT ── */
.lv-editorial-split { width: 100vw; margin-left: calc(50% - 50vw); }
.lv-editorial-split .sh-banner-img-wrap { overflow: hidden; }
.lv-editorial-split [id^="sh_banner_"] { width: 100%; }
.lv-editorial-split .slick-slider,
.lv-editorial-split .slick-list { width: 100% !important; margin: 0 !important; overflow: hidden; }
.lv-editorial-split .slick-slide { margin: 0 !important; padding: 0 !important; }
.lv-editorial-split .sh-banner-img-wrap a { display: block; }
.lv-editorial-split .sh-banner-img-wrap img { width: 100%; height: auto; display: block; object-fit: cover; }
.lv-editorial-block:hover img { transform: scale(1.03); }
.lv-editorial-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
}
.lv-editorial-label p {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.lv-editorial-label h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--lv-white);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.lv-editorial-label a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lv-white);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}

/* ── 14. REVIEW ── */
.lv-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lv-review-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-top: 1px solid var(--lv-gray-200);
  padding-top: 20px;
}
.lv-review-thumb {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  object-fit: cover;
}
.lv-review-body { flex: 1; min-width: 0; }
.lv-review-stars { font-size: 12px; color: var(--lv-accent); margin-bottom: 8px; letter-spacing: 2px; }
.lv-review-text {
  font-size: 13px;
  color: var(--lv-gray-600);
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lv-review-meta { font-size: 11px; color: var(--lv-gray-400); }

/* ── 관련상품 이미지 ── */
.relation_wr .sct_img { overflow: hidden; width: 100%; }
.relation_wr .sct_img img { width: 100% !important; height: auto !important; display: block; }
.relation_wr .sct_img a { display: block; width: 100%; }

/* ── 쿠폰존 ── */
.lv-coupon-wrap { max-width: 960px; margin: 0 auto; padding: 40px 40px 80px; }
.lv-coupon-intro { margin-bottom: 36px; }
.lv-coupon-intro-title { font-size: 16px; font-weight: 600; color: var(--lv-gray-800); margin-bottom: 8px; }
.lv-coupon-intro-desc { font-size: 13px; color: var(--lv-gray-600); line-height: 1.7; }
.lv-coupon-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.lv-coupon-card { display: flex; flex-direction: column; }
.lv-coupon-ticket { margin-bottom: 16px; overflow: hidden; }
.lv-coupon-ticket img { width: 100%; height: auto; display: block; }
.lv-coupon-info { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; flex: 1; }
.lv-coupon-info-row { display: flex; gap: 8px; font-size: 12px; }
.lv-coupon-info-key { color: var(--lv-gray-400); width: 88px; flex-shrink: 0; }
.lv-coupon-info-val { color: var(--lv-gray-600); }
.lv-coupon-btn {
  width: 100%; padding: 13px;
  background: var(--lv-gray-900); color: var(--lv-white);
  font-size: 12px; letter-spacing: 0.1em;
  border: none; cursor: pointer; font-family: inherit;
  transition: opacity 0.15s;
}
.lv-coupon-btn:hover { opacity: 0.8; }
.lv-coupon-btn-done { background: var(--lv-gray-200); color: var(--lv-gray-400); cursor: not-allowed; }
.lv-coupon-btn-done:hover { opacity: 1; }
.lv-coupon-empty { text-align: center; padding: 60px 0; font-size: 13px; color: var(--lv-gray-400); border: 1px dashed var(--lv-gray-200); margin-bottom: 40px; }
.lv-coupon-notice { padding: 16px 20px; background: var(--lv-gray-100); border-left: 3px solid var(--lv-gray-200); font-size: 12px; color: var(--lv-gray-400); line-height: 1.8; margin-bottom: 28px; }
.lv-coupon-join { text-align: center; padding: 32px; border: 1px solid var(--lv-gray-200); }
.lv-coupon-join p { font-size: 13px; color: var(--lv-gray-600); margin-bottom: 16px; }
.lv-coupon-join-btn { display: inline-block; padding: 13px 40px; background: var(--lv-gray-900); color: var(--lv-white); font-size: 12px; letter-spacing: 0.12em; text-decoration: none; }
@media (max-width: 970px) { .lv-coupon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .lv-coupon-wrap { padding: 28px 20px 60px; } .lv-coupon-grid { grid-template-columns: 1fr; } }

/* ── 15. SNS FEED ── */
.lv-sns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.lv-sns-cell {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--lv-gray-100);
}
.lv-sns-cell img { width: 100%; height: 100%; object-fit: cover; }

/* ── 16. FOOTER ── */
#ft { display: none; }       /* 기존 buzinga 푸터 숨김 */
#ft_link { display: none; }  /* 기존 buzinga 푸터링크 숨김 */
.ft_copy { display: none; }  /* 기존 buzinga 카피라이트 숨김 */
#ft_to_top { display: none; }

.lv-footer {
  background: var(--lv-black);
  color: var(--lv-white);
  padding: 60px 40px 40px;
}
.lv-footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.lv-footer-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.lv-footer-desc { font-size: 12px; color: var(--lv-gray-400); line-height: 1.8; }
.lv-footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--lv-gray-400);
}
.lv-footer-col ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.15s;
}
.lv-footer-col ul li:hover,
.lv-footer-col ul li a:hover { color: var(--lv-white); }
.lv-footer-col ul li a { color: inherit; }

.lv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
.lv-footer-bottom p { font-size: 11px; color: var(--lv-gray-600); line-height: 1.8; }
.lv-footer-bottom a { color: var(--lv-gray-600); }
.lv-footer-bottom a:hover { color: var(--lv-gray-400); }

/* ── 17. STEP BAR (장바구니 → 주문 → 완료) ── */
.lv-step-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-bottom: 1px solid var(--lv-gray-200);
}
.lv-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lv-gray-400);
}
.lv-step.active { color: var(--lv-black); }
.lv-step-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--lv-gray-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.lv-step.active .lv-step-num { background: var(--lv-black); color: var(--lv-white); border-color: var(--lv-black); }
.lv-step.done .lv-step-num { background: var(--lv-gray-200); border-color: var(--lv-gray-200); color: var(--lv-gray-600); }
.lv-step-line { width: 40px; height: 1px; background: var(--lv-gray-200); margin: 0 12px; }

/* ── 18. BOARD (게시판 공통) ── */
.lv-board-table { width: 100%; border-collapse: collapse; }
.lv-board-table thead tr {
  border-top: 2px solid var(--lv-black);
  border-bottom: 1px solid var(--lv-gray-200);
}
.lv-board-table th {
  padding: 12px 8px;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--lv-gray-400); font-weight: 400; text-align: left;
}
.lv-board-table tbody tr {
  border-bottom: 1px solid var(--lv-gray-200);
  cursor: pointer; transition: background 0.1s;
}
.lv-board-table tbody tr:hover { background: var(--lv-gray-100); }
.lv-board-table td {
  padding: 14px 8px; font-size: 13px;
  color: var(--lv-gray-800); vertical-align: middle;
}
.lv-board-table td.col-center { text-align: center; }
.lv-board-table td.col-sub { color: var(--lv-gray-400); font-size: 12px; }

/* 공지 배지 */
.lv-badge-notice {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.08em;
  background: var(--lv-black); color: var(--lv-white);
  padding: 2px 8px; margin-right: 8px; vertical-align: middle;
}
.lv-board-table tr.is-notice td { background: var(--lv-gray-100); }

/* ── 19. PAGINATION ── */
.lv-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 32px 0 24px;
}
.lv-page-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; cursor: pointer;
  border: 1px solid transparent;
  color: var(--lv-gray-600);
  transition: all 0.1s;
}
.lv-page-btn.active { border-color: var(--lv-black); color: var(--lv-black); font-weight: 600; }
.lv-page-btn:hover { color: var(--lv-black); }
.lv-page-btn.arrow { color: var(--lv-gray-400); font-size: 16px; }

/* 검색 바 */
.lv-search-bar {
  display: flex; gap: 6px; justify-content: center; padding: 8px 0;
}
.lv-search-select {
  border: 1px solid var(--lv-gray-200); padding: 9px 12px;
  font-size: 12px; font-family: var(--lv-font);
  color: var(--lv-gray-800); background: var(--lv-white); width: 90px;
}
.lv-search-text {
  border: 1px solid var(--lv-gray-200); padding: 9px 14px;
  font-size: 13px; font-family: var(--lv-font);
  color: var(--lv-gray-800); width: 240px; outline: none;
}
.lv-search-text:focus { border-color: var(--lv-black); }
.lv-search-btn {
  padding: 9px 20px; background: var(--lv-black); color: var(--lv-white);
  font-size: 12px; letter-spacing: 0.08em; border: none; cursor: pointer;
  font-family: var(--lv-font);
}

/* ── 20. 버튼 공통 ── */
.lv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--lv-font);
  transition: all 0.15s;
}
.lv-btn-black {
  background: var(--lv-black);
  color: var(--lv-white);
  border: 1px solid var(--lv-black);
}
a.lv-btn-black, a.lv-btn-black:link, a.lv-btn-black:visited { color: var(--lv-white); }
.lv-btn-black:hover { opacity: 0.85; }
.lv-btn-white {
  background: var(--lv-white);
  color: var(--lv-gray-600);
  border: 1px solid var(--lv-gray-200);
}
a.lv-btn-white, a.lv-btn-white:link, a.lv-btn-white:visited { color: var(--lv-gray-600); }
.lv-btn-white:hover { border-color: var(--lv-black); color: var(--lv-black); }

/* ── 21. LIST PAGE ── */

/* gnuboard 기본 래퍼 초기화 */
#sct { padding: 0; margin: 0; }
#sct_location { display: none; }
#sct_sortlst { display: contents; }

/* 페이지 헤더 (카테고리명 + 서브탭) */
.lv-list-page-header {
  padding: 36px 40px 0;
  border-bottom: 1px solid var(--lv-gray-200);
}
.lv-list-cat-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lv-gray-400);
  font-weight: 400;
  margin-bottom: 20px;
}

/* 서브카테고리 탭 */
.lv-sub-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.lv-sub-tabs::-webkit-scrollbar { display: none; }
.lv-sub-tab {
  font-size: 13px;
  padding: 0 20px 14px;
  color: var(--lv-gray-400);
  border-bottom: 2px solid transparent;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.15s, border-color 0.15s;
}
.lv-sub-tab.active,
.lv-sub-tab:hover {
  color: var(--lv-black);
  border-bottom-color: var(--lv-black);
}

/* 필터 바 (상품수 + 정렬) */
.lv-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  border-bottom: 1px solid var(--lv-gray-200);
}
.lv-item-count {
  font-size: 12px;
  color: var(--lv-gray-400);
  letter-spacing: 0.04em;
}
.lv-sort-select {
  font-size: 12px;
  color: var(--lv-gray-600);
  border: none;
  background: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23b0afa8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  font-family: var(--lv-font);
}

/* 상품 목록 그리드 (테두리 격자 스타일) */
.lv-list-grid-wrap { padding: 0 0 48px; }
.lv-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.lv-list-grid .lv-product-card {
  border-right: 1px solid var(--lv-gray-200);
  border-bottom: 1px solid var(--lv-gray-200);
  padding-bottom: 24px;
}
.lv-list-grid .lv-product-card:nth-child(4n) { border-right: none; }

/* 카드 링크 */
.lv-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.lv-card-link .lv-thumb { margin-bottom: 14px; }
.lv-card-body { padding: 0 16px; }

/* 가격 행 */
.lv-product-card .lv-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

/* 빈 목록 */
.lv-empty {
  grid-column: 1 / -1;
  padding: 80px 0;
  text-align: center;
  font-size: 13px;
  color: var(--lv-gray-400);
  letter-spacing: 0.06em;
}

/* 페이지네이션 (gnuboard get_paging() 출력) */
.pg_wrap {
  padding: 48px 0 64px;
  text-align: center;
}
.pg {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.pg a.pg_page,
.pg strong.pg_current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 13px;
  color: var(--lv-gray-600);
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 400;
}
.pg strong.pg_current {
  border-color: var(--lv-black);
  color: var(--lv-black);
  font-weight: 600;
}
.pg a.pg_page:hover { color: var(--lv-black); }
.pg a.pg_start,
.pg a.pg_end,
.pg a.pg_prev,
.pg a.pg_next {
  font-size: 11px;
  color: var(--lv-gray-400);
  letter-spacing: 0.04em;
}
.pg .sound_only { display: none; }

/* ── 23. PRODUCT DETAIL PAGE ── */

/* 브레드크럼 */
.lv-detail-breadcrumb {
  padding: 14px 40px;
  border-bottom: 1px solid var(--lv-gray-200);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
  color: var(--lv-gray-400);
  letter-spacing: 0.04em;
}
.lv-detail-breadcrumb a { color: var(--lv-gray-400); text-decoration: none; }
.lv-detail-breadcrumb a:hover { color: var(--lv-black); }
.lv-bc-sep { color: var(--lv-gray-200); }
.lv-bc-current { color: var(--lv-gray-600); }

/* 상품 상단 2단 레이아웃 */
.lv-product-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--lv-gray-200);
}

/* 이미지 갤러리 */
.lv-product-gallery {
  padding: 40px;
  border-right: 1px solid var(--lv-gray-200);
  min-width: 0;
}
.lv-gallery-swiper { width: 100%; aspect-ratio: 1; background: var(--lv-gray-100); overflow: hidden; }
.lv-gallery-swiper .swiper-slide { overflow: hidden; }
.lv-gallery-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.lv-gallery-swiper .swiper-button-prev,
.lv-gallery-swiper .swiper-button-next {
  --swiper-navigation-color: var(--lv-black);
  --swiper-navigation-size: 18px;
}
.lv-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.lv-gallery-thumbs::-webkit-scrollbar { display: none; }
.lv-gallery-thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  cursor: pointer;
  overflow: hidden;
  outline: 1.5px solid transparent;
  outline-offset: -1.5px;
}
.lv-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lv-gallery-thumb.active { outline-color: var(--lv-black); }

/* 상품 정보 패널 */
.lv-product-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.lv-detail-brand {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lv-accent);
  margin-bottom: 10px;
}
.lv-detail-name {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--lv-gray-800);
  margin-bottom: 8px;
}
.lv-detail-desc {
  font-size: 13px;
  color: var(--lv-gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* 가격 블록 */
.lv-detail-price-block {
  padding: 20px 0;
  border-top: 1px solid var(--lv-gray-200);
  border-bottom: 1px solid var(--lv-gray-200);
  margin-bottom: 24px;
}
.lv-detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.lv-detail-price-main {
  font-size: 26px;
  font-weight: 700;
  color: var(--lv-black);
}
.lv-detail-price-orig {
  font-size: 15px;
  color: var(--lv-gray-400);
  text-decoration: line-through;
}
.lv-detail-price-pct {
  font-size: 15px;
  color: var(--lv-accent);
  font-weight: 600;
}
.lv-detail-shipping-info {
  font-size: 12px;
  color: var(--lv-gray-400);
  letter-spacing: 0.02em;
}

/* 옵션 블록 (gnuboard div 모드) */
.lv-option-block { margin-bottom: 20px; }
.lv-option-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lv-gray-600);
  margin-bottom: 8px;
}
.lv-option-block .get_item_options { margin-bottom: 10px; }
.lv-option-block .label-title { display: none; }
.lv-option-block .it_option,
.lv-option-block select {
  display: block;
  width: 100%;
  border: 1px solid var(--lv-gray-200);
  padding: 10px 14px;
  font-size: 13px;
  font-family: var(--lv-font);
  color: var(--lv-gray-800);
  background: var(--lv-white);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2020/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23b0afa8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  box-sizing: border-box;
}
.lv-option-block .it_option:focus { outline: none; border-color: var(--lv-black); }

/* 수량 */
.lv-qty-row { margin-bottom: 0; }
.lv-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--lv-gray-200);
  width: fit-content;
  margin-top: 8px;
}
.lv-qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  color: var(--lv-gray-600);
  background: var(--lv-gray-100);
  border: none;
  font-family: var(--lv-font);
  line-height: 1;
}
.lv-qty-btn:hover { background: var(--lv-gray-200); }
.lv-qty-input {
  width: 48px;
  height: 36px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--lv-gray-200);
  border-right: 1px solid var(--lv-gray-200);
  font-size: 14px;
  font-family: var(--lv-font);
  color: var(--lv-gray-800);
}
.lv-qty-input:focus { outline: none; }

/* 선택된 옵션 목록 (gnuboard JS 출력) */
#sit_sel_option .sit_opt_list { list-style: none; }

/* 총액 */
.lv-detail-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--lv-gray-200);
  margin-top: 16px;
  margin-bottom: 20px;
}
.lv-total-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lv-gray-600);
}
.lv-total-price { font-size: 22px; font-weight: 700; color: var(--lv-black); }

/* 무료배송 바 */
.lv-free-ship { margin-bottom: 20px; }
.lv-free-ship-msg { font-size: 12px; color: var(--lv-gray-600); margin-bottom: 8px; line-height: 1.5; }
.lv-free-ship-msg strong { color: var(--lv-black); }
.lv-free-ship-track {
  height: 3px;
  background: var(--lv-gray-200);
  border-radius: 2px;
  overflow: hidden;
}
.lv-free-ship-fill {
  height: 100%;
  background: var(--lv-gray-800);
  border-radius: 2px;
  transition: width 0.4s;
  width: 0;
}

/* 품절 */
.lv-soldout-msg {
  font-size: 13px;
  color: var(--lv-gray-400);
  text-align: center;
  padding: 20px 0;
  border: 1px solid var(--lv-gray-200);
  margin-bottom: 20px;
}

/* CTA 버튼 */
.lv-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.lv-btn-buy,
.lv-btn-cart {
  width: 100%;
  padding: 15px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--lv-font);
  text-align: center;
  text-decoration: none;
  display: block;
}
.lv-btn-buy { border: none; }
.lv-btn-wish {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--lv-gray-200);
  cursor: pointer;
  background: var(--lv-white);
  color: var(--lv-gray-400);
  transition: color 0.15s, border-color 0.15s;
}
.lv-btn-wish:hover { color: var(--lv-black); border-color: var(--lv-black); }
.lv-naverpay { margin-top: 4px; }

/* 배송/포장 정보 목록 */
.lv-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--lv-gray-200);
}
.lv-info-item { display: flex; gap: 12px; font-size: 12px; }
.lv-info-key { color: var(--lv-gray-400); width: 60px; flex-shrink: 0; letter-spacing: 0.04em; }
.lv-info-val { color: var(--lv-gray-600); line-height: 1.6; }

/* 탭 네비게이션 */
.lv-tab-wrap {
  position: sticky;
  top: 60px;
  z-index: 90;
  background: var(--lv-white);
  border-bottom: 1px solid var(--lv-gray-200);
}
.lv-tab-nav {
  display: flex;
  padding: 0 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.lv-tab-nav::-webkit-scrollbar { display: none; }
.lv-tab-btn {
  padding: 16px 20px;
  font-size: 13px;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: var(--lv-gray-400);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.15s, border-color 0.15s;
}
.lv-tab-btn.active,
.lv-tab-btn:hover { color: var(--lv-black); border-bottom-color: var(--lv-black); }
.lv-tab-btn em { font-style: normal; color: var(--lv-accent); }

/* 탭 섹션 공통 */
.lv-tab-section { padding: 60px 40px; border-bottom: 1px solid var(--lv-gray-200); }
.lv-tab-section-gray { background: var(--lv-gray-100); }
.lv-tab-section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lv-accent);
  margin-bottom: 32px;
}

/* 상세 이미지 */
.lv-detail-images { max-width: 800px; margin: 0 auto; }
.lv-detail-images img { max-width: 100%; height: auto; display: block; }

/* 상품 정보 테이블 */
.lv-spec-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.lv-spec-table tr { border-bottom: 1px solid var(--lv-gray-200); }
.lv-spec-table td { padding: 14px 16px; vertical-align: top; line-height: 1.6; }
.lv-spec-table td:first-child {
  width: 130px;
  color: var(--lv-gray-600);
  font-size: 11px;
  letter-spacing: 0.06em;
  background: var(--lv-white);
  border-right: 1px solid var(--lv-gray-200);
}
.lv-spec-table td:last-child { color: var(--lv-gray-800); }

/* 교환/환불 */
.lv-refund-content { max-width: 700px; font-size: 13px; color: var(--lv-gray-600); line-height: 1.8; }
.lv-refund-content h3 { font-size: 13px; font-weight: 600; color: var(--lv-gray-800); margin: 20px 0 8px; }
.lv-refund-content h3:first-child { margin-top: 0; }
.lv-refund-content ul { padding-left: 16px; }
.lv-refund-content ul li { margin-bottom: 4px; }

/* 연관 상품 */
.lv-related-section { padding: 60px 40px; }
.lv-related-title {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lv-gray-400);
  margin-bottom: 32px;
}
.lv-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.lv-related-card { border-right: 1px solid var(--lv-gray-200); }
.lv-related-card:last-child { border-right: none; }
.lv-related-info { padding: 12px 16px 20px; }
.lv-related-brand { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lv-gray-400); margin-bottom: 4px; }
.lv-related-name { font-size: 12px; color: var(--lv-gray-800); line-height: 1.4; margin-bottom: 6px; }
.lv-related-price { font-size: 13px; font-weight: 600; color: var(--lv-black); }

/* 장바구니 팝업 모달 */
#modalLayer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
#modalLayer .mask {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
#modalLayer .modalContent {
  background: var(--lv-white);
  padding: 40px 32px 32px;
  width: 320px;
  position: relative;
  text-align: center;
}
#modalLayer .gnb_close_btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--lv-gray-600);
}
#modalLayer .cont p { font-size: 14px; color: var(--lv-gray-800); margin-bottom: 24px; line-height: 1.6; }
#modalLayer .cont a {
  display: block;
  padding: 13px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  margin-bottom: 8px;
}
#modalLayer .shopping { border: 1px solid var(--lv-gray-200); color: var(--lv-gray-600); }
#modalLayer .carting { background: var(--lv-black); color: var(--lv-white); }

/* ── 24. CART PAGE ── */
.lv-cart-wrap { max-width: 1100px; margin: 0 auto; padding: 0 40px 80px; }

.lv-cart-empty { text-align: center; padding: 80px 0; }
.lv-cart-empty p { font-size: 13px; color: var(--lv-gray-400); margin-bottom: 24px; }

.lv-cart-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  align-items: start;
  padding-top: 40px;
}
.lv-cart-left { padding-right: 48px; }
.lv-cart-right { position: sticky; top: 80px; }

/* 전체 선택 */
.lv-cart-select-all {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--lv-gray-200);
}
.lv-check-label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--lv-gray-600); cursor: pointer; }
.lv-check-label input[type="checkbox"] { accent-color: var(--lv-black); width: 15px; height: 15px; flex-shrink: 0; }
.lv-cart-del-btn { font-size: 12px; color: var(--lv-gray-400); cursor: pointer; border: none; background: none; font-family: var(--lv-font); }
.lv-cart-del-btn:hover { color: var(--lv-black); }

/* 상품 카드 */
.lv-cart-item { border-bottom: 1px solid var(--lv-gray-200); padding: 24px 0; }
.lv-cart-item-top { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.lv-cart-item-top > input[type="checkbox"] { accent-color: var(--lv-black); width: 15px; height: 15px; margin-top: 4px; flex-shrink: 0; }
.lv-cart-thumb { width: 80px; height: 80px; flex-shrink: 0; overflow: hidden; display: block; }
.lv-cart-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lv-cart-item-info { flex: 1; min-width: 0; }
.lv-cart-item-name { font-size: 13px; color: var(--lv-gray-800); line-height: 1.4; margin-bottom: 6px; }
.lv-cart-item-name a { color: inherit; text-decoration: none; }
.lv-cart-item-name a:hover { color: var(--lv-black); }
.lv-cart-item-opts { font-size: 11px; color: var(--lv-gray-400); line-height: 1.6; margin-bottom: 6px; }
.lv-cart-item-opts ul { list-style: none; padding: 0; margin: 0; }
.lv-cart-item-opts li { padding: 1px 0; }
.lv-mod-btn { margin-top: 4px; }
.lv-cart-item-remove { font-size: 20px; color: var(--lv-gray-400); cursor: pointer; line-height: 1; border: none; background: none; font-family: var(--lv-font); flex-shrink: 0; padding: 0; }
.lv-cart-item-remove:hover { color: var(--lv-black); }

/* 가격/수량 셀 */
.lv-cart-item-cells { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--lv-gray-200); }
.lv-cart-cell { padding: 12px 14px; border-right: 1px solid var(--lv-gray-200); }
.lv-cart-cell:last-child { border-right: none; }
.lv-cart-cell-label { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lv-gray-400); margin-bottom: 6px; }
.lv-cart-cell-val { font-size: 13px; color: var(--lv-gray-800); font-weight: 500; }
.lv-price-em { color: var(--lv-black); font-weight: 700; }

/* 액션 버튼 */
.lv-action-btn {
  padding: 7px 14px;
  border: 1px solid var(--lv-gray-200);
  font-size: 11px; letter-spacing: 0.04em;
  color: var(--lv-gray-600); cursor: pointer;
  background: var(--lv-white); font-family: var(--lv-font);
}
.lv-action-btn:hover { border-color: var(--lv-black); color: var(--lv-black); }

/* 합계 */
.lv-cart-totals { padding-top: 4px; margin-top: 4px; }
.lv-cart-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; color: var(--lv-gray-600);
  padding: 10px 0; border-bottom: 1px solid var(--lv-gray-200);
}
.lv-total-main { border-bottom: none; font-weight: 700; color: var(--lv-black); font-size: 15px; padding-top: 14px; }
.lv-accent { color: var(--lv-accent); font-weight: 500; }
.lv-cart-actions { padding-top: 14px; }

/* 요약 박스 */
.lv-summary-box { border: 1px solid var(--lv-gray-200); margin-bottom: 12px; }
.lv-summary-title {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lv-gray-600); padding: 14px 16px;
  border-bottom: 1px solid var(--lv-gray-200); background: var(--lv-gray-100);
}
.lv-summary-body { padding: 16px; }
.lv-summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; color: var(--lv-gray-600); margin-bottom: 10px;
}
.lv-summary-row:last-child { margin-bottom: 0; }
.lv-summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 16px; border-top: 1px solid var(--lv-gray-200);
}
.lv-summary-total-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lv-gray-600); }
.lv-summary-total-amount { font-size: 20px; font-weight: 700; color: var(--lv-black); }

.lv-btn-full { width: 100%; text-align: center; display: block; box-sizing: border-box; }
.lv-btn.lv-btn-full { padding: 16px; font-size: 13px; margin-top: 6px; text-decoration: none; }
.lv-btn.lv-btn-black.lv-btn-full { margin-top: 12px; }

/* ── 25. BOARD SKINS ── */

/* G5 게시판 페이지네이션 */
.pg_wrap { display: flex; align-items: center; justify-content: center; padding: 32px 0 24px; }
.pg { display: flex; gap: 4px; }
.pg a, .pg strong { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; font-size: 13px; border: 1px solid transparent; color: var(--lv-gray-600); text-decoration: none; transition: all 0.1s; }
.pg strong.pg_current { border-color: var(--lv-black); color: var(--lv-black); font-weight: 700; }
.pg a:hover { color: var(--lv-black); }

/* 공지사항 목록 */
.lv-notice-wrap { max-width: 800px; margin: 0 auto; padding: 0 40px 80px; }
.lv-col-no { width: 60px; text-align: center; }
.lv-col-author { width: 80px; text-align: center; }
.lv-col-date { width: 100px; text-align: center; }
.lv-col-views { width: 60px; text-align: center; }
.lv-col-title a { color: var(--lv-gray-800); text-decoration: none; }
.lv-col-title a:hover { color: var(--lv-black); }
.lv-cmt-cnt { font-size: 12px; color: var(--lv-accent); margin-left: 4px; }
.lv-hide-sm { }

/* 공지사항 뷰 */
.lv-view-wrap { max-width: 800px; margin: 0 auto; padding: 48px 40px 80px; }
.lv-view-article { }
.lv-view-header { padding-bottom: 20px; border-bottom: 1px solid var(--lv-gray-200); margin-bottom: 32px; }
.lv-view-badge { display: inline-block; font-size: 10px; letter-spacing: 0.08em; background: var(--lv-black); color: var(--lv-white); padding: 3px 10px; margin-bottom: 12px; }
.lv-view-title { font-size: 22px; font-weight: 700; line-height: 1.35; color: var(--lv-gray-800); margin-bottom: 14px; }
.lv-view-meta { display: flex; gap: 20px; font-size: 12px; color: var(--lv-gray-400); flex-wrap: wrap; align-items: center; }
.lv-view-admin a { color: var(--lv-gray-400); text-decoration: none; font-size: 12px; margin-left: 8px; }
.lv-view-admin a:hover { color: var(--lv-black); }
.lv-view-files { margin-bottom: 24px; }
.lv-file-item { padding: 8px 0; border-bottom: 1px solid var(--lv-gray-200); font-size: 13px; }
.lv-file-item a { color: var(--lv-gray-800); text-decoration: none; }
.lv-file-item a:hover { color: var(--lv-black); }
.lv-file-size { font-size: 11px; color: var(--lv-gray-400); margin-left: 8px; }
.lv-view-imgs { margin-bottom: 24px; }
.lv-view-imgs img { max-width: 100%; height: auto; display: block; margin-bottom: 8px; }
.lv-view-body { font-size: 15px; color: #444; line-height: 1.9; padding-bottom: 32px; border-bottom: 1px solid var(--lv-gray-200); min-height: 160px; }
.lv-view-body p { margin-bottom: 16px; }
.lv-view-body a { color: var(--lv-accent); text-decoration: underline; }
.lv-view-body img { max-width: 100%; height: auto; }
.lv-view-links { padding: 16px 0; border-bottom: 1px solid var(--lv-gray-200); }
.lv-view-link-item { display: block; font-size: 13px; color: var(--lv-accent); text-decoration: none; padding: 4px 0; }
.lv-view-nav { border-bottom: 1px solid var(--lv-gray-200); margin-top: 32px; }
.lv-view-nav-item { display: flex; align-items: baseline; gap: 20px; padding: 14px 0; border-top: 1px solid var(--lv-gray-200); color: var(--lv-gray-800); text-decoration: none; font-size: 13px; }
a.lv-view-nav-item:hover .lv-nav-title { color: var(--lv-accent); }
.lv-nav-dir { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lv-gray-400); width: 48px; flex-shrink: 0; }
.lv-nav-title { flex: 1; }
.lv-view-actions { display: flex; justify-content: center; padding: 28px 0; }

/* ===== 댓글 (view_comment.skin.php) ===== */
#bo_vc { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--lv-gray-200); }
.bo_vc_tit { font-size: 14px; font-weight: 600; color: var(--lv-gray-900); margin-bottom: 16px; }
.bo_vc_tit .cmt_total { color: var(--lv-accent); }
#bo_vc_empty { font-size: 13px; color: var(--lv-gray-400); padding: 20px 0; }

/* 댓글 아이템 */
#bo_vc article { border-bottom: 1px solid var(--lv-gray-100); padding: 16px 0; }
.comment_inner {}
.cmt_head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.cmt_head_left { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--lv-gray-800); }
.bo_vc_hdinfo { font-size: 12px; font-weight: 400; color: var(--lv-gray-400); }
.bo_vl_opt { display: flex; gap: 6px; }
.btn_v_opt { font-size: 12px; color: var(--lv-gray-400); text-decoration: none; }
.btn_v_opt:hover { color: var(--lv-gray-800); }
.cmt_contents { font-size: 14px; color: var(--lv-gray-700); line-height: 1.7; }

/* 댓글 쓰기 폼 */
#bo_vc_w { margin-top: 28px; }
#bo_vc_w h2 { font-size: 14px; font-weight: 600; color: var(--lv-gray-900); margin-bottom: 12px; }
#bo_vc_w #wr_content {
  width: 100%; box-sizing: border-box;
  min-height: 90px; padding: 12px;
  border: 1px solid var(--lv-gray-200); border-radius: 4px;
  font-size: 13px; color: var(--lv-gray-800);
  resize: vertical; font-family: inherit;
}
#bo_vc_w #wr_content:focus { outline: none; border-color: var(--lv-gray-400); }
.bo_vc_w_wr { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; flex-wrap: wrap; gap: 8px; }
.bo_vc_w_info { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bo_vc_w_info .frm_input { padding: 8px 10px; border: 1px solid var(--lv-gray-200); border-radius: 4px; font-size: 13px; }
.bo_vc_secret { font-size: 13px; color: var(--lv-gray-600); display: flex; align-items: center; gap: 4px; }
.bo_vc_secret input[type="checkbox"] { margin: 0; }
.btn_confirm #btn_submit {
  padding: 10px 24px;
  background: var(--lv-gray-900); color: var(--lv-white);
  border: none; border-radius: 4px;
  font-size: 13px; cursor: pointer;
}
.btn_confirm #btn_submit:hover { background: var(--lv-accent); }

/* 매거진 리스트 */
.lv-mag-tabs {
  display: flex; align-items: center;
  border-bottom: 1px solid var(--lv-gray-200);
  padding: 0 40px; overflow-x: auto;
  scrollbar-width: none;
}
.lv-mag-tabs::-webkit-scrollbar { display: none; }
.lv-mag-tab {
  flex-shrink: 0; padding: 16px 20px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lv-gray-400); text-decoration: none;
  border-bottom: 2px solid transparent; white-space: nowrap;
  transition: color 0.1s;
}
.lv-mag-tab.active { color: var(--lv-black); border-bottom-color: var(--lv-black); font-weight: 500; }
.lv-mag-tab:hover { color: var(--lv-black); }

/* 매거진 히어로 */
.lv-mag-hero {
  position: relative; display: block; height: 460px; overflow: hidden;
  text-decoration: none;
}
.lv-mag-hero-img { width: 100%; height: 100%; }
.lv-mag-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lv-mag-hero-placeholder { background: #1a1a18; }
.lv-mag-hero-content {
  position: absolute; bottom: 40px; left: 48px;
  color: var(--lv-white); max-width: 560px;
}
.lv-mag-hero-cat { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lv-accent); margin-bottom: 10px; }
.lv-mag-hero-title { font-size: 28px; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.lv-mag-hero-meta { font-size: 12px; color: rgba(255,255,255,0.6); }

/* 매거진 기사 그리드 */
.lv-mag-section { padding: 48px 40px; }
.lv-mag-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 20px; }
.lv-mag-card { }
.lv-mag-card-thumb { display: block; width: 100%; aspect-ratio: 3/2; overflow: hidden; margin-bottom: 14px; }
.lv-mag-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.lv-mag-card-thumb:hover img { transform: scale(1.03); }
.lv-mag-card-no-img { width: 100%; aspect-ratio: 3/2; background: var(--lv-gray-100); }
.lv-mag-card-cat { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lv-accent); margin-bottom: 6px; }
.lv-mag-card-title { font-size: 14px; font-weight: 600; line-height: 1.45; color: var(--lv-gray-800); margin-bottom: 6px; }
.lv-mag-card-title a { color: inherit; text-decoration: none; }
.lv-mag-card-title a:hover { color: var(--lv-black); }
.lv-mag-card-excerpt { font-size: 12px; line-height: 1.6; color: var(--lv-gray-600); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lv-mag-card-meta { display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--lv-gray-400); }
.lv-mag-views::before { content: '👁 '; font-size: 10px; }

/* 매거진 기사 뷰 */
.lv-article-layout {
  display: grid; grid-template-columns: 1fr 260px; gap: 0;
  max-width: 1060px; margin: 0 auto; padding: 0 40px 80px; align-items: start;
}
.lv-article-main { padding-right: 60px; padding-top: 48px; }
.lv-article-cat { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lv-accent); margin-bottom: 12px; }
.lv-article-title { font-size: 28px; font-weight: 700; line-height: 1.3; color: var(--lv-gray-800); margin-bottom: 8px; }
.lv-article-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; color: var(--lv-gray-400); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--lv-gray-200); flex-wrap: wrap; }
.lv-article-views::before { content: '👁 '; font-size: 10px; }
.lv-article-thumb { width: 100%; aspect-ratio: 16/9; overflow: hidden; margin-bottom: 32px; }
.lv-article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lv-article-body { font-size: 15px; color: #444; line-height: 1.9; margin-bottom: 32px; }
.lv-article-body p { margin-bottom: 20px; }
.lv-article-body a { color: var(--lv-accent); text-decoration: underline; }
.lv-article-body img { max-width: 100%; height: auto; }
.lv-article-editor { display: flex; align-items: center; gap: 12px; padding: 20px 0; border-top: 1px solid var(--lv-gray-200); margin-top: 24px; }
.lv-editor-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--lv-gray-200); flex-shrink: 0; overflow: hidden; }
.lv-editor-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.lv-editor-label { font-size: 11px; color: var(--lv-gray-400); margin-bottom: 2px; }
.lv-editor-name { font-size: 13px; font-weight: 600; color: var(--lv-gray-800); }
.lv-editor-email { font-weight: 400; font-size: 12px; color: var(--lv-gray-400); }
.lv-article-sign { margin: 0 0 8px; padding: 4px 0 20px 48px; font-size: 13px; color: var(--lv-gray-600); line-height: 1.7; }
.lv-article-share { display: flex; align-items: center; gap: 10px; padding: 16px 0; border-top: 1px solid var(--lv-gray-200); margin-bottom: 40px; }
.lv-share-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lv-gray-400); margin-right: 4px; }
.lv-share-btn { min-width: 32px; height: 32px; padding: 0 8px; border: 1px solid var(--lv-gray-200); background: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; color: var(--lv-gray-600); cursor: pointer; line-height: 1; transition: border-color .15s, color .15s; }
.lv-share-btn:hover { border-color: var(--lv-black); color: var(--lv-black); }

/* 관련 기사 */
.lv-more-section { padding-top: 40px; border-top: 1px solid var(--lv-gray-200); }
.lv-more-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lv-gray-400); }
.lv-more-header a { color: var(--lv-gray-400); text-decoration: none; }
.lv-more-header a:hover { color: var(--lv-black); }
.lv-more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lv-more-card { text-decoration: none; display: block; }
.lv-more-card-thumb { width: 100%; aspect-ratio: 3/2; overflow: hidden; margin-bottom: 10px; }
.lv-more-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.lv-more-card:hover .lv-more-card-thumb img { transform: scale(1.03); }
.lv-more-cat { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lv-accent); margin-bottom: 5px; }
.lv-more-title { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--lv-gray-800); }

/* 사이드바 */
.lv-article-sidebar { padding-top: 48px; position: sticky; top: 80px; }
.lv-sidebar-section { margin-bottom: 32px; }
.lv-sidebar-ad img { width: 100%; height: auto; display: block; }
.lv-sidebar-ad [id^="sh_banner_"] { margin: 0 !important; padding: 0 !important; }
.lv-sidebar-ad .slick-slide { margin: 0 !important; }
.lv-sidebar-title { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lv-gray-400); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--lv-gray-200); }
.lv-popular-list { }
.lv-popular-item { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--lv-gray-200); text-decoration: none; }
.lv-popular-item:last-child { border-bottom: none; }
.lv-popular-num { font-size: 18px; font-weight: 700; color: var(--lv-gray-200); width: 24px; flex-shrink: 0; line-height: 1.2; }
.lv-popular-cat { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lv-accent); margin-bottom: 3px; }
.lv-popular-title { font-size: 12px; font-weight: 500; color: var(--lv-gray-800); line-height: 1.4; }
.lv-popular-item:hover .lv-popular-title { color: var(--lv-black); }

/* ── 26. 동적 옵션 선택 목록 (#sit_opt_added) ── */
#sit_opt_added { list-style: none; padding: 0; margin: 16px 0 0; }
#sit_opt_added .sit_opt_list,
#sit_opt_added .sit_spl_list {
  padding: 14px 0;
  border-bottom: 1px solid var(--lv-gray-200);
}
.sit_opt_subj { display: block; font-size: 12px; font-weight: 500; color: var(--lv-gray-800); margin-bottom: 4px; }
.sit_opt_prc  { font-size: 12px; color: var(--lv-accent); }
#sit_opt_added li > div { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
#sit_opt_added .frm_input {
  width: 52px; text-align: center; padding: 6px 4px;
  border: 1px solid var(--lv-gray-200); font-size: 13px; font-family: var(--lv-font);
}
#sit_opt_added .btn_frmline {
  padding: 6px 10px; white-space: nowrap;
  border: 1px solid var(--lv-gray-200); background: var(--lv-white);
  font-size: 11px; color: var(--lv-gray-600); cursor: pointer;
}
#sit_opt_added .btn_frmline:hover { border-color: var(--lv-black); color: var(--lv-black); }
#sit_opt_added .sit_opt_del { color: #c0504d; border-color: #e8c8c8; }

/* ── 28. ITEMUSE (상품 구매후기) ── */

/* 별점 요약 패널 */
.lv-review-summary {
  display: grid; grid-template-columns: 140px 1fr; gap: 24px;
  margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--lv-gray-200);
}
.lv-review-score { text-align: center; padding-top: 8px; }
.lv-score-num { font-size: 36px; font-weight: 700; color: var(--lv-black); line-height: 1; margin-bottom: 8px; }
.lv-score-stars { font-size: 18px; color: var(--lv-accent); margin-bottom: 6px; letter-spacing: 1px; }
.lv-score-count { font-size: 12px; color: var(--lv-gray-400); }
.lv-score-bars { display: flex; flex-direction: column; gap: 7px; justify-content: center; }
.lv-score-bar-row { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--lv-gray-600); }
.lv-score-bar-label { width: 24px; flex-shrink: 0; text-align: right; letter-spacing: 0.02em; }
.lv-score-bar-track { flex: 1; height: 4px; background: var(--lv-gray-200); border-radius: 2px; overflow: hidden; }
.lv-score-bar-fill { height: 100%; background: var(--lv-accent); border-radius: 2px; transition: width 0.3s; }
.lv-score-bar-count { width: 18px; flex-shrink: 0; text-align: left; color: var(--lv-gray-400); }

.lv-itemuse-wrap { display: flex; flex-direction: column; gap: 0; }
.lv-iu-card { border-bottom: 1px solid var(--lv-gray-200); }
.lv-iu-toggle {
  width: 100%; background: none; border: none; padding: 20px 0;
  text-align: left; cursor: pointer; display: block;
}
.lv-iu-header { display: flex; gap: 16px; align-items: flex-start; }
.lv-iu-thumb {
  width: 72px; height: 72px; object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--lv-gray-200);
}
.lv-iu-thumb-empty { background: var(--lv-gray-100); }
.lv-iu-meta { flex: 1; min-width: 0; }
.lv-iu-stars { color: var(--lv-black); font-size: 13px; letter-spacing: 2px; margin-bottom: 4px; }
.lv-iu-subject { font-size: 13px; font-weight: 500; color: var(--lv-gray-800); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lv-iu-preview { font-size: 12px; color: var(--lv-gray-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 6px; }
.lv-iu-info { font-size: 11px; color: var(--lv-gray-400); letter-spacing: 0.04em; }
.lv-iu-body { padding: 0 0 20px; }
.lv-iu-content { font-size: 13px; line-height: 1.8; color: var(--lv-gray-800); margin-bottom: 16px; }
.lv-iu-content img { max-width: 100%; height: auto; display: block; margin: 8px 0; }
.lv-iu-reply {
  background: var(--lv-gray-100); border-left: 3px solid var(--lv-accent);
  padding: 14px 16px; margin-bottom: 12px;
}
.lv-iu-reply-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lv-accent); display: block; margin-bottom: 6px; }
.lv-iu-reply-subject { font-size: 12px; font-weight: 500; color: var(--lv-gray-800); margin-bottom: 4px; }
.lv-iu-reply-content { font-size: 12px; color: var(--lv-gray-600); line-height: 1.7; }
.lv-iu-cmd { display: flex; gap: 8px; }
.lv-iu-btn {
  border: 1px solid var(--lv-gray-200); color: var(--lv-gray-600);
  text-decoration: none; display: inline-block;
  padding: 6px 14px; font-size: 12px;
}
.lv-iu-btn-del { border-color: #e0a0a0; color: #c0504d; }
.lv-iu-footer { padding: 20px 0; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.lv-iu-write-btn {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--lv-black); padding: 10px 24px; color: var(--lv-black);
  background: var(--lv-white); cursor: pointer; text-decoration: none; display: inline-block;
}
.lv-iu-write-btn:hover { background: var(--lv-black); color: var(--lv-white); }
.lv-iu-empty { font-size: 13px; color: var(--lv-gray-400); padding: 40px 0; text-align: center; }

/* ── 29. ITEMQA (1:1 상품 문의) ── */
.lv-qa-wrap { display: flex; flex-direction: column; }
.lv-qa-card { border-bottom: 1px solid var(--lv-gray-200); }
.lv-qa-toggle {
  width: 100%; background: none; border: none; padding: 16px 0;
  text-align: left; cursor: pointer; display: block;
}
.lv-qa-header { display: flex; align-items: center; gap: 10px; }
.lv-qa-status {
  flex-shrink: 0; font-size: 10px; letter-spacing: 0.06em;
  padding: 3px 8px; border-radius: 2px;
}
.lv-qa-status.done { background: var(--lv-black); color: var(--lv-white); }
.lv-qa-status.wait { background: var(--lv-gray-200); color: var(--lv-gray-600); }
.lv-qa-subject { flex: 1; font-size: 13px; color: var(--lv-gray-800); text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lv-qa-date { flex-shrink: 0; font-size: 11px; color: var(--lv-gray-400); }
.lv-qa-body { padding: 0 0 20px; }
.lv-qa-block { display: flex; gap: 12px; margin-bottom: 14px; }
.lv-qa-label {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--lv-gray-800); color: var(--lv-white);
  font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.lv-qa-label-a { background: var(--lv-accent); }
.lv-qa-text { flex: 1; font-size: 13px; line-height: 1.8; color: var(--lv-gray-800); }
.lv-qa-text img { max-width: 100%; height: auto; display: block; margin: 8px 0; }
.lv-qa-secret { color: var(--lv-gray-400); font-size: 13px; }
.lv-qa-cmd { display: flex; gap: 8px; margin-top: 8px; }
.lv-qa-btn { border: 1px solid var(--lv-gray-200); color: var(--lv-gray-600); text-decoration: none; display: inline-block; padding: 6px 14px; font-size: 12px; }
.lv-qa-btn-del { border-color: #e0a0a0; color: #c0504d; }
.lv-qa-footer { padding: 20px 0; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }

/* 상세이미지 가운데 정렬 */
.lv-detail-images { max-width: 800px; margin: 0 auto; text-align: center; }
.lv-detail-images img { max-width: 100% !important; height: auto !important; display: block !important; margin: 0 auto !important; }
.lv-detail-images p, .lv-detail-images div { text-align: center; }

/* 증가/감소/삭제 버튼 텍스트 → 기호 */
#sit_opt_added .sit_qty_plus,
#sit_opt_added .sit_qty_minus {
  font-size: 0;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
}
#sit_opt_added .sit_qty_plus::before  { content: '+'; font-size: 16px; color: var(--lv-gray-600); }
#sit_opt_added .sit_qty_minus::before { content: '-'; font-size: 16px; color: var(--lv-gray-600); }
#sit_opt_added .sit_opt_del { font-size: 11px; }

/* ── 30. ORDER FORM PAGE ── */
.lv-page-header { text-align: center; padding: 40px 40px 28px; border-bottom: 1px solid var(--lv-gray-200); }
.lv-page-header h1 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lv-gray-600); }

.lv-step-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 20px 40px; border-bottom: 1px solid var(--lv-gray-200);
}
.lv-step { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lv-gray-400); }
.lv-step.active { color: var(--lv-black); }
.lv-step.done { color: var(--lv-gray-400); }
.lv-step-num {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--lv-gray-400);
  display: flex; align-items: center; justify-content: center; font-size: 11px;
}
.lv-step.active .lv-step-num { background: var(--lv-black); color: var(--lv-white); border-color: var(--lv-black); }
.lv-step.done .lv-step-num { background: var(--lv-gray-200); border-color: var(--lv-gray-200); color: var(--lv-gray-600); }
.lv-step-line { width: 40px; height: 1px; background: var(--lv-gray-200); margin: 0 12px; }

.lv-order-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 0;
  max-width: 1100px; margin: 0 auto; padding: 0 40px 80px; align-items: start;
}
.lv-order-left { padding-right: 48px; padding-top: 40px; }
.lv-order-right { padding-top: 40px; position: sticky; top: 80px; }

.lv-form-section { margin-bottom: 40px; }
.lv-form-section-title {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lv-accent); margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--lv-gray-200);
}
.lv-form-row { display: grid; grid-template-columns: 110px 1fr; gap: 16px; align-items: start; margin-bottom: 14px; }
.lv-form-label { font-size: 12px; color: var(--lv-gray-600); padding-top: 10px; letter-spacing: 0.02em; }
.lv-form-label .req { color: var(--lv-accent); margin-left: 2px; }
.lv-form-input {
  width: 100%; border: 1px solid var(--lv-gray-200); padding: 10px 12px;
  font-size: 13px; font-family: var(--lv-font); color: var(--lv-gray-800);
  background: var(--lv-white); outline: none; transition: border-color 0.15s;
  border-radius: 0;
}
.lv-form-input:focus { border-color: var(--lv-black); }
.lv-form-input::placeholder { color: var(--lv-gray-400); }
.lv-form-input[readonly], .lv-form-input.readonly { background: var(--lv-gray-100); color: var(--lv-gray-600); cursor: default; }

.lv-addr-group { display: flex; flex-direction: column; gap: 6px; }
.lv-addr-top { display: flex; gap: 8px; align-items: center; }
.lv-addr-top .lv-form-input { width: 120px; flex-shrink: 0; }
.lv-btn-addr {
  padding: 10px 16px; background: var(--lv-black); color: var(--lv-white);
  font-size: 12px; letter-spacing: 0.06em; border: none;
  cursor: pointer; font-family: var(--lv-font); white-space: nowrap; flex-shrink: 0;
}

.lv-ship-tabs { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.lv-ship-tab {
  padding: 7px 12px; border: 1px solid var(--lv-gray-200);
  font-size: 12px; color: var(--lv-gray-600); cursor: pointer; background: var(--lv-white);
  letter-spacing: 0.03em;
}
.lv-ship-tab.active, .lv-ship-tab:hover { background: var(--lv-black); color: var(--lv-white); border-color: var(--lv-black); }

.lv-form-check { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--lv-gray-600); cursor: pointer; margin-top: 6px; }
.lv-form-check input[type="checkbox"] { accent-color: var(--lv-black); width: 14px; height: 14px; }
.lv-form-textarea {
  width: 100%; border: 1px solid var(--lv-gray-200); padding: 10px 12px;
  font-size: 13px; font-family: var(--lv-font); color: var(--lv-gray-800);
  background: var(--lv-white); resize: vertical; min-height: 80px;
  outline: none; transition: border-color 0.15s; border-radius: 0;
}
.lv-form-textarea:focus { border-color: var(--lv-black); }
.lv-form-textarea::placeholder { color: var(--lv-gray-400); }

.lv-order-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.lv-order-table th {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lv-gray-400); font-weight: 400;
  padding: 10px 12px; border-bottom: 1px solid var(--lv-gray-200); text-align: left;
}
.lv-order-table th:last-child, .lv-order-table td:last-child { text-align: right; }
.lv-order-table td { padding: 14px 12px; border-bottom: 1px solid var(--lv-gray-200); vertical-align: middle; }
.lv-order-item-info { display: flex; align-items: center; gap: 12px; }
.lv-order-thumb { width: 52px; height: 52px; flex-shrink: 0; object-fit: cover; background: var(--lv-gray-100); }
.lv-order-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lv-order-item-name { font-size: 13px; color: var(--lv-gray-800); line-height: 1.4; }
.lv-order-item-opt { font-size: 11px; color: var(--lv-gray-400); margin-top: 3px; }
.lv-item-coupon-area {
  border: 1px solid var(--lv-gray-200); border-top: none;
  background: var(--lv-gray-100); padding: 14px 16px;
}
.lv-item-coupon-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; align-items: center; margin-bottom: 8px; }
.lv-item-coupon-row:last-child { margin-bottom: 0; }
.lv-item-coupon-label { font-size: 12px; color: var(--lv-gray-600); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lv-item-coupon-select {
  border: 1px solid var(--lv-gray-200); padding: 8px 12px; font-size: 12px;
  font-family: var(--lv-font); color: var(--lv-gray-800); background: var(--lv-white);
  width: 100%; border-radius: 0;
}
/* 쿠폰 적용 버튼 (cp_btn) */
.lv-order-table .cp_btn { font-size: 11px; padding: 4px 10px; border: 1px solid var(--lv-gray-200); background: var(--lv-white); cursor: pointer; color: var(--lv-gray-600); }
.lv-order-table .cp_btn:hover { border-color: var(--lv-black); color: var(--lv-black); }
.lv-order-table .cp_cancel { font-size: 11px; padding: 4px 10px; border: 1px solid #e0a0a0; background: var(--lv-white); cursor: pointer; color: #c0504d; margin-left: 4px; }

/* 오른쪽 요약 박스 */
.lv-summary-box { border: 1px solid var(--lv-gray-200); margin-bottom: 12px; }
.lv-summary-title {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lv-gray-600); padding: 12px 16px;
  border-bottom: 1px solid var(--lv-gray-200); background: var(--lv-gray-100);
}
.lv-summary-body { padding: 14px 16px; }
.lv-summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; margin-bottom: 8px; color: var(--lv-gray-600);
}
.lv-summary-row:last-child { margin-bottom: 0; }
.lv-summary-row .val { color: var(--lv-gray-800); }
.lv-summary-row .discount { color: var(--lv-accent); }
.lv-summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 16px; border-top: 1px solid var(--lv-gray-200);
}
.lv-summary-total .label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lv-gray-600); }
.lv-summary-total .amount { font-size: 20px; font-weight: 700; }

/* 쿠폰/포인트 입력 */
.lv-coupon-row { display: flex; gap: 6px; margin-bottom: 8px; }
.lv-coupon-select, .lv-coupon-input {
  flex: 1; border: 1px solid var(--lv-gray-200); padding: 9px 12px;
  font-size: 12px; font-family: var(--lv-font); color: var(--lv-gray-800);
  outline: none; background: var(--lv-white); border-radius: 0;
}
.lv-coupon-select:focus, .lv-coupon-input:focus { border-color: var(--lv-black); }
.lv-coupon-btn {
  padding: 9px 14px; border: 1px solid var(--lv-gray-200);
  font-size: 12px; color: var(--lv-gray-600); cursor: pointer;
  background: var(--lv-white); white-space: nowrap; flex-shrink: 0;
}
.lv-coupon-btn:hover { border-color: var(--lv-black); color: var(--lv-black); }
.lv-point-info { font-size: 11px; color: var(--lv-gray-400); line-height: 1.7; }
.lv-point-cancel { font-size: 11px; padding: 4px 10px; border: 1px solid #e0a0a0; background: var(--lv-white); cursor: pointer; color: #c0504d; margin-left: 4px; }

/* 결제 수단 */
.lv-pay-methods { display: flex; flex-direction: column; gap: 6px; }
.lv-pay-method {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--lv-gray-200); padding: 11px 14px;
  cursor: pointer; font-size: 13px; color: var(--lv-gray-800);
}
.lv-pay-method input[type="radio"] { accent-color: var(--lv-black); flex-shrink: 0; }
.lv-pay-method:has(input:checked) { border-color: var(--lv-black); }
.lv-bank-select {
  border: 1px solid var(--lv-gray-200); padding: 9px 12px; font-size: 13px;
  font-family: var(--lv-font); color: var(--lv-gray-800);
  width: 100%; margin-bottom: 8px; background: var(--lv-white); border-radius: 0;
}
#settle_bank { padding: 12px 0 4px; }
#settle_bank label { font-size: 12px; color: var(--lv-gray-600); display: block; margin-bottom: 6px; }

/* CTA */
.lv-order-cta { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.lv-btn-order {
  width: 100%; padding: 16px; background: var(--lv-black); color: var(--lv-white);
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: var(--lv-font); display: block; text-align: center;
}
.lv-btn-order:hover { opacity: 0.85; }
.lv-btn-cancel {
  width: 100%; padding: 13px; background: var(--lv-white); color: var(--lv-gray-600);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--lv-gray-200); cursor: pointer; font-family: var(--lv-font); display: block; text-align: center;
}
.lv-btn-cancel:hover { border-color: var(--lv-black); color: var(--lv-black); }
#display_pay_button { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
#sod_frm_escrow { display: none; }
/* 주문서 레이아웃 반응형 */
@media (max-width: 768px) {
  .lv-order-layout {
    grid-template-columns: 1fr;
    padding: 0 20px 60px;
  }
  .lv-order-left { padding-right: 0; padding-top: 20px; }
  .lv-order-right { position: static; padding-top: 0; }

  /* step-bar 모바일 */
  .lv-step-bar { padding: 16px 20px; }
  .lv-step { font-size: 10px; gap: 5px; }
  .lv-step span:last-child { white-space: nowrap; }
  .lv-step-line { width: 20px; margin: 0 6px; }

  /* 상품 테이블 — 포인트·배송비 컬럼 숨김, 폰트 축소 */
  .lv-order-layout #sod_list { font-size: 11px; }
  .lv-order-layout #sod_list th,
  .lv-order-layout #sod_list td { padding: 8px 5px; }
  .lv-order-layout #sod_list th:nth-child(5),
  .lv-order-layout #sod_list td:nth-child(5),
  .lv-order-layout #sod_list th:nth-child(6),
  .lv-order-layout #sod_list td:nth-child(6) { display: none; }
  .lv-order-layout #sod_list .sod_img img { width: 40px !important; height: 40px !important; }
  .lv-order-layout #sod_list { table-layout: fixed; }
  .lv-order-layout #sod_list .td_prd { width: 52%; }
  .lv-order-layout #sod_list .sod_img { float: left; margin-right: 8px; display: block !important; }
  .lv-order-layout #sod_list .sod_name { display: block; overflow: hidden; word-break: break-word; }

  /* th 너비 축소 */
  .lv-order-layout .tbl_frm01 th { width: 72px; font-size: 11px; }

  /* 주문자/배송지 아코디언 */
  .lv-order-layout #sod_frm_orderer h2.lv-accordion-h2,
  .lv-order-layout #sod_frm_taker h2.lv-accordion-h2 { cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
  .lv-order-layout #sod_frm_orderer h2.lv-accordion-h2::after,
  .lv-order-layout #sod_frm_taker h2.lv-accordion-h2::after { content: '▾'; font-size: 12px; color: var(--lv-gray-400); transition: transform 0.2s; }
  .lv-order-layout #sod_frm_orderer.lv-acc-open h2.lv-accordion-h2::after,
  .lv-order-layout #sod_frm_taker.lv-acc-open h2.lv-accordion-h2::after { transform: rotate(180deg); }
  .lv-order-layout #sod_list th:nth-child(2),
  .lv-order-layout #sod_list td:nth-child(2),
  .lv-order-layout #sod_list th:nth-child(3),
  .lv-order-layout #sod_list td:nth-child(3),
  .lv-order-layout #sod_list th:nth-child(4),
  .lv-order-layout #sod_list td:nth-child(4) { width: 16%; }
}
#show_progress { text-align: center; padding: 16px; font-size: 13px; color: var(--lv-gray-600); }
.lv-non-member-notice { font-size: 11px; color: var(--lv-gray-400); padding: 8px 0; line-height: 1.7; }

/* ── 31. ORDER COMPLETE PAGE ── */
.lv-complete-wrap { max-width: 640px; margin: 0 auto; padding: 64px 40px 80px; }
.lv-complete-msg {
  text-align: center; padding-bottom: 48px;
  border-bottom: 1px solid var(--lv-gray-200); margin-bottom: 40px;
}
.lv-complete-icon {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1.5px solid var(--lv-black);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 22px; color: var(--lv-black);
}
.lv-complete-msg h2 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px; }
.lv-complete-msg p { font-size: 13px; color: var(--lv-gray-400); line-height: 1.8; }

.lv-order-no-bar {
  background: var(--lv-gray-100); border: 1px solid var(--lv-gray-200);
  padding: 14px 20px; margin-bottom: 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.lv-order-no-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lv-gray-400); }
.lv-order-no-val { font-size: 13px; font-weight: 600; color: var(--lv-gray-800); letter-spacing: 0.06em; }

.lv-detail-section { margin-bottom: 36px; }
.lv-detail-section-title {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lv-accent); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--lv-gray-200);
}

.lv-complete-item { display: flex; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--lv-gray-200); }
.lv-complete-item:last-child { border-bottom: none; }
.lv-complete-thumb { width: 60px; height: 60px; flex-shrink: 0; object-fit: cover; background: var(--lv-gray-100); }
.lv-complete-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lv-complete-item-info { flex: 1; }
.lv-complete-item-name { font-size: 13px; color: var(--lv-gray-800); line-height: 1.4; margin-bottom: 4px; }
.lv-complete-item-opt { font-size: 11px; color: var(--lv-gray-400); }
.lv-complete-item-status { font-size: 11px; color: var(--lv-gray-600); margin-top: 3px; }
.lv-complete-item-price { font-size: 14px; font-weight: 600; text-align: right; white-space: nowrap; align-self: center; }

.lv-info-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.lv-info-table tr { border-bottom: 1px solid var(--lv-gray-200); }
.lv-info-table tr:last-child { border-bottom: none; }
.lv-info-table td { padding: 12px 4px; vertical-align: top; line-height: 1.6; }
.lv-info-table td:first-child { width: 110px; color: var(--lv-gray-600); font-size: 12px; }
.lv-info-table td:last-child { color: var(--lv-gray-800); text-align: right; }
.lv-info-table tr.total td { font-size: 16px; font-weight: 700; padding-top: 16px; }
.lv-info-table .discount { color: var(--lv-accent); }

.lv-bank-box { border: 1px solid var(--lv-gray-200); padding: 20px; background: var(--lv-gray-100); margin-top: 12px; }
.lv-bank-box-title { font-size: 12px; font-weight: 600; color: var(--lv-gray-800); margin-bottom: 12px; }
.lv-bank-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
.lv-bank-row:last-child { margin-bottom: 0; }
.lv-bank-key { color: var(--lv-gray-600); }
.lv-bank-val { color: var(--lv-gray-800); font-weight: 500; }
.lv-bank-notice { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--lv-gray-200); font-size: 12px; color: var(--lv-gray-400); line-height: 1.8; }

.lv-complete-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 48px; }
.lv-btn-myorder {
  padding: 15px; border: 1px solid var(--lv-gray-200); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--lv-gray-600);
  cursor: pointer; background: var(--lv-white); font-family: var(--lv-font); text-align: center;
  text-decoration: none; display: block;
}
.lv-btn-myorder:hover { border-color: var(--lv-black); color: var(--lv-black); }
.lv-btn-shop {
  padding: 15px; border: 1px solid var(--lv-black); background: var(--lv-black);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lv-white);
  cursor: pointer; font-family: var(--lv-font); text-align: center;
  text-decoration: none; display: block;
}
.lv-btn-shop:hover { opacity: 0.85; }

/* 주문취소 섹션 */
.lv-cancel-section { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--lv-gray-200); }
.lv-cancel-section h3 { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lv-gray-400); margin-bottom: 14px; }
.lv-btn-cancel-order {
  padding: 10px 20px; border: 1px solid var(--lv-gray-200); background: var(--lv-white);
  font-size: 12px; color: var(--lv-gray-600); cursor: pointer; font-family: var(--lv-font);
}
.lv-btn-cancel-order:hover { border-color: var(--lv-black); color: var(--lv-black); }
.lv-cancel-form { margin-top: 12px; display: flex; gap: 8px; }
.lv-cancel-input {
  flex: 1; border: 1px solid var(--lv-gray-200); padding: 9px 12px;
  font-size: 13px; font-family: var(--lv-font); outline: none; border-radius: 0;
}
.lv-cancel-input:focus { border-color: var(--lv-black); }
.lv-cancel-submit {
  padding: 9px 16px; background: var(--lv-black); color: var(--lv-white);
  border: none; font-size: 12px; cursor: pointer; font-family: var(--lv-font); white-space: nowrap;
}

/* ── 22. RESPONSIVE ── */
@media (max-width: 1024px) {
  .lv-product-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .lv-list-grid { grid-template-columns: repeat(3, 1fr); }
  .lv-list-grid .lv-product-card:nth-child(4n) { border-right: 1px solid var(--lv-gray-200); }
  .lv-list-grid .lv-product-card:nth-child(3n) { border-right: none; }
  .lv-mag-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  /* GNB */
  .lv-gnb { padding: 0 20px; }
  .lv-gnb-nav { display: none; }
  .lv-gnb-icons { grid-column: 3; gap: 8px; }

  /* Hero */
  .lv-pc-only { display: none !important; }
  .lv-mobile-only { display: block !important; }
  .lv-hero-title { font-size: 28px; }
  .lv-hero-content { left: 24px; bottom: 40px; }

  /* Sections */
  .lv-section { padding: 40px 20px; }
  .lv-page-title { padding: 32px 20px 28px; }

  /* Product */
  .lv-product-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* List page */
  .lv-list-page-header { padding: 28px 20px 0; }
  .lv-filter-bar { padding: 12px 20px; }
  .lv-list-grid-wrap { padding: 0 0 40px; }
  .lv-list-grid { grid-template-columns: repeat(2, 1fr); }
  .lv-list-grid .lv-product-card:nth-child(4n) { border-right: 1px solid var(--lv-gray-200); }
  .lv-list-grid .lv-product-card:nth-child(2n) { border-right: none; }

  /* Detail page */
  .lv-detail-breadcrumb { padding: 12px 20px; }
  .lv-product-top { grid-template-columns: 1fr; }
  .lv-product-gallery { padding: 20px; border-right: none; border-bottom: 1px solid var(--lv-gray-200); }
  .lv-product-info { padding: 24px 20px; }
  .lv-detail-name { font-size: 18px; }
  .lv-detail-price-main { font-size: 22px; }
  .lv-tab-nav { padding: 0 20px; }
  .lv-tab-section { padding: 40px 20px; }
  .lv-related-section { padding: 40px 20px; }
  .lv-related-grid { grid-template-columns: repeat(2, 1fr); }
  .lv-related-card:nth-child(2n) { border-right: none; }
  .lv-related-card:nth-child(2n+1):not(:last-child) { border-right: 1px solid var(--lv-gray-200); }

  /* Magazine */
  .lv-magazine-grid { grid-template-columns: 1fr; }
  .lv-magazine-bottom { grid-template-columns: 1fr 1fr; }

  /* Editorial */

  /* Review */
  .lv-review-grid { grid-template-columns: 1fr; gap: 20px; }

  /* SNS */
  .lv-sns-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .lv-footer { padding: 48px 20px 32px; }
  .lv-footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lv-footer-bottom { flex-direction: column; gap: 12px; }

  /* Search */
  .lv-search-text { width: 160px; }

  /* Side panel */
  .lv-side-panel { width: 100%; max-width: 320px; }

  /* Board */
  .lv-notice-wrap { padding: 0 20px 60px; }
  .lv-view-wrap { padding: 32px 20px 60px; }
  .lv-hide-sm { display: none; }
  .lv-mag-tabs { padding: 0 20px; }
  .lv-mag-hero { height: 300px; }
  .lv-mag-hero-content { left: 24px; bottom: 24px; }
  .lv-mag-hero-title { font-size: 20px; }
  .lv-mag-section { padding: 32px 20px; }
  .lv-mag-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .lv-article-layout { grid-template-columns: 1fr; padding: 0 20px 60px; }
  .lv-article-main { padding-right: 0; padding-top: 32px; }
  .lv-article-sidebar { display: none; }
  .lv-more-grid { grid-template-columns: 1fr 1fr; }

  /* Cart */
  .lv-cart-wrap { padding: 0 20px 60px; }
  .lv-cart-layout { grid-template-columns: 1fr; padding-top: 24px; }
  .lv-cart-left { padding-right: 0; }
  .lv-cart-right { position: static; margin-top: 32px; }
  .lv-cart-item-cells { grid-template-columns: 1fr 1fr; }
  .lv-cart-cell { border-right: none; border-bottom: 1px solid var(--lv-gray-200); }
  .lv-cart-cell:nth-child(odd) { border-right: 1px solid var(--lv-gray-200); }
  .lv-cart-cell:nth-child(3), .lv-cart-cell:nth-child(4) { border-bottom: none; }
}

@media (max-width: 480px) {
  .lv-product-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lv-magazine-bottom { grid-template-columns: 1fr; }
  .lv-footer-top { grid-template-columns: 1fr; }
}

/* ── 30b. ORDER FORM 실전 매핑 (PC, 원본 영카트 마크업 + LOVVON 톤) ──
   .lv-order-layout 컨텍스트로 한정 → PC 주문서에만 적용, 모바일/타 페이지 무영향
   #sod_frm 등 id 충돌 회피 위해 의도적으로 높은 특이도 사용 */

/* 상품목록 테이블 내부 */
.lv-order-layout #sod_list .td_prd { text-align: left; }
.lv-order-layout #sod_list .sod_img { display: inline-block; vertical-align: middle; margin-right: 12px; }
.lv-order-layout #sod_list .sod_img img { width: 56px; height: 56px; object-fit: cover; background: var(--lv-gray-100); display: block; }
.lv-order-layout #sod_list .sod_name { display: inline-block; vertical-align: middle; font-size: 13px; color: var(--lv-gray-800); line-height: 1.4; }
.lv-order-layout #sod_list .sod_opt { font-size: 11px; color: var(--lv-gray-400); margin-top: 3px; padding-left: 0; }
.lv-order-layout #sod_list .cp_btn { font-size: 11px; padding: 4px 10px; border: 1px solid var(--lv-gray-200); background: var(--lv-white); cursor: pointer; color: var(--lv-gray-600); margin-left: 8px; }
.lv-order-layout #sod_list .cp_btn:hover { border-color: var(--lv-black); color: var(--lv-black); }
.lv-order-layout #sod_list .cp_cancel { font-size: 11px; padding: 4px 10px; border: 1px solid #e0a0a0; background: var(--lv-white); cursor: pointer; color: #c0504d; margin-left: 4px; }

/* 섹션 타이틀 */
.lv-order-layout section { margin-bottom: 40px; }
.lv-order-layout section > h2 {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lv-accent); margin: 0 0 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--lv-gray-200); font-weight: 600;
}
.lv-order-layout #od_pay_sl h3, .lv-order-layout .od_pay_buttons_el h3 {
  font-size: 12px; color: var(--lv-gray-800); margin: 8px 0 12px; font-weight: 600;
}

/* 폼 테이블 (tbl_frm01) */
.lv-order-layout .tbl_frm01 { margin: 0; }
.lv-order-layout .tbl_frm01 table { width: 100%; border-collapse: collapse; }
.lv-order-layout .tbl_frm01 th {
  width: 110px; text-align: left; font-weight: 400; vertical-align: top;
  font-size: 12px; color: var(--lv-gray-600); padding: 14px 12px 14px 0; background: none;
}
.lv-order-layout .tbl_frm01 td { padding: 10px 0; vertical-align: top; }
.lv-order-layout .frm_input,
.lv-order-layout .tbl_frm01 input[type="text"],
.lv-order-layout .tbl_frm01 input[type="password"],
.lv-order-layout .tbl_frm01 textarea {
  border: 1px solid var(--lv-gray-200); padding: 10px 12px; font-size: 13px;
  font-family: inherit; color: var(--lv-gray-800); background: var(--lv-white);
  outline: none; width: 100%; max-width: 100%; box-sizing: border-box; border-radius: 0;
}
.lv-order-layout #od_zip,
.lv-order-layout #od_b_zip { width: 120px !important; }
.lv-order-layout .frm_input:focus, .lv-order-layout .tbl_frm01 textarea:focus { border-color: var(--lv-black); }
.lv-order-layout .frm_address { margin-top: 6px; width: 100%; max-width: 440px; }

.lv-order-layout textarea#od_memo { width: 100%; max-width: 440px; min-height: 80px; }
.lv-order-layout .frm_info { display: block; font-size: 11px; color: var(--lv-gray-400); margin-bottom: 4px; }

/* 주소검색 버튼 */
.lv-order-layout .btn_address {
  background: var(--lv-black); color: var(--lv-white); border: none;
  padding: 10px 16px; font-size: 12px; letter-spacing: 0.04em; cursor: pointer;
  margin-left: 6px; font-family: inherit;
}
.lv-order-layout .btn_address:hover { opacity: 0.85; }

/* 배송지 선택 */
.lv-order-layout .order_choice_place { display: flex; flex-wrap: wrap; gap: 6px 14px; align-items: center; font-size: 12px; color: var(--lv-gray-600); }
.lv-order-layout .order_choice_place label { margin-right: 10px; cursor: pointer; }
.lv-order-layout .btn_frmline {
  display: inline-block; padding: 6px 12px; border: 1px solid var(--lv-gray-200);
  font-size: 12px; color: var(--lv-gray-600); background: var(--lv-white);
  cursor: pointer; text-decoration: none; margin-left: 6px; font-family: inherit;
}
.lv-order-layout .btn_frmline:hover { border-color: var(--lv-black); color: var(--lv-black); }

/* 합계 박스 (sod_bsk_tot) — default_shop.css #sod_frm #sod_bsk_tot(특이도 201: 가로3분할+빨간 −/+) 오버라이드 위해 #sod_frm.lv-order-layout(211) 사용 */
#sod_frm.lv-order-layout #sod_bsk_tot { border: 1px solid var(--lv-gray-200); margin: 0 0 12px; }
/* 디자인 원본 "결제 금액" 박스: 회색 헤더(마크업엔 없어 ::before로) + 할인항목 accent색 */
#sod_frm.lv-order-layout #sod_bsk_tot::before {
  content: "결제 금액"; display: block; background: var(--lv-gray-100);
  padding: 14px 16px; font-size: 10px; letter-spacing: 0.14em; color: var(--lv-gray-600);
  border-bottom: 1px solid var(--lv-gray-200);
}
#sod_frm.lv-order-layout #sod_bsk_tot .sod_bsk_coupon strong,
#sod_frm.lv-order-layout #sod_bsk_tot .sod_bsk_point strong { color: var(--lv-accent); }
#sod_frm.lv-order-layout #sod_bsk_tot ul { padding: 16px; }
#sod_frm.lv-order-layout #sod_bsk_tot li {
  position: static; float: none; width: auto; height: auto; background: transparent;
  border: none; text-align: left; padding: 0; margin-bottom: 10px;
  display: flex; align-items: baseline; font-size: 13px; color: var(--lv-gray-600);
}
#sod_frm.lv-order-layout #sod_bsk_tot li span { display: inline; float: none; margin: 0 auto 0 0; color: var(--lv-gray-600); font-weight: 400; }
#sod_frm.lv-order-layout #sod_bsk_tot li strong { color: var(--lv-gray-800); font-weight: 500; }
#sod_frm.lv-order-layout #sod_bsk_tot .sod_bsk_coupon:before,
#sod_frm.lv-order-layout #sod_bsk_tot .sod_bsk_dvr:before { display: none; content: none; }
#sod_frm.lv-order-layout #sod_bsk_tot .sod_bsk_sell,
#sod_frm.lv-order-layout #sod_bsk_tot .sod_bsk_coupon { border-right: none; }
#sod_frm.lv-order-layout #sod_bsk_tot .sod_bsk_point,
#sod_frm.lv-order-layout #sod_bsk_tot .sod_bsk_cnt { width: auto; clear: none; height: auto; line-height: inherit; padding: 0; text-align: left; }
#sod_frm.lv-order-layout #sod_bsk_tot .sod_bsk_point span,
#sod_frm.lv-order-layout #sod_bsk_tot .sod_bsk_cnt span { float: none; margin: 0 auto 0 0; }
#sod_frm.lv-order-layout #sod_bsk_tot .sod_bsk_cnt { margin: 14px 0 0; padding-top: 14px; border-top: 1px solid var(--lv-gray-200); }
#sod_frm.lv-order-layout #sod_bsk_tot .sod_bsk_cnt span { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lv-gray-600); }
#sod_frm.lv-order-layout #sod_bsk_tot .sod_bsk_cnt strong { font-size: 20px; font-weight: 700; color: var(--lv-black); }

/* 섹션 박스/제목 — default_shop.css #sod_frm_orderer/_taker(테두리+흰배경), #sod_frm section h2(패딩) 오버라이드 */
#sod_frm.lv-order-layout #sod_frm_orderer,
#sod_frm.lv-order-layout #sod_frm_taker { margin: 0 0 40px; border: none; background: transparent; }
#sod_frm.lv-order-layout section h2 { padding: 0 0 12px; font-size: 11px; }

/* 결제정보 테이블 */
.lv-order-layout .pay_tbl table { width: 100%; border-collapse: collapse; }
.lv-order-layout .pay_tbl th { text-align: left; font-weight: 400; font-size: 12px; color: var(--lv-gray-600); padding: 8px 0; }
.lv-order-layout .pay_tbl td { text-align: right; font-size: 13px; color: var(--lv-gray-800); padding: 8px 0; }
.lv-order-layout #od_tot_price {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0; border-top: 1px solid var(--lv-gray-200); margin-top: 8px;
}
.lv-order-layout #od_tot_price span { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lv-gray-600); }
.lv-order-layout #od_tot_price .print_price { font-size: 20px; font-weight: 700; color: var(--lv-black); }

/* 결제수단 */
.lv-order-layout #sod_frm_paysel { border: none; margin: 0; padding: 0; }
.lv-order-layout #sod_frm_paysel legend { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lv-order-layout #sod_frm_paysel label.lb_icon {
  display: inline-flex; align-items: center; gap: 6px; width: 100%;
  border: 1px solid var(--lv-gray-200); padding: 12px 14px; margin: 0 0 6px;
  font-size: 13px; color: var(--lv-gray-800); cursor: pointer; box-sizing: border-box;
}
.lv-order-layout #sod_frm_paysel input[type="radio"] { accent-color: var(--lv-black); margin-right: 2px; }
.lv-order-layout #sod_frm_paysel input[type="radio"]:checked + label.lb_icon { border-color: var(--lv-black); background: var(--lv-gray-100); }
.lv-order-layout #sod_frm_pt_alert { font-size: 11px; color: var(--lv-gray-400); margin-bottom: 12px; line-height: 1.6; }

/* 포인트 */
.lv-order-layout .sod_frm_point { margin-top: 16px; }
.lv-order-layout .sod_frm_point label { font-size: 12px; color: var(--lv-gray-600); margin-right: 8px; }
.lv-order-layout #sod_frm_pt { font-size: 12px; color: var(--lv-gray-600); margin-top: 8px; line-height: 1.7; }
.lv-order-layout #sod_frm_pt strong { color: var(--lv-gray-800); margin-right: 6px; }
.lv-order-layout input#od_temp_point { width: 120px; border: 1px solid var(--lv-gray-200); padding: 8px 12px; font-size: 13px; box-sizing: border-box; }

/* 주문 버튼(CTA) — orderform.3.php 생성: #display_pay_button > input.btn_submit + a.btn01
   display는 PG(toss 등)가 JS로 제어하므로 건드리지 않음. 버튼 스타일만 LOVVON으로. */
.lv-order-layout #display_pay_button { margin-top: 12px; }
.lv-order-layout #display_pay_button .btn_submit {
  width: 100%; padding: 16px; height: auto; background: var(--lv-black); color: var(--lv-white);
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: inherit; border-radius: 0;
}
.lv-order-layout #display_pay_button .btn_submit:hover { opacity: 0.85; }
.lv-order-layout #display_pay_button .btn01 {
  display: block; width: 100%; padding: 13px; height: auto; line-height: normal; margin-top: 6px; text-align: center;
  background: var(--lv-white); color: var(--lv-gray-600); border: 1px solid var(--lv-gray-200);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; box-sizing: border-box; font-weight: 400;
}
.lv-order-layout #display_pay_button .btn01:hover { border-color: var(--lv-black); color: var(--lv-black); }

/* 쿠폰 선택 레이어 — 상품쿠폰(#cp_frm) / 결제쿠폰(#od_coupon_frm) 공통 .od_coupon
   기존 default_shop.css: #sod_list #cp_frm{width:540px;absolute 중앙}, 결제쿠폰엔 너비규칙 없음(세로 쪼개짐)
   → 중앙 fixed 모달 + table width:100% + th/td nowrap 으로 통일. 위치/너비는 특이도전쟁 회피 위해 !important */
/* 모달 컨테이너 — 상품쿠폰 기존 #sod_list #cp_frm(width:540px/absolute, 특이도 201)을
   #sod_frm.lv-order-layout #cp_frm(210)으로 정상 오버라이드 (!important 제거) */
#sod_frm.lv-order-layout #cp_frm,
#sod_frm.lv-order-layout #od_coupon_frm {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); margin: 0;
  width: 440px; max-width: 92vw; max-height: 80vh; overflow-y: auto;
  background: var(--lv-white); border: 1px solid var(--lv-gray-200); border-radius: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18); z-index: 10001;
}
.lv-order-layout .od_coupon h3 {
  background: var(--lv-black); color: var(--lv-white); font-size: 13px; font-weight: 600;
  margin: 0; padding: 14px 16px; line-height: 1.4; border: none; text-align: left; letter-spacing: 0.04em;
}
.lv-order-layout .od_coupon .btn_close {
  position: absolute; top: 0; right: 0; width: 48px; height: 48px;
  background: none; border: none; color: var(--lv-white); cursor: pointer; font-size: 14px;
}
.lv-order-layout .od_coupon .btn_close:hover { background: rgba(255,255,255,0.12); }
.lv-order-layout .od_coupon .tbl_head02 { margin: 16px; }
.lv-order-layout .od_coupon table { width: 100%; border-collapse: collapse; table-layout: auto; }
.lv-order-layout .od_coupon th {
  font-size: 11px; color: var(--lv-gray-600); font-weight: 400; white-space: nowrap;
  padding: 10px 8px; text-align: center; background: var(--lv-gray-100); width: auto;
  border-top: 1px solid var(--lv-gray-200); border-bottom: 1px solid var(--lv-gray-200);
}
.lv-order-layout .od_coupon td {
  font-size: 12px; color: var(--lv-gray-800); padding: 10px 8px; white-space: nowrap;
  text-align: center; border-bottom: 1px solid var(--lv-gray-200); border-left: 0;
}
.lv-order-layout .od_coupon .td_numbig { text-align: center; font-weight: 600; }
.lv-order-layout .od_coupon .td_mngsmall { width: 64px; }
.lv-order-layout .od_coupon .cp_apply, .lv-order-layout .od_coupon .od_cp_apply {
  font-size: 11px; padding: 6px 12px; background: var(--lv-black); color: var(--lv-white);
  border: none; height: auto; line-height: normal; cursor: pointer;
}
.lv-order-layout .od_coupon .cp_apply:hover, .lv-order-layout .od_coupon .od_cp_apply:hover { opacity: 0.85; }
.lv-order-layout .od_coupon .empty_list { padding: 30px 16px; text-align: center; font-size: 12px; color: var(--lv-gray-400); }
.lv-order-layout .od_coupon .btn_confirm { padding: 0 16px 16px; text-align: center; }

/* ── 쿠폰/액션 버튼 통일 (적용후 변경/취소) — !important 없이 #sod_frm.lv-order-layout 특이도로 매칭
   기존 경쟁규칙: #sod_frm_pay .pay_tbl td .btn_frmline(121), #sod_frm_pay .pay_tbl td .cp_cancel(121),
   #sod_frm_taker .tbl_frm01 .btn_frmline(121, float:right/absolute) → 모두 130~210 특이도로 정상 오버라이드 */
#sod_frm.lv-order-layout .cp_btn,
#sod_frm.lv-order-layout #od_coupon_btn,
#sod_frm.lv-order-layout #sc_coupon_btn,
#sod_frm.lv-order-layout .pay_tbl .btn_frmline {
  display: inline-block; width: auto; height: auto;
  font-size: 11px; line-height: 1.4; padding: 5px 12px;
  border: 1px solid var(--lv-gray-200); background: var(--lv-white);
  color: var(--lv-gray-600); border-radius: 0; margin: 0 0 0 4px;
  float: none; position: static; vertical-align: middle; cursor: pointer;
  text-decoration: none; font-family: inherit;
}
#sod_frm.lv-order-layout .cp_btn:hover,
#sod_frm.lv-order-layout #od_coupon_btn:hover,
#sod_frm.lv-order-layout #sc_coupon_btn:hover,
#sod_frm.lv-order-layout .pay_tbl .btn_frmline:hover { border-color: var(--lv-black); color: var(--lv-black); }

#sod_frm.lv-order-layout .cp_cancel,
#sod_frm.lv-order-layout #od_coupon_cancel,
#sod_frm.lv-order-layout #sc_coupon_cancel,
#sod_frm.lv-order-layout .pay_tbl .cp_cancel {
  display: inline-block; width: auto; height: auto;
  font-size: 11px; line-height: 1.4; padding: 5px 12px;
  border: 1px solid #e0a0a0; background: var(--lv-white); color: #c0504d;
  border-radius: 0; margin: 0 0 0 4px; float: none; position: static;
  vertical-align: middle; cursor: pointer; text-decoration: none; font-family: inherit;
}
#sod_frm.lv-order-layout .cp_cancel:hover,
#sod_frm.lv-order-layout #od_coupon_cancel:hover,
#sod_frm.lv-order-layout #sc_coupon_cancel:hover,
#sod_frm.lv-order-layout .pay_tbl .cp_cancel:hover { border-color: #c0504d; background: #faf0f0; }

/* 배송지목록 버튼(#order_address) — #sod_frm_taker .tbl_frm01 .btn_frmline(float:right/absolute) 오버라이드, 검정 강조 */
#sod_frm.lv-order-layout #order_address {
  display: inline-block; width: auto; height: auto; padding: 9px 16px;
  font-size: 12px; line-height: 1.4; background: var(--lv-black); color: var(--lv-white);
  border: none; border-radius: 0; float: none; position: static;
  vertical-align: middle; text-decoration: none; cursor: pointer;
}
#sod_frm.lv-order-layout #order_address:hover { opacity: 0.85; }

/* ── 결제정보 / 결제수단 / 포인트 박스화 (디자인 원본 우측 4박스 구조) ──
   영카트 #sod_frm_pay 안: pay_tbl+od_tot_price(결제정보) / od_pay_buttons_el(결제수단) / sod_frm_point(포인트)
   각각 회색 헤더 + 테두리 박스로. 기존 #sod_frm_pay/#sod_frm section h2 등 특이도 211로 오버라이드 */
#sod_frm.lv-order-layout #sod_frm_pay { border: none; background: none; margin: 0; padding: 0; }
#sod_frm.lv-order-layout #sod_frm_pay > h2 { display: none; }

/* 결제 정보 박스 (pay_tbl + od_tot_price 연결) */
#sod_frm.lv-order-layout .pay_tbl { border: 1px solid var(--lv-gray-200); border-bottom: none; margin: 0; }
#sod_frm.lv-order-layout .pay_tbl::before {
  content: "결제 정보"; display: block; background: var(--lv-gray-100); padding: 14px 16px;
  font-size: 10px; letter-spacing: 0.14em; color: var(--lv-gray-600); border-bottom: 1px solid var(--lv-gray-200);
}
#sod_frm.lv-order-layout .pay_tbl table { margin: 0; }
#sod_frm.lv-order-layout .pay_tbl th, #sod_frm.lv-order-layout .pay_tbl td { padding: 10px 16px; }
#sod_frm.lv-order-layout #od_tot_price {
  display: flex; justify-content: space-between; align-items: baseline;
  border: 1px solid var(--lv-gray-200); margin: 0 0 12px; padding: 14px 16px;
}

/* 결제 수단 박스 */
#sod_frm.lv-order-layout #od_pay_sl { margin: 0; }
#sod_frm.lv-order-layout .od_pay_buttons_el { border: 1px solid var(--lv-gray-200); margin: 0 0 12px; padding: 0 0 16px; }
#sod_frm.lv-order-layout .od_pay_buttons_el > h3 {
  background: var(--lv-gray-100); padding: 14px 16px; margin: 0 0 16px; font-weight: 400;
  font-size: 10px; letter-spacing: 0.14em; color: var(--lv-gray-600); border-bottom: 1px solid var(--lv-gray-200);
}
#sod_frm.lv-order-layout #sod_frm_pt_alert { margin: 0 16px 12px; }
#sod_frm.lv-order-layout #sod_frm_paysel { padding: 0 16px; }

/* 포인트 사용 박스 */
#sod_frm.lv-order-layout .sod_frm_point { border: 1px solid var(--lv-gray-200); margin: 0 0 12px; padding: 0 0 16px; }
#sod_frm.lv-order-layout .sod_frm_point::before {
  content: "포인트 사용"; display: block; background: var(--lv-gray-100); padding: 14px 16px; margin: 0 0 16px;
  font-size: 10px; letter-spacing: 0.14em; color: var(--lv-gray-600); border-bottom: 1px solid var(--lv-gray-200);
}
#sod_frm.lv-order-layout .sod_frm_point > div { padding: 0 16px; }
#sod_frm.lv-order-layout #sod_frm_pt { padding: 8px 16px 0; }

/* ── 31b. ORDER COMPLETE 실전 매핑 (원본 영카트 #sod_fin 마크업 + LOVVON)
   #sod_fin.lv-order-complete 컨텍스트로 기존 default_shop/mobile_shop #sod_fin 규칙 오버라이드 */
#sod_fin.lv-order-complete { max-width: 640px; margin: 0 auto; padding: 48px 20px 80px; border: none; background: none; }

/* 주문번호 → order-no-bar */
#sod_fin.lv-order-complete #sod_fin_no {
  background: var(--lv-gray-100); border: 1px solid var(--lv-gray-200); padding: 14px 20px; margin: 0 0 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lv-gray-400); text-align: left;
}
#sod_fin.lv-order-complete #sod_fin_no strong { font-size: 13px; font-weight: 600; color: var(--lv-gray-800); letter-spacing: 0.06em; }

/* 섹션 제목 */
#sod_fin.lv-order-complete h2,
#sod_fin.lv-order-complete h3 {
  position: static; line-height: 1.4;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lv-accent);
  margin: 0 0 14px; padding: 0 0 10px; border-bottom: 1px solid var(--lv-gray-200); font-weight: 600;
}
/* 상품 옵션 배지(mobile_shop .sod_opt .opt_name:before "옵션" 파란배지) → LOVVON 회색 */
#sod_fin.lv-order-complete .sod_opt .opt_name:before { background: var(--lv-gray-100); color: var(--lv-gray-600); }
#sod_fin.lv-order-complete .sod_fin_list,
#sod_fin.lv-order-complete #sod_fin_view,
#sod_fin.lv-order-complete #sod_fin_pay,
#sod_fin.lv-order-complete #sod_fin_orderer,
#sod_fin.lv-order-complete #sod_fin_receiver { margin: 0 0 36px; border: none; background: none; padding: 0; }

/* 상품 목록 */
#sod_fin.lv-order-complete #sod_list_inq { list-style: none; margin: 0; padding: 0; }
#sod_fin.lv-order-complete .sod_li { display: block; padding: 16px 0; border-bottom: 1px solid var(--lv-gray-200); }
/* 이미지(왼쪽) + 상품명 + 상태배지 한 줄 */
#sod_fin.lv-order-complete .li_op_wr { display: flex; align-items: center; gap: 14px; position: static; padding: 0; min-height: 0; }
#sod_fin.lv-order-complete .li_op_wr .total_img { order: -1; width: 60px; height: 60px; flex-shrink: 0; display: block; position: static; }
#sod_fin.lv-order-complete .li_op_wr .total_img img { width: 100%; height: 100%; object-fit: cover; background: var(--lv-gray-100); }
#sod_fin.lv-order-complete .li_name { flex: 1; }
#sod_fin.lv-order-complete .li_name strong, #sod_fin.lv-order-complete .li_name a { font-size: 13px; color: var(--lv-gray-800); font-weight: 500; text-decoration: none; }
#sod_fin.lv-order-complete .prqty_stat { font-size: 11px; color: var(--lv-gray-600); background: var(--lv-gray-100); padding: 3px 9px; flex-shrink: 0; display: inline-block; position: static; float: none; }
/* 옵션·가격정보·주문금액 — 이미지 너비(60)+gap(14)=74 들여쓰기 */
#sod_fin.lv-order-complete .sod_opt { margin: 10px 0 0 74px; font-size: 11px; color: var(--lv-gray-400); }
#sod_fin.lv-order-complete .li_prqty { display: flex; gap: 14px; flex-wrap: wrap; font-size: 11px; color: var(--lv-gray-600); margin: 10px 0 0 74px; }
#sod_fin.lv-order-complete .li_prqty_sp { border: none; float: none; width: auto; padding: 0; text-align: left; }
#sod_fin.lv-order-complete .li_prqty_sp > span { color: var(--lv-gray-400); float: none; }
#sod_fin.lv-order-complete .li_total { margin: 10px 0 0 74px; }
#sod_fin.lv-order-complete .li_total .total_span { font-size: 13px; font-weight: 600; color: var(--lv-gray-800); }
#sod_fin.lv-order-complete .li_total .total_span > span { font-weight: 400; color: var(--lv-gray-600); font-size: 12px; }
#sod_fin.lv-order-complete .li_total .total_price { background: transparent; display: block; clear: none; margin: 0; padding: 0; text-align: left; line-height: inherit; }
#sod_fin.lv-order-complete .li_total .total_price span { float: none; }
#sod_fin.lv-order-complete .li_total .total_price strong { font-size: inherit; color: inherit; }

/* 금액 (sod_ta_wr — 한 dl 안에 dt/dd 여러 쌍 → grid 2열로 세로 나열) */
#sod_fin.lv-order-complete .sod_ta_wr { border: 1px solid var(--lv-gray-200); padding: 8px 16px; display: block; }
#sod_fin.lv-order-complete .sod_ta_wr dl { display: grid; grid-template-columns: 1fr auto; gap: 0 8px; margin: 0; padding: 0; }
#sod_fin.lv-order-complete .sod_ta_wr dt { text-align: left; color: var(--lv-gray-600); font-size: 12px; font-weight: 400; padding: 7px 0; float: none; }
#sod_fin.lv-order-complete .sod_ta_wr dd { text-align: right; color: var(--lv-gray-800); margin: 0; padding: 7px 0; font-size: 13px; float: none; white-space: nowrap; }
#sod_fin.lv-order-complete .sod_ta_wr dd strong { font-weight: 500; }
#sod_fin.lv-order-complete .sod_ta_wr dt.sod_bsk_point, #sod_fin.lv-order-complete .sod_ta_wr dd.sod_bsk_point { color: var(--lv-accent); }
#sod_fin.lv-order-complete .sod_ta_wr dt.sod_bsk_cnt, #sod_fin.lv-order-complete .sod_ta_wr dd.sod_bsk_cnt { border-top: 1px solid var(--lv-gray-200); margin-top: 6px; padding-top: 14px; }
#sod_fin.lv-order-complete .sod_ta_wr dt.sod_bsk_cnt { font-weight: 600; color: var(--lv-black); font-size: 13px; }
#sod_fin.lv-order-complete .sod_ta_wr dd.sod_bsk_cnt strong { font-size: 16px; font-weight: 700; color: var(--lv-black); }

/* 결제합계 (#sod_fin_tot ul/li) — 어두운 박스 제거, LOVVON 톤 */
#sod_fin.lv-order-complete #sod_fin_tot { border: 1px solid var(--lv-gray-200); margin: 0 0 36px; padding: 8px 16px; background: none; }
#sod_fin.lv-order-complete #sod_fin_tot ul { list-style: none; margin: 0; padding: 0; }
#sod_fin.lv-order-complete #sod_fin_tot li { display: flex; justify-content: space-between; align-items: baseline; padding: 11px 0; border-bottom: 1px solid var(--lv-gray-200); background: none; color: var(--lv-gray-600); font-size: 13px; }
#sod_fin.lv-order-complete #sod_fin_tot li:last-child { border-bottom: none; }
#sod_fin.lv-order-complete #sod_fin_tot li strong { color: var(--lv-gray-800); font-weight: 600; }
#sod_fin.lv-order-complete #sod_fin_tot .right { width: 100%; margin-top: 8px; font-size: 11px; color: var(--lv-gray-400); }

/* 결제정보 / 주문자 / 받는분 테이블 */
#sod_fin.lv-order-complete #sod_fin_pay table,
#sod_fin.lv-order-complete #sod_fin_orderer table,
#sod_fin.lv-order-complete #sod_fin_receiver table { width: 100%; border-collapse: collapse; font-size: 13px; }
#sod_fin.lv-order-complete #sod_fin_pay tr,
#sod_fin.lv-order-complete #sod_fin_orderer tr,
#sod_fin.lv-order-complete #sod_fin_receiver tr { border-bottom: 1px solid var(--lv-gray-200); }
#sod_fin.lv-order-complete #sod_fin_pay th,
#sod_fin.lv-order-complete #sod_fin_orderer th,
#sod_fin.lv-order-complete #sod_fin_receiver th { text-align: left; font-weight: 400; color: var(--lv-gray-600); font-size: 12px; padding: 12px 4px; width: 110px; vertical-align: top; background: none; }
#sod_fin.lv-order-complete #sod_fin_pay td,
#sod_fin.lv-order-complete #sod_fin_orderer td,
#sod_fin.lv-order-complete #sod_fin_receiver td { text-align: right; color: var(--lv-gray-800); padding: 12px 4px; vertical-align: top; }

/* 버튼류 */
#sod_fin.lv-order-complete button,
#sod_fin.lv-order-complete .btn_frmline,
#sod_fin.lv-order-complete .btn_submit,
#sod_fin.lv-order-complete .btn01 {
  font-size: 12px; padding: 10px 16px; width: auto; height: auto; border: 1px solid var(--lv-gray-200); background: var(--lv-white);
  color: var(--lv-gray-600); cursor: pointer; font-family: inherit; border-radius: 0; text-decoration: none; display: inline-block; font-weight: normal;
}
#sod_fin.lv-order-complete button:hover,
#sod_fin.lv-order-complete .btn_frmline:hover { border-color: var(--lv-black); color: var(--lv-black); }
/* 상태설명 토글 — 기본 숨김 (JS로 열림) */
#sod_sts_explan { display: none; }
#sod_fin.lv-order-complete #sod_sts_wrap { margin: 16px 0; text-align: center; }
#sod_fin.lv-order-complete #sod_sts_explan_open { font-size: 11px; color: var(--lv-gray-400); background: none; border: 1px solid var(--lv-gray-200); padding: 6px 14px; cursor: pointer; }
#sod_fin.lv-order-complete #sod_sts_explan { background: var(--lv-gray-100); padding: 14px 16px; margin-bottom: 8px; font-size: 12px; line-height: 2; }
#sod_fin.lv-order-complete #sod_fin_legend { background: none; margin: 0; padding: 0; font-size: 12px; line-height: 2; }
#sod_fin.lv-order-complete #sod_fin_legend dt { float: left; width: 3em; color: var(--lv-gray-600); }
#sod_fin.lv-order-complete #sod_fin_legend dd { float: left; width: calc(100% - 3em); color: var(--lv-gray-800); margin: 0; }

/* ============================================================
   Section 36 — QA (1:1 문의)
   ============================================================ */

.lv-qa-page-title { text-align: center; padding: 40px 20px 0; }
.lv-qa-page-title h1 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lv-gray-600); font-weight: 400; }

.lv-qa-cat-tabs { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 20px 20px 24px; flex-wrap: wrap; }
.lv-qa-cat-tab { padding: 7px 20px; border: 1px solid var(--lv-gray-200); font-size: 12px; letter-spacing: 0.04em; color: var(--lv-gray-600); border-radius: 40px; background: var(--lv-white); transition: all 0.15s; }
a.lv-qa-cat-tab, a.lv-qa-cat-tab:link, a.lv-qa-cat-tab:visited { color: var(--lv-gray-600); }
.lv-qa-cat-tab.active { background: var(--lv-black); color: var(--lv-white); border-color: var(--lv-black); }
a.lv-qa-cat-tab.active, a.lv-qa-cat-tab.active:link, a.lv-qa-cat-tab.active:visited { color: var(--lv-white); }

.lv-qa-content { max-width: 800px; margin: 0 auto; padding: 0 20px 60px; }

.lv-qa-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.lv-qa-count { font-size: 12px; color: var(--lv-gray-400); }
.lv-qa-btn-write { padding: 8px 18px; background: var(--lv-black); color: var(--lv-white); font-size: 12px; letter-spacing: 0.06em; border: none; cursor: pointer; font-family: inherit; }
a.lv-qa-btn-write, a.lv-qa-btn-write:link, a.lv-qa-btn-write:visited { color: var(--lv-white); }

.lv-qa-list { border-top: 2px solid var(--lv-black); }
.lv-qa-item { display: flex; flex-direction: column; gap: 8px; border-bottom: 1px solid var(--lv-gray-200); padding: 18px 0; transition: background 0.1s; }
a.lv-qa-item, a.lv-qa-item:link, a.lv-qa-item:visited { color: inherit; }
.lv-qa-item:hover { background: var(--lv-gray-100); padding-left: 8px; padding-right: 8px; margin: 0 -8px; }
.lv-qa-item-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.lv-qa-badge-cat { display: inline-block; font-size: 10px; letter-spacing: 0.08em; padding: 2px 9px; border: 1px solid var(--lv-gray-200); color: var(--lv-gray-600); white-space: nowrap; flex-shrink: 0; }
.lv-qa-subject { font-size: 14px; color: var(--lv-gray-800); flex: 1; line-height: 1.4; }
.lv-qa-badge-status { font-size: 10px; letter-spacing: 0.06em; padding: 3px 10px; white-space: nowrap; flex-shrink: 0; font-weight: 500; }
.lv-qa-badge-status.done { background: var(--lv-accent); color: var(--lv-white); }
.lv-qa-badge-status.wait { background: var(--lv-gray-200); color: var(--lv-gray-600); }
.lv-qa-item-bottom { display: flex; align-items: center; gap: 16px; font-size: 11px; color: var(--lv-gray-400); }
.lv-qa-empty { text-align: center; padding: 60px 0; font-size: 13px; color: var(--lv-gray-400); border-bottom: 1px solid var(--lv-gray-200); }

.lv-qa-content .pg_wrap { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 28px 0 20px; }
.lv-qa-content .pg_wrap .pg { display: flex; gap: 4px; }
.lv-qa-content .pg_wrap a,
.lv-qa-content .pg_wrap strong { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; border: 1px solid transparent; color: var(--lv-gray-600); font-weight: 400; }
.lv-qa-content .pg_wrap strong { border-color: var(--lv-black); color: var(--lv-black); font-weight: 600; }
.lv-qa-content .pg_wrap a:hover { color: var(--lv-black); }

.lv-qa-search { padding-top: 8px; }
.lv-qa-search form { display: flex; gap: 6px; justify-content: center; }
.lv-qa-search-select { border: 1px solid var(--lv-gray-200); padding: 9px 12px; font-size: 12px; font-family: inherit; color: var(--lv-gray-800); background: var(--lv-white); width: 90px; }
.lv-qa-search-input { border: 1px solid var(--lv-gray-200); padding: 9px 14px; font-size: 13px; font-family: inherit; color: var(--lv-gray-800); flex: 1; max-width: 240px; outline: none; }
.lv-qa-search-input:focus { border-color: var(--lv-black); }
.lv-qa-search-btn { padding: 9px 20px; background: var(--lv-black); color: var(--lv-white); font-size: 12px; letter-spacing: 0.08em; border: none; cursor: pointer; font-family: inherit; }

.lv-qa-view-header { padding-bottom: 20px; border-bottom: 1px solid var(--lv-gray-200); display: flex; flex-direction: column; gap: 10px; margin-bottom: 0; }
.lv-qa-view-header-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.lv-qa-view-title { font-size: 18px; font-weight: 700; line-height: 1.35; color: var(--lv-gray-800); }
.lv-qa-view-meta { display: flex; gap: 20px; font-size: 12px; color: var(--lv-gray-400); }

.lv-qa-block { border-bottom: 1px solid var(--lv-gray-200); }
.lv-qa-q-block { padding: 28px 0; }
.lv-qa-a-block { padding: 28px 20px; background: var(--lv-gray-100); width: 100%; box-sizing: border-box; }
.lv-qa-answerform, .lv-qa-waiting { padding: 24px 20px; }
.lv-qa-block-label { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.lv-qa-block-label.q { background: var(--lv-black); color: var(--lv-white); }
.lv-qa-block-label.a { background: var(--lv-accent); color: var(--lv-white); }
.lv-qa-body { font-size: 14px; color: var(--lv-gray-800); line-height: 1.9; }
.lv-qa-body p { margin-bottom: 14px; }
.lv-qa-a-meta { font-size: 11px; color: var(--lv-gray-400); margin-top: 12px; }
.lv-qa-a-edit { font-size: 11px; color: var(--lv-gray-400); margin-left: 8px; text-decoration: underline; }
.lv-qa-wait-msg { font-size: 13px; color: var(--lv-gray-400); line-height: 1.7; }
.lv-qa-files { list-style: none; margin-top: 12px; }
.lv-qa-files li { margin-bottom: 4px; }
.lv-qa-file-link { font-size: 12px; color: var(--lv-gray-600); text-decoration: underline; }

.lv-qa-view-nav { border-bottom: 1px solid var(--lv-gray-200); margin-top: 40px; }
.lv-qa-nav-item { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-top: 1px solid var(--lv-gray-200); font-size: 13px; }
a.lv-qa-nav-item, a.lv-qa-nav-item:link, a.lv-qa-nav-item:visited { color: var(--lv-gray-800); }
.lv-qa-nav-item:hover .lv-qa-nav-title { color: var(--lv-accent); }
.lv-qa-nav-dir { font-size: 11px; letter-spacing: 0.08em; color: var(--lv-gray-400); width: 48px; flex-shrink: 0; }
.lv-qa-nav-title { flex: 1; }

.lv-qa-view-actions { display: flex; justify-content: center; gap: 8px; padding: 28px 0 0; }
.lv-qa-btn-del { border: 1px solid var(--lv-gray-200); padding: 11px 32px; font-size: 12px; letter-spacing: 0.1em; color: var(--lv-gray-400); cursor: pointer; background: var(--lv-white); font-family: inherit; }
.lv-qa-btn-del:hover { border-color: #c00; color: #c00; }
a.lv-qa-btn-del, a.lv-qa-btn-del:link, a.lv-qa-btn-del:visited { color: var(--lv-gray-400); }
.lv-qa-btn-list { border: 1px solid var(--lv-gray-200); padding: 11px 32px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lv-gray-600); cursor: pointer; background: var(--lv-white); font-family: inherit; }
.lv-qa-btn-list:hover { border-color: var(--lv-black); color: var(--lv-black); }
a.lv-qa-btn-list, a.lv-qa-btn-list:link, a.lv-qa-btn-list:visited { color: var(--lv-gray-600); }

.lv-qa-rewrite { text-align: center; padding: 20px 0 0; }
.lv-qa-btn-rewrite { display: inline-block; border: 1px solid var(--lv-gray-200); padding: 10px 28px; font-size: 12px; color: var(--lv-gray-600); background: var(--lv-white); }
a.lv-qa-btn-rewrite, a.lv-qa-btn-rewrite:link, a.lv-qa-btn-rewrite:visited { color: var(--lv-gray-600); }

.lv-qa-answer-subject { width: 100%; border: 1px solid var(--lv-gray-200); padding: 10px 14px; font-size: 13px; font-family: inherit; margin-bottom: 12px; outline: none; box-sizing: border-box; }
.lv-qa-answer-subject:focus { border-color: var(--lv-black); }
.lv-qa-answer-content { margin-bottom: 12px; }
.lv-qa-answer-content textarea { width: 100%; box-sizing: border-box; font-family: inherit; font-size: 13px; border: 1px solid var(--lv-gray-200); padding: 10px 14px; resize: vertical; min-height: 160px; outline: none; }
.lv-qa-answer-content textarea:focus { border-color: var(--lv-black); }
.lv-qa-answer-submit { text-align: right; }

/* ============================================================
   Section 37 — 검색결과 (shop/search.php)
   ============================================================ */

/* 검색 헤더 */
.lv-search-header { border-bottom: 1px solid var(--lv-gray-200); padding: 32px 20px 0; }

/* 검색 바 */
.lv-search-bar-wrap { max-width: 640px; margin: 0 auto 20px; }
.lv-search-bar-inner { display: flex; border: 1px solid var(--lv-black); }
.lv-search-bar-input { flex: 1; border: none; padding: 13px 18px; font-size: 15px; font-family: inherit; color: var(--lv-gray-800); outline: none; }
.lv-search-bar-input::placeholder { color: var(--lv-gray-400); }
.lv-search-bar-btn { width: 50px; background: var(--lv-black); border: none; color: var(--lv-white); cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* 검색 요약 */
.lv-search-summary { text-align: center; margin-bottom: 16px; }
.lv-search-keyword { font-size: 13px; color: var(--lv-gray-600); }
.lv-search-keyword strong { color: var(--lv-black); font-weight: 600; }
.lv-search-total { font-size: 12px; color: var(--lv-gray-400); margin-top: 4px; }

/* 탭 */
.lv-result-tabs { display: flex; justify-content: center; gap: 0; border-bottom: none; }
.lv-result-tab { padding: 12px 28px; font-size: 13px; letter-spacing: 0.04em; color: var(--lv-gray-400); cursor: pointer; border-bottom: 2px solid transparent; }
a.lv-result-tab, a.lv-result-tab:link, a.lv-result-tab:visited { color: var(--lv-gray-400); }
.lv-result-tab.active { color: var(--lv-black); border-bottom-color: var(--lv-black); font-weight: 500; }
.lv-tab-cnt { font-size: 11px; color: var(--lv-accent); margin-left: 4px; }

/* 메인 콘텐츠 */
.lv-search-content { padding: 32px 20px 60px; }

/* 정렬 바 */
.lv-search-filter-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.lv-search-filter-count { font-size: 12px; color: var(--lv-gray-400); }
.lv-sort-btns { display: flex; gap: 4px; flex-wrap: wrap; }
.lv-sort-btn { padding: 6px 14px; border: 1px solid var(--lv-gray-200); font-size: 11px; letter-spacing: 0.04em; color: var(--lv-gray-600); cursor: pointer; background: var(--lv-white); font-family: inherit; }
.lv-sort-btn.active { background: var(--lv-black); color: var(--lv-white); border-color: var(--lv-black); }
.lv-sort-btn:hover { border-color: var(--lv-black); color: var(--lv-black); }

/* 검색 그리드 — sct_li 고정 너비 오버라이드 */
.lv-search-grid .sct_wrap { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 0; list-style: none; padding: 0; margin: 0; width: 100% !important; }
.lv-search-grid .sct_li { width: auto !important; float: none !important; }
/* 카테고리 분류 섹션 숨김 */
#ssch_cate, .sct_ct { display: none !important; }
@media (max-width: 768px) {
  .lv-search-grid .sct_wrap { grid-template-columns: repeat(2, 1fr); }
}

/* 결과 없음 */
.lv-search-empty { text-align: center; padding: 80px 0; }
.lv-search-empty p { font-size: 14px; color: var(--lv-gray-400); margin-bottom: 8px; }
.lv-search-empty small { font-size: 12px; color: var(--lv-gray-400); line-height: 1.8; }

/* 페이지네이션 재정의 */
.lv-search-pagination .pg_wrap { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 40px 0 0; }
.lv-search-pagination .pg_wrap .pg { display: flex; gap: 4px; }
.lv-search-pagination .pg_wrap a,
.lv-search-pagination .pg_wrap strong { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; border: 1px solid transparent; color: var(--lv-gray-600); font-weight: 400; }
.lv-search-pagination .pg_wrap strong { border-color: var(--lv-black); color: var(--lv-black); font-weight: 600; }
.lv-search-pagination .pg_wrap a:hover { color: var(--lv-black); }

/* ============================================================
   Section 38 — FAQ
   ============================================================ */

.lv-faq-page-title { text-align: center; padding: 40px 20px 24px; }
.lv-faq-page-title h1 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lv-gray-600); font-weight: 400; }

.lv-faq-search { max-width: 560px; margin: 0 auto 32px; padding: 0 20px; }
.lv-faq-search-inner { display: flex; border: 1px solid var(--lv-black); }
.lv-faq-search-input { flex: 1; border: none; padding: 13px 18px; font-size: 14px; font-family: inherit; color: var(--lv-gray-800); outline: none; }
.lv-faq-search-input::placeholder { color: var(--lv-gray-400); }
.lv-faq-search-btn { width: 48px; background: var(--lv-black); border: none; color: var(--lv-white); cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.lv-faq-cat-tabs { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 0 20px 32px; flex-wrap: wrap; }
.lv-faq-cat-tab { padding: 7px 20px; border: 1px solid var(--lv-gray-200); font-size: 12px; letter-spacing: 0.04em; color: var(--lv-gray-600); border-radius: 40px; background: var(--lv-white); transition: all 0.15s; }
a.lv-faq-cat-tab, a.lv-faq-cat-tab:link, a.lv-faq-cat-tab:visited { color: var(--lv-gray-600); }
.lv-faq-cat-tab.active { background: var(--lv-black); color: var(--lv-white); border-color: var(--lv-black); }
a.lv-faq-cat-tab.active, a.lv-faq-cat-tab.active:link, a.lv-faq-cat-tab.active:visited { color: var(--lv-white); }

.lv-faq-content { max-width: 800px; margin: 0 auto; padding: 0 20px 60px; overflow: hidden; }
.lv-faq-list { border-top: 2px solid var(--lv-black); }

.lv-faq-item { border-bottom: 1px solid var(--lv-gray-200); }
.lv-faq-q { display: flex; align-items: center; gap: 16px; padding: 20px 0; cursor: pointer; transition: background 0.1s; }
.lv-faq-q:hover { padding-left: 8px; padding-right: 8px; margin: 0 -8px; background: var(--lv-gray-100); }
.lv-faq-q-badge { width: 28px; height: 28px; background: var(--lv-black); color: var(--lv-white); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.lv-faq-q-text { flex: 1; font-size: 14px; font-weight: 500; color: var(--lv-gray-800); line-height: 1.5; }
.lv-faq-toggle { width: 28px; height: 28px; border: 1px solid var(--lv-gray-200); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--lv-gray-400); flex-shrink: 0; transition: all 0.2s; line-height: 1; }
.lv-faq-item.open .lv-faq-toggle { background: var(--lv-black); color: var(--lv-white); border-color: var(--lv-black); }

.lv-faq-a { display: none; margin: 0 -20px; padding: 20px 20px 28px calc(44px + 20px); background: var(--lv-gray-100); }
.lv-faq-item.open .lv-faq-a { display: flex; gap: 16px; align-items: flex-start; }
.lv-faq-a-badge { width: 28px; height: 28px; background: var(--lv-accent); color: var(--lv-white); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.lv-faq-a-text { font-size: 14px; color: var(--lv-gray-600); line-height: 1.85; flex: 1; }

.lv-faq-empty { text-align: center; padding: 60px 0; font-size: 13px; color: var(--lv-gray-400); border-bottom: 1px solid var(--lv-gray-200); }

@media (min-width: 769px) {
  .lv-faq-page-title { padding: 48px 40px 32px; }
  .lv-faq-search { margin: 0 auto 40px; padding: 0 40px; }
  .lv-faq-cat-tabs { padding: 0 40px 40px; }
  .lv-faq-content { padding: 0 40px 80px; }
  .lv-faq-a { margin: 0 -40px; padding: 20px 40px 28px calc(44px + 40px); }
}
