/* ========================================
   YENE INNER PAGES - pages.css
   ======================================== */

/* ---- AUTH PAGES (login / signup / find-password) ---- */

.auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
  margin-top: 68px;
}

.auth-form-col {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f5f9;
  padding: 60px 48px;
}

.auth-form-inner {
  width: 100%;
  max-width: 460px;
}

.auth-form-inner h1 {
  font-size: 42px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px;
}

.auth-desc {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 36px;
}

.auth-image-col {
  overflow: hidden;
  position: relative;
}

.auth-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Form elements */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.form-input-wrap {
  position: relative;
}

.form-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-size: 15px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font-main);
}

.form-input:focus {
  border-color: var(--blue);
}

.form-input::placeholder {
  color: #b8c2cf;
}

.form-input-with-btn {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.btn-dupcheck {
  height: 48px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--navy);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-main);
  transition: background 0.2s;
}

.btn-dupcheck:hover {
  background: var(--blue);
}

.pw-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 0;
  display: flex;
  align-items: center;
  line-height: 1;
}

.pw-toggle .material-symbols-rounded {
  font-size: 20px;
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 24px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
  user-select: none;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  cursor: pointer;
}

.form-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.15s;
}

.form-link:hover {
  color: var(--navy);
}

.btn-auth {
  width: 100%;
  height: 52px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--font-main);
  text-decoration: none;
}

.btn-auth-primary {
  color: var(--white);
  background: var(--navy);
}

.btn-auth-primary:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-auth-outline {
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  margin-top: 10px;
}

.btn-auth-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.auth-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.auth-bottom a {
  color: var(--blue);
  font-weight: 500;
  margin-left: 6px;
}

/* Step indicator (signup) */
.step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #b0b8c4;
  font-weight: 400;
}

.step-item.is-active {
  color: var(--navy);
  font-weight: 600;
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #dfe5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #b0b8c4;
}

.step-item.is-active .step-num {
  background: var(--navy);
  color: var(--white);
}

.step-line {
  flex: 1;
  height: 1px;
  background: var(--line);
  margin: 0 6px;
  margin-bottom: 24px;
}

/* Find-password box */
.findpw-box {
  margin-top: 24px;
}

/* Find-password illustration */
.findpw-illus-col {
  background: linear-gradient(145deg, #e8eef8 0%, #f0f4ff 50%, #dce4f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.findpw-illus {
  position: relative;
  width: 360px;
  height: 360px;
}

.illus-envelope {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  width: 240px;
  height: 180px;
  background: var(--white);
  border: 2px solid #dfe5ef;
  border-radius: 10px;
  box-shadow: 0 28px 56px rgba(14,31,58,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

.illus-envelope::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 50%;
  background: linear-gradient(180deg, #f4f7fb 0%, transparent 100%);
  border-radius: 10px 10px 0 0;
  border: 2px solid #dfe5ef;
  border-bottom: none;
  clip-path: polygon(0 0, 100% 0, 50% 80%);
}

.illus-lock {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.illus-lock .material-symbols-rounded {
  font-size: 30px;
  color: var(--white);
}

.illus-dots {
  font-size: 20px;
  letter-spacing: 6px;
  color: var(--navy);
  font-weight: 700;
}

.illus-shield {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(14,31,58,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.illus-shield .material-symbols-rounded {
  font-size: 32px;
  color: var(--blue);
}

.illus-float {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(14,31,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.illus-float .material-symbols-rounded {
  font-size: 22px;
  color: var(--muted);
}

.illus-float-1 { top: 40px; right: 60px; }
.illus-float-2 { top: 20px; right: 160px; }
.illus-float-3 { bottom: 60px; right: 40px; }

/* ========================================
   CART PAGE
   ======================================== */

.cart-page {
  padding-top: 68px;
  min-height: 100vh;
  background: var(--white);
}

.cart-page-inner {
  padding: 48px 0 80px;
}

.cart-page-title {
  font-size: 34px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 32px;
}

.cart-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

/* Cart table head */
.cart-table-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--text);
}

.cart-table-head label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.cart-table-head input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--blue);
  cursor: pointer;
}

.btn-delete-sel {
  height: 34px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-main);
  transition: border-color 0.15s, color 0.15s;
}

.btn-delete-sel:hover {
  border-color: var(--navy);
  color: var(--navy);
}

/* Cart column headers */
.cart-cols {
  display: grid;
  grid-template-columns: 44px 1fr 200px 130px 130px 44px;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.cart-cols .col-info { text-align: left; }

/* Cart item rows */
.cart-item {
  display: grid;
  grid-template-columns: 44px 1fr 200px 130px 130px 44px;
  gap: 12px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--blue);
  cursor: pointer;
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-item-thumb {
  width: 84px;
  height: 84px;
  object-fit: contain;
  background: var(--soft);
  border: 1px solid var(--line);
  flex-shrink: 0;
  padding: 6px;
}

.cart-item-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 4px;
}

.cart-item-model {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.qty-ctrl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.qty-btns {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--white);
  cursor: pointer;
  font-size: 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  font-family: var(--font-main);
}

.qty-btn:hover { background: var(--soft); }

.qty-val {
  width: 34px;
  height: 32px;
  padding: 0;
  border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  font-family: var(--font-main);
}

.btn-qty-change {
  font-size: 12px;
  color: var(--blue);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  font-family: var(--font-main);
}

.cart-price,
.cart-total {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.cart-total { color: var(--navy); font-weight: 600; }

.btn-cart-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  border-radius: 4px;
  font-size: 18px;
  color: var(--muted);
  transition: color 0.15s, border-color 0.15s;
}

.btn-cart-remove:hover {
  color: #e53935;
  border-color: #e53935;
}

/* Cart bottom actions */
.cart-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.btn-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  font-family: var(--font-main);
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-cart:hover { border-color: var(--navy); color: var(--navy); }
.btn-cart-danger { color: #e53935; }
.btn-cart-danger:hover { border-color: #e53935; color: #e53935; }

/* Order summary sidebar */
.order-summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  position: sticky;
  top: 84px;
}

.order-summary-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}

.order-row .lbl { color: var(--muted); }
.order-row .val { font-weight: 500; }

.order-row-question {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--muted);
  font-size: 11px;
  color: var(--muted);
  margin-left: 4px;
  cursor: help;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.order-total-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
}

.btn-order {
  width: 100%;
  height: 52px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 10px;
  font-family: var(--font-main);
  transition: background 0.2s;
}

.btn-order:hover { background: var(--blue); }

.btn-quote {
  width: 100%;
  height: 52px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-main);
  transition: border-color 0.2s;
}

.btn-quote:hover { border-color: var(--navy); }

/* ========================================
   INNER PAGES (COMPANY ETC)
   ======================================== */

.page-top {
  padding-top: 68px;
}

/* Page hero banner */
.page-hero {
  position: relative;
  overflow: hidden;
  background: #f0f2f7;
  height: 220px;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
  z-index: 1;
}

.page-hero-kicker {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.page-hero-text h1 {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  word-break: keep-all;
}

.page-hero-text h1 strong {
  color: var(--yellow);
  font-weight: 600;
}

.page-hero-text p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  word-break: keep-all;
}

.page-hero-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
}

.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 140px;
  height: 100%;
  background: linear-gradient(90deg, #f0f2f7, transparent);
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  height: 44px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb-inner a { color: var(--muted); }
.breadcrumb-inner a:hover { color: var(--navy); }

.bc-home {
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.bc-sep { color: #c8d0dc; }

.bc-active {
  color: var(--navy);
  font-weight: 500;
}

/* Inner page layout */
.inner-content {
  padding: 52px 0 80px;
}

.inner-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 44px;
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sidebar */
.page-sidebar {
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.sidebar-title {
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 20px;
  margin: 0;
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  border-bottom: 1px solid var(--line);
}

.sidebar-nav li:last-child { border-bottom: none; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 14px;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
}

.sidebar-nav a:hover {
  background: var(--soft);
  color: var(--blue);
}

.sidebar-nav a.is-active {
  background: var(--soft);
  color: var(--navy);
  font-weight: 600;
}

.sidebar-nav .nav-arrow {
  font-size: 14px;
  color: var(--muted);
}

/* Content heading */
.content-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
}

.content-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 28px;
}

/* ========================================
   GREETING PAGE
   ======================================== */

.greeting-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  margin-top: 8px;
}

.greeting-headline {
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.45;
  margin: 0 0 6px;
}

.greeting-headline strong {
  color: var(--yellow);
  font-weight: 700;
}

.greeting-bar {
  width: 40px;
  height: 3px;
  background: var(--navy);
  margin: 18px 0 24px;
}

.greeting-text p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
  margin: 0 0 18px;
  word-break: keep-all;
}

.greeting-sig {
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted);
}

.greeting-sig .ceo-name {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.greeting-img {
  overflow: hidden;
  border-radius: 4px;
}

.greeting-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ========================================
   ORG CHART PAGE
   ======================================== */

.org-wrap {
  padding: 8px 0 40px;
}

.org-root {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.org-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  min-height: 44px;
}

.org-v-line {
  display: flex;
  justify-content: center;
}

.org-v-line::after {
  content: "";
  display: block;
  width: 2px;
  height: 28px;
  background: var(--line);
}

.org-h-line-wrap {
  position: relative;
  height: 2px;
  background: var(--line);
  margin: 0 calc(12.5% + 4px);
}

.org-depts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 0;
}

.org-dept-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-dept-vline {
  width: 2px;
  height: 28px;
  background: var(--line);
}

.org-dept-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  min-height: 44px;
  text-align: center;
}

.org-teams {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 10px;
}

.org-team-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 36px;
  text-align: center;
}

.org-footer {
  text-align: center;
  margin-top: 44px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
}

.org-footer strong {
  color: var(--yellow);
  font-weight: 600;
}

/* ========================================
   PATENT & CERT PAGE
   ======================================== */

.tab-bar {
  display: flex;
  margin-bottom: 28px;
}

.tab-btn {
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  margin-right: -1px;
  font-family: var(--font-main);
  transition: all 0.15s;
  position: relative;
}

.tab-btn:first-child { border-radius: 4px 0 0 4px; }
.tab-btn:last-child { border-radius: 0 4px 4px 0; margin-right: 0; }

.tab-btn.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  z-index: 1;
}

.tab-btn:not(.is-active):hover {
  border-color: var(--navy);
  color: var(--navy);
}

/* ========================================
   시공사례 PAGE
   ======================================== */

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
  margin-top: 4px;
}

.case-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.case-card:hover { transform: translateY(-5px); }

.case-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: var(--soft);
  box-shadow: 0 2px 10px rgba(14,31,58,0.07);
  transition: box-shadow 0.2s;
  position: relative;
}

.case-card:hover .case-card-img {
  box-shadow: 0 8px 24px rgba(14,31,58,0.14);
}

.case-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.case-card:hover .case-card-img img {
  transform: scale(1.06);
}

.case-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(14,31,58,0.72);
  color: #fff;
  backdrop-filter: blur(4px);
}

.case-card-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin: 10px 0 0;
  line-height: 1.45;
  word-break: keep-all;
}

.case-card-date {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

@media (max-width: 960px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
}

/* 특허 및 증서 — 4열 카드 그리드 */
.patent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
  margin-top: 4px;
}

.patent-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.patent-card:hover { transform: translateY(-5px); }

.patent-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(14,31,58,0.07);
  transition: box-shadow 0.2s;
}

.patent-card:hover .patent-card-img {
  box-shadow: 0 8px 24px rgba(14,31,58,0.14);
}

.patent-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 6px;
}

.patent-card-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin: 10px 0 0;
  text-align: center;
  line-height: 1.45;
  word-break: keep-all;
  width: 100%;
}

.patent-card-date {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
  text-align: center;
}

/* 하위 호환 — 기존 list 스타일 유지 */
.patent-list { display: flex; flex-direction: column; }
.patent-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.patent-item:first-child { border-top: 1px solid var(--line); }

@media (max-width: 960px) {
  .patent-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .patent-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
}

/* ========================================
   SERVICE CENTER PAGE
   ======================================== */

.svc-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.svc-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.svc-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(33,77,163,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-info-icon .material-symbols-rounded {
  font-size: 24px;
  color: var(--blue);
}

.svc-info-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 2px;
}

.svc-info-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
}

.svc-info-value.normal {
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
}

.svc-info-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

.svc-card {
  padding: 24px 18px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.svc-card:hover {
  box-shadow: 0 4px 18px rgba(14,31,58,0.08);
  border-color: var(--blue);
}

.svc-card-icon {
  margin-bottom: 14px;
}

.svc-card-icon .material-symbols-rounded {
  font-size: 34px;
  color: var(--blue);
}

.svc-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
}

.svc-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.55;
  word-break: keep-all;
}

.svc-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--soft);
  border-radius: 50%;
  color: var(--navy);
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.svc-card:hover .svc-card-arrow {
  background: var(--blue);
  color: var(--white);
}

/* Service process */
.svc-process h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 18px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-right: none;
  position: relative;
}

.process-step:last-child { border-right: 1px solid var(--line); }

.process-step::after {
  content: "›";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 28px;
  height: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--blue);
  line-height: 28px;
  text-align: center;
}

.process-step:last-child::after { display: none; }

.step-num-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(33,77,163,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}

.process-step h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 4px;
}

.process-step p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
  word-break: keep-all;
}

/* ========================================
   LOCATION PAGE (오시는 길)
   ======================================== */

.location-main-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  margin-bottom: 20px;
}

.location-map-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  min-height: 400px;
  background: #f0f2f7;
  display: flex;
  flex-direction: column;
}

.location-map-wrap iframe {
  width: 100%;
  flex: 1;
  min-height: 400px;
  border: none;
  display: block;
}

/* 연락처 패널 */
.location-contact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.location-contact-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--navy);
}

.location-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}

.location-contact-row:last-of-type { border-bottom: none; }

.location-contact-row .material-symbols-rounded {
  font-size: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-contact-row a { color: var(--text); }

.location-hours-detail {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.6;
}

.location-contact-btns {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.btn-loc-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  font-family: var(--font-main);
  transition: background 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-loc-primary:hover { background: var(--blue); color: var(--white); }
.btn-loc-primary .material-symbols-rounded { font-size: 16px; }

.btn-loc-outline {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 44px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  font-family: var(--font-main);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.btn-loc-outline:hover { background: var(--navy); color: var(--white); }
.btn-loc-outline .material-symbols-rounded { font-size: 16px; }

/* 하단 교통 카드 - 3열 세로형 */
.location-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.transport-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.transport-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 14px;
}

.transport-icon .material-symbols-rounded {
  font-size: 24px;
  color: var(--navy);
}

.transport-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}

.transport-accent {
  width: 32px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 14px;
}

.transport-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.transport-list li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  padding-left: 12px;
  position: relative;
  word-break: keep-all;
}

.transport-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--muted);
}

.transport-phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 16px 0 0;
}

/* ========================================
   DEALER PAGE (대리점 현황)
   ======================================== */

.dealer-banner {
  margin-bottom: 28px;
}

.dealer-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.dealer-search-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.dealer-region-select {
  height: 46px;
  min-width: 140px;
  padding: 0 36px 0 14px;
  font-size: 14px;
  color: var(--text);
  background: var(--white)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23737b8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat right 12px center;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  appearance: none;
  font-family: var(--font-main);
}

.dealer-search-input {
  flex: 1;
  height: 46px;
  padding: 0 14px;
  font-size: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  font-family: var(--font-main);
  transition: border-color 0.15s;
}

.dealer-search-input:focus { border-color: var(--blue); }
.dealer-search-input::placeholder { color: #b8c2cf; }

.btn-dealer-search {
  height: 46px;
  padding: 0 24px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-main);
  transition: background 0.15s;
}

.btn-dealer-search:hover { background: var(--blue); }

.dealer-count {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.dealer-count strong {
  color: var(--navy);
  font-weight: 600;
}

.dealer-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--navy);
  margin-bottom: 28px;
}

.dealer-table th {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.dealer-table td {
  padding: 16px;
  font-size: 14px;
  color: var(--text);
  text-align: center;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.dealer-table tr:hover td { background: #fafbfd; }

.td-name { font-weight: 500; color: var(--navy); }
.td-addr { text-align: left !important; color: var(--muted); font-size: 13px; }

.region-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.region-seoul    { background: #e8f0ff; color: #1a3fa8; }
.region-incheon  { background: #e6f9f0; color: #0a7a4a; }
.region-daejeon  { background: #fff5e0; color: #a06200; }
.region-gwangju  { background: #f0eaff; color: #5b1fa8; }
.region-daegu    { background: #ffe8e8; color: #a81f1f; }
.region-busan    { background: #e0f4ff; color: #0074a8; }
.region-jeju     { background: #e8fff0; color: #0a7a2a; }
.region-gangwon  { background: #fff0e8; color: #a84a1f; }

.btn-dealer-detail {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 32px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
  font-family: var(--font-main);
}

.btn-dealer-detail:hover { border-color: var(--blue); color: var(--blue); }

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.page-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  color: var(--text);
  text-decoration: none;
  transition: all 0.15s;
  font-family: var(--font-main);
}

.page-btn:hover:not(.is-active) { border-color: var(--navy); color: var(--navy); }
.page-btn.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ========================================
   CUSTOMER CENTER PAGES (고객센터)
   ======================================== */

/* Hero — 다크 오버레이 배경 */
.cs-hero {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--navy);
}

.cs-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../image/sec04_1.png') center/cover no-repeat;
  opacity: 0.35;
}

.cs-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.cs-hero-kicker {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.cs-hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.2;
  word-break: keep-all;
}

.cs-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin: 0;
  font-weight: 300;
}

/* 사이드바 — 고객센터 전용 */
.cs-sidebar {
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.cs-sidebar-title {
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 20px;
  margin: 0;
  text-align: center;
}

.cs-sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.cs-sidebar-nav li { border-bottom: 1px solid var(--line); }
.cs-sidebar-nav li:last-child { border-bottom: none; }

.cs-sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 14px;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
}

.cs-sidebar-nav a:hover { background: var(--soft); color: var(--navy); }

.cs-sidebar-nav a.is-active {
  background: var(--soft);
  color: var(--navy);
  font-weight: 600;
}

.cs-sidebar-nav a.is-active .nav-arrow { color: var(--muted); }
.cs-sidebar-nav .nav-arrow { font-size: 14px; color: var(--muted); }

/* 검색바 */
.cs-search-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 4px;
}

.cs-search-select {
  height: 44px;
  min-width: 110px;
  padding: 0 32px 0 12px;
  font-size: 14px;
  color: var(--text);
  background: var(--white)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23737b8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat right 10px center;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  appearance: none;
  font-family: var(--font-main);
}

.cs-search-input {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  font-size: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  font-family: var(--font-main);
  background: var(--white);
  transition: border-color 0.15s;
}

.cs-search-input:focus { border-color: var(--blue); }
.cs-search-input::placeholder { color: #b8c2cf; }

.cs-search-btn {
  height: 44px;
  padding: 0 22px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-main);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
  white-space: nowrap;
}

.cs-search-btn:hover { background: var(--blue); }
.cs-search-btn .material-symbols-rounded { font-size: 18px; }

/* 공지사항 / 자료실 / 보도자료 테이블 */
.cs-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--navy);
  margin-bottom: 28px;
}

.cs-table th {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.cs-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text);
  text-align: center;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.cs-table tr:hover td { background: #fafbfd; }

.cs-table .td-title {
  text-align: left;
  color: var(--text);
  cursor: pointer;
}

.cs-table .td-title a {
  color: var(--text);
  text-decoration: none;
}

.cs-table .td-title a:hover { color: var(--blue); }
.cs-table .td-title:hover { color: var(--blue); }

/* 뱃지 */
.cs-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  margin-right: 8px;
}

.badge-product  { background: #e0f0ff; color: #0068b2; }
.badge-notice   { background: #fff0e0; color: #b26200; }
.badge-event    { background: #edf5e1; color: #3a7d00; }
.badge-catalog  { background: #e8f0ff; color: #1a3fa8; }
.badge-manual   { background: #e6f9f0; color: #0a7a4a; }
.badge-form     { background: #fff5e0; color: #a06200; }
.badge-cert     { background: #f0eaff; color: #5b1fa8; }
.badge-company  { background: #f5f5f5; color: #555; }

/* 다운로드 버튼 */
.btn-cs-dl {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 30px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-main);
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.btn-cs-dl:hover { border-color: var(--blue); color: var(--blue); }
.btn-cs-dl .material-symbols-rounded { font-size: 14px; }

/* 동영상 갤러리 */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.video-card {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--navy);
  margin-bottom: 12px;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.video-card:hover .video-thumb img { opacity: 0.55; }

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.video-card:hover .video-play-btn { background: var(--white); transform: translate(-50%,-50%) scale(1.08); }

.video-play-btn .material-symbols-rounded { font-size: 28px; color: var(--navy); }

.video-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.4;
  word-break: keep-all;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.video-meta .material-symbols-rounded { font-size: 14px; }

/* 자주 묻는 질문 아코디언 */
.faq-list {
  margin-bottom: 28px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  background: var(--white);
  transition: background 0.15s;
  user-select: none;
}

.faq-question:hover { background: var(--soft); }
.faq-item.is-open .faq-question { background: var(--soft); }

.faq-q-text {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  word-break: keep-all;
}

.faq-chevron {
  font-size: 20px;
  color: var(--muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.is-open .faq-chevron { transform: rotate(180deg); color: var(--blue); }

.faq-answer {
  display: none;
  padding: 16px 20px 18px;
  border-top: 1px solid var(--line);
  background: #f8f9fc;
}

.faq-item.is-open .faq-answer { display: block; }

.faq-a-prefix {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-right: 8px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  word-break: keep-all;
  display: inline;
}

/* 보도자료 리스트 */
.press-list { margin-bottom: 28px; }

.press-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.press-item:first-child { border-top: 1px solid var(--line); }

.press-thumb {
  width: 140px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--soft);
  display: block;
}

.press-body { min-width: 0; }

.press-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 6px;
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.press-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: keep-all;
}

.press-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.press-outlet {
  font-weight: 500;
  color: var(--text);
}

.btn-cs-article {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 36px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-main);
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-cs-article:hover { border-color: var(--blue); color: var(--blue); }

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 760px) {
  /* 760px 이하에서 헤더가 62px로 줄어드므로 전체 페이지 offset 동기화 */
  .auth-wrap {
    margin-top: 62px;
    min-height: calc(100vh - 62px);
  }
  .page-top {
    padding-top: 62px;
  }
  .cart-page {
    padding-top: 62px;
  }
}

@media (max-width: 960px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-image-col { display: none; }
  .findpw-illus-col { display: none; }

  .inner-layout { grid-template-columns: 1fr; }
  .page-sidebar { display: none; }

  .cart-wrap { grid-template-columns: 1fr; }
  .cart-cols { display: none; }

  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-right: 1px solid var(--line); }
  .process-step::after { display: none; }

  .greeting-layout { grid-template-columns: 1fr; }
  .greeting-img { max-width: 360px; }

  .org-depts { grid-template-columns: repeat(2, 1fr); }

  .location-main-grid { grid-template-columns: 1fr; }
  .location-contact { display: flex; flex-direction: column; }
  .location-bottom-grid { grid-template-columns: repeat(2, 1fr); }

  .dealer-header-row { flex-direction: column; }
  .dealer-map-illus { display: none; }
}

@media (max-width: 640px) {
  .auth-form-col { padding: 40px 20px; }
  .svc-info-cards { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .location-bottom-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 30px 1fr 44px; gap: 10px; }
  .cart-item-info { flex-direction: column; align-items: flex-start; }
  .cart-item > *:not(:nth-child(1)):not(:nth-child(2)):not(:last-child) { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   PRODUCT PAGES
   ======================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

.product-card-img {
  background: #fff;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card-body {
  padding: 16px 18px 20px;
}

.product-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.4;
}

.product-card-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.product-card-specs li {
  font-size: 12px;
  color: #5a6a8a;
  padding: 2px 0;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.product-card-specs li::before {
  content: "•";
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}

.product-card-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.product-card-soldout {
  position: relative;
  opacity: 0.6;
}
.product-card-soldout::after {
  content: "품절";
  position: absolute;
  top: 10px;
  left: 10px;
  background: #888;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 1;
}

.product-subcat-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 4px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(
/* 수량 입력 — 브라우저 기본 스피너(화살표) 제거 (+/- 버튼과 중복) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  appearance: none !important;
  margin: 0;
  display: none;
}
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
