:root {
      --blue: #1463d9;
      --blue-dark: #0b3f91;
      --navy: #0f172a;
      --heading-color: #0f172a;
      --body-color: #475569;
      --body-size: 16px;
      --hero-title-size: 62px;
      --section-title-size: 42px;
      --light: #f8fafc;
      --line: #e2e8f0;
      --white: #ffffff;
      --green: #16a34a;
      --red: #dc2626;
      --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
      --radius: 28px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
      color: var(--heading-color);
      background: #fff;
      font-size: var(--body-size);
    }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font-family: inherit; }
    button { cursor: pointer; }
    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }
    .header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(226,232,240,.9);
    }
    .header-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 12px 0;
      position: relative;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 230px;
    }
    .brand-mark {
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 52px;
    }
    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }
    .brand-title {
      font-weight: 950;
      font-size: 19px;
      letter-spacing: -.02em;
      color: var(--heading-color);
    }
    .brand-sub {
      color: var(--body-color);
      font-size: 12px;
      font-weight: 700;
      margin-top: 2px;
    }
    .nav {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .nav a {
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 850;
      color: var(--body-color);
    }
    .nav a:hover { background: #f1f5f9; color: var(--heading-color); }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: auto;
    }
    .phone-btn {
      background: var(--navy);
      color: #fff;
      padding: 12px 17px;
      border-radius: 999px;
      font-weight: 950;
      font-size: 14px;
      white-space: nowrap;
    }
    .phone-btn:hover { background: var(--blue); }
    .admin-login-top-btn {
      border: 1px solid #cbd5e1;
      background: #ffffff;
      color: #64748b;
      padding: 8px 11px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }
    .admin-login-top-btn:hover {
      border-color: var(--blue);
      color: var(--blue);
      background: color-mix(in srgb, var(--blue), white 94%);
    }
    .mobile-menu-btn {
      display: none;
      border: 1px solid #cbd5e1;
      background: #ffffff;
      color: var(--heading-color);
      padding: 10px 12px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 950;
      white-space: nowrap;
    }
    .mobile-menu {
      display: none;
      border-top: 1px solid rgba(226,232,240,.9);
      background: rgba(255,255,255,.97);
      padding: 10px 14px 14px;
    }
    .mobile-menu.open {
      display: grid;
      gap: 8px;
    }
    .mobile-menu a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px;
      border-radius: 16px;
      background: #f8fafc;
      color: #334155;
      font-weight: 950;
      border: 1px solid #e2e8f0;
    }
    .mobile-menu a:hover,
    .mobile-menu a.mobile-menu-active {
      color: var(--blue);
      border-color: color-mix(in srgb, var(--blue), white 58%);
      background: color-mix(in srgb, var(--blue), white 91%);
      box-shadow: inset 4px 0 0 var(--blue);
    }
    .listing-count {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
      justify-content: center;
      line-height: 1.5;
    }
    body:not(.admin-route) #admin {
      display: none;
    }
    body.admin-route main > section:not(#admin) {
      display: none;
    }
    body.admin-route .footer {
      display: none;
    }
    body.admin-route .nav {
      display: none;
    }
    body.admin-route .admin-login-top-btn,
    body.admin-route .mobile-menu-btn,
    body.admin-route .mobile-menu {
      display: none;
    }

    .hero {
      position: relative;
      overflow: hidden;
      background: radial-gradient(circle at 15% 10%, color-mix(in srgb, var(--blue), transparent 42%), transparent 34%),
                  radial-gradient(circle at 100% 100%, rgba(34,211,238,.36), transparent 34%),
                  var(--navy);
      color: white;
      padding: 82px 0 92px;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 54px;
      align-items: center;
    }
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 15px;
      border: 1px solid rgba(255,255,255,.15);
      background: rgba(255,255,255,.1);
      border-radius: 999px;
      color: #dbeafe;
      font-weight: 850;
      font-size: 14px;
      margin-bottom: 24px;
    }
    .hero h1 {
      font-size: clamp(38px, 6vw, var(--hero-title-size));
      line-height: 1.05;
      letter-spacing: -.05em;
      margin: 0;
      font-weight: 950;
    }
    .hero h1 span { color: #93c5fd; }
    .hero p {
      color: #cbd5e1;
      font-size: calc(var(--body-size) + 2px);
      line-height: 1.8;
      margin: 24px 0 0;
      max-width: 680px;
    }
    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 34px;
    }
    .primary-btn, .secondary-btn {
      border: 0;
      border-radius: 18px;
      padding: 16px 22px;
      font-weight: 950;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .primary-btn {
      background: var(--blue);
      color: white;
      box-shadow: 0 18px 34px color-mix(in srgb, var(--blue), transparent 72%);
    }
    .primary-btn:hover { filter: brightness(.92); }
    .secondary-btn {
      border: 1px solid rgba(255,255,255,.18);
      color: white;
      background: transparent;
    }
    .secondary-btn:hover { background: rgba(255,255,255,.1); }
    .hero-card {
      padding: 20px;
      border-radius: 34px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.1);
      box-shadow: var(--shadow);
    }
    .hero-card-inner {
      background: white;
      color: var(--heading-color);
      border-radius: 26px;
      padding: 18px;
    }

    .section { padding: 86px 0; }
    .section.gray { background: #f8fafc; }
    .section-title {
      max-width: 760px;
      text-align: center;
      margin: 0 auto 44px;
    }
    .eyebrow {
      color: var(--blue);
      text-transform: uppercase;
      letter-spacing: .28em;
      font-weight: 900;
      font-size: 13px;
      margin-bottom: 12px;
    }
    .section-title h2 {
      font-size: clamp(30px, 4vw, var(--section-title-size));
      line-height: 1.15;
      letter-spacing: -.04em;
      margin: 0;
      font-weight: 950;
      color: var(--heading-color);
    }
    .section-title p {
      color: var(--body-color);
      line-height: 1.8;
      font-size: var(--body-size);
      margin: 18px 0 0;
    }

    .about-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 28px;
    }
    .dark-card {
      background: var(--navy);
      color: white;
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow);
    }
    .dark-card p {
      color: #e2e8f0;
      line-height: 1.85;
      font-size: calc(var(--body-size) + 1px);
    }
    .contact-list {
      display: grid;
      gap: 12px;
      margin-top: 26px;
    }
    .contact-item {
      background: rgba(255,255,255,.1);
      border-radius: 18px;
      padding: 15px 16px;
      color: #e2e8f0;
      display: flex;
      gap: 10px;
      align-items: center;
      font-weight: 750;
    }
    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }
    .info-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      background: white;
      box-shadow: 0 8px 30px rgba(15,23,42,.04);
    }
    .info-card h3 {
      font-size: 21px;
      margin: 0 0 12px;
      font-weight: 950;
      color: var(--heading-color);
    }
    .info-card p {
      color: var(--body-color);
      line-height: 1.8;
      margin: 0;
    }
    .wide { grid-column: 1 / -1; }
    .region-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 18px;
    }
    .tag {
      background: color-mix(in srgb, var(--blue), white 90%);
      color: var(--blue-dark);
      border-radius: 999px;
      padding: 9px 13px;
      font-size: 14px;
      font-weight: 900;
    }
    .public-process-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 18px;
    }
    .public-process-grid div {
      background: #f8fafc;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 16px;
      display: grid;
      gap: 6px;
      text-align: center;
    }
    .public-process-grid strong {
      width: 32px;
      height: 32px;
      margin: 0 auto;
      border-radius: 999px;
      background: color-mix(in srgb, var(--blue), white 90%);
      color: var(--blue-dark);
      display: grid;
      place-items: center;
      font-weight: 950;
    }
    .public-process-grid span {
      color: var(--body-color);
      font-size: 14px;
      font-weight: 900;
    }
    .internal-routing-pill {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 7px 11px;
      background: #f8fafc;
      color: #475569;
      border: 1px solid #cbd5e1;
      font-size: 12px;
      font-weight: 950;
      margin-left: 8px;
    }

    .products-grid {
      display: grid;
      grid-template-columns: .82fr 1.38fr;
      gap: 26px;
    }
    .product-list {
      display: grid;
      gap: 12px;
      align-self: start;
      position: sticky;
      top: 98px;
    }
    .product-tab {
      border: 1px solid var(--line);
      background: rgba(255,255,255,.8);
      border-radius: 24px;
      padding: 20px;
      text-align: left;
      transition: .18s;
    }
    .product-tab:hover {
      background: white;
      box-shadow: 0 10px 30px rgba(15,23,42,.08);
      transform: translateY(-1px);
    }
    .product-tab.active {
      border-color: var(--blue);
      background: white;
      box-shadow: 0 18px 40px color-mix(in srgb, var(--blue), transparent 84%);
    }
    .product-category {
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
    }
    .product-name {
      font-size: 24px;
      font-weight: 950;
      margin-top: 4px;
      letter-spacing: -.03em;
      color: var(--heading-color);
    }
    .product-grade {
      color: var(--body-color);
      font-weight: 700;
      margin-top: 7px;
      font-size: 14px;
    }
    .product-detail-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 24px;
    }
    .product-card, .form-card {
      background: white;
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: 0 18px 50px rgba(15,23,42,.08);
      border: 1px solid rgba(226,232,240,.9);
    }
    .equipment-image {
      position: relative;
      height: 255px;
      border-radius: 24px;
      overflow: hidden;
      background: linear-gradient(135deg, #f1f5f9, #fff, color-mix(in srgb, var(--blue), white 82%));
      box-shadow: inset 0 0 28px rgba(15,23,42,.06);
    }
    .equipment-image.compact { height: 210px; border-radius: 24px 24px 0 0; }
    .equipment-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .equipment-badge {
      position: absolute;
      left: 18px;
      top: 18px;
      background: rgba(255,255,255,.9);
      border-radius: 999px;
      padding: 7px 11px;
      color: #475569;
      font-weight: 900;
      font-size: 12px;
      box-shadow: 0 6px 20px rgba(15,23,42,.08);
    }
    .machine-mock {
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 135px;
      height: 178px;
      background: white;
      border: 1px solid #dbe3ef;
      border-radius: 44px 44px 0 0;
      box-shadow: 0 22px 45px rgba(15,23,42,.2);
    }
    .mock-screen {
      width: 94px;
      height: 72px;
      margin: 18px auto 0;
      background: var(--navy);
      border-radius: 15px;
      padding: 7px;
    }
    .mock-screen div {
      width: 100%;
      height: 100%;
      border-radius: 10px;
      background: linear-gradient(135deg, #93c5fd, #ecfeff);
    }
    .mock-panel {
      width: 88px;
      height: 18px;
      margin: 16px auto 0;
      border-radius: 999px;
      background: #e2e8f0;
    }
    .equipment-label {
      position: absolute;
      right: 20px;
      bottom: 18px;
      text-align: right;
    }
    .equipment-label strong {
      display: block;
      font-size: 42px;
      font-weight: 950;
      color: var(--heading-color);
    }
    .equipment-label span {
      color: var(--body-color);
      font-weight: 800;
      font-size: 12px;
    }
    .detail-title {
      font-size: 32px;
      margin: 18px 0 12px;
      font-weight: 950;
      letter-spacing: -.04em;
      color: var(--heading-color);
    }
    .detail-summary {
      color: var(--body-color);
      line-height: 1.85;
      margin: 0;
    }
    .feature-box {
      background: #f8fafc;
      border-radius: 22px;
      padding: 20px;
      margin-top: 20px;
    }
    .feature-box h4, .recommend-box h4 {
      margin: 0 0 12px;
      font-weight: 950;
    }
    .features {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .features li {
      display: flex;
      gap: 10px;
      line-height: 1.6;
      color: var(--body-color);
      font-weight: 650;
    }
    .check { color: var(--blue); font-weight: 950; }
    .recommend-box {
      background: color-mix(in srgb, var(--blue), white 90%);
      border: 1px solid color-mix(in srgb, var(--blue), white 82%);
      border-radius: 22px;
      padding: 20px;
      margin-top: 16px;
      color: var(--blue-dark);
    }
    .recommend-box p { margin: 0; line-height: 1.7; font-weight: 750; }

    .form-card h3 {
      font-size: 22px;
      margin: 0 0 7px;
      font-weight: 950;
    }
    .form-card .help {
      margin: 0 0 18px;
      color: var(--body-color);
      font-size: 14px;
      line-height: 1.6;
    }
    .field { display: block; margin-top: 14px; }
    .field span {
      display: block;
      margin-bottom: 7px;
      font-size: 14px;
      font-weight: 900;
      color: #334155;
    }
    input, textarea, select {
      width: 100%;
      border: 1px solid #cbd5e1;
      border-radius: 16px;
      padding: 13px 15px;
      outline: none;
      font-size: 15px;
      background: white;
    }
    input[type="color"] {
      height: 48px;
      padding: 4px;
      cursor: pointer;
    }
    textarea { resize: vertical; min-height: 100px; }
    input:focus, textarea:focus, select:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue), transparent 88%);
    }
    .submit-btn {
      width: 100%;
      border: 0;
      margin-top: 18px;
      background: var(--blue);
      color: white;
      border-radius: 17px;
      padding: 16px;
      font-weight: 950;
      font-size: 16px;
      box-shadow: 0 12px 24px color-mix(in srgb, var(--blue), transparent 78%);
    }
    .submit-btn:hover { filter: brightness(.92); }
    .submit-btn.secondary {
      background: #f1f5f9;
      color: #334155;
      box-shadow: none;
    }
    .submit-btn.danger {
      background: var(--red);
      box-shadow: none;
    }

    .toolbar {
      display: flex;
      gap: 14px;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }
    .search-wrap {
      position: relative;
      width: min(420px, 100%);
    }
    .search-wrap input { padding-left: 44px; }
    .search-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: #94a3b8;
      font-weight: 900;
    }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 28px;
    }
    .pagination button {
      min-width: 38px;
      height: 38px;
      border: 1px solid var(--line);
      background: #ffffff;
      color: #475569;
      border-radius: 999px;
      font-weight: 950;
      padding: 0 12px;
      transition: .16s;
    }
    .pagination button:hover {
      border-color: var(--blue);
      color: var(--blue);
      background: color-mix(in srgb, var(--blue), white 94%);
    }
    .pagination button.active {
      border-color: var(--blue);
      background: var(--blue);
      color: #ffffff;
    }
    .pagination button:disabled {
      cursor: not-allowed;
      opacity: .42;
      background: #f8fafc;
      color: #94a3b8;
      border-color: var(--line);
    }
    .pagination .page-info {
      color: #64748b;
      font-size: 13px;
      font-weight: 850;
      padding: 0 6px;
    }
    .product-card-button {
      padding: 0;
      border: 1px solid var(--line);
      background: white;
      border-radius: var(--radius);
      overflow: hidden;
      text-align: left;
      transition: .18s;
      box-shadow: 0 8px 28px rgba(15,23,42,.05);
    }
    .product-card-button:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 45px rgba(15,23,42,.12);
      border-color: color-mix(in srgb, var(--blue), white 45%);
    }
    .product-card-body {
      padding: 22px;
    }
    .product-card-title {
      font-size: 22px;
      font-weight: 950;
      margin: 6px 0 8px;
      letter-spacing: -.03em;
      color: var(--heading-color);
    }
    .product-card-button:hover .product-card-title {
      color: var(--blue);
    }
    .product-card-desc {
      color: var(--body-color);
      line-height: 1.65;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .product-modal-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 24px;
      align-items: start;
    }
    .product-modal-form {
      position: sticky;
      top: 0;
      box-shadow: none;
    }
    .used-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .used-card {
      padding: 0;
      border: 1px solid var(--line);
      background: white;
      border-radius: var(--radius);
      overflow: hidden;
      text-align: left;
      transition: .18s;
      box-shadow: 0 8px 28px rgba(15,23,42,.05);
    }
    .used-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 45px rgba(15,23,42,.12);
    }
    .used-body { padding: 22px; }
    .used-meta {
      color: var(--blue);
      font-weight: 900;
      font-size: 13px;
    }
    .used-title {
      font-size: 20px;
      font-weight: 950;
      margin: 6px 0 9px;
      letter-spacing: -.03em;
      color: var(--heading-color);
    }
    .used-card:hover .used-title { color: var(--blue); }
    .used-desc {
      color: var(--body-color);
      line-height: 1.65;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .view-detail {
      margin-top: 16px;
      color: var(--blue);
      font-weight: 950;
      font-size: 14px;
    }
    .product-card-actions {
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px;
      margin-top: 16px;
    }
    .card-action-btn {
      border: 1px solid var(--line);
      background: #ffffff;
      color: var(--blue);
      border-radius: 14px;
      padding: 11px 10px;
      font-size: 13px;
      font-weight: 950;
      transition: .16s;
    }
    .card-action-btn:hover {
      border-color: var(--blue);
      background: color-mix(in srgb, var(--blue), white 94%);
    }
    .card-action-btn.primary {
      border-color: var(--blue);
      background: var(--blue);
      color: #ffffff;
    }
    .card-action-btn.primary:hover {
      filter: brightness(.94);
    }
    .status-badge {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 950;
      line-height: 1;
    }
    .status-available {
      background: #ecfdf5;
      color: #047857;
    }
    .status-reserved {
      background: #fff7ed;
      color: #c2410c;
    }
    .status-sold {
      background: #f1f5f9;
      color: #64748b;
    }
    .status-incoming {
      background: #eff6ff;
      color: #1d4ed8;
    }
    .status-checking {
      background: #fefce8;
      color: #a16207;
    }
    .request-status-select {
      margin-top: 10px;
      border-radius: 14px;
      padding: 10px 12px;
      font-weight: 850;
    }
    .request-status-row {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 10px;
    }
    .request-status-row .request-status-select {
      margin-top: 0;
      min-width: 190px;
    }
    .request-status {
      border: 1px solid transparent;
      font-size: 12px;
      padding: 7px 11px;
    }
    .request-status-new { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
    .request-status-contacted { background: #ecfdf5; color: #047857; border-color: #bbf7d0; }
    .request-status-scheduling { background: #fff7ed; color: #c2410c; border-color: #fed7aa; }
    .request-status-demo { background: #f5f3ff; color: #6d28d9; border-color: #ddd6fe; }
    .request-status-contract { background: #e0f2fe; color: #075985; border-color: #bae6fd; }
    .request-status-done { background: #f1f5f9; color: #475569; border-color: #cbd5e1; }
    .request-status-archived { background: #f8fafc; color: #64748b; border-color: #e2e8f0; }
    .success-check {
      width: 62px;
      height: 62px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: color-mix(in srgb, var(--blue), white 88%);
      color: var(--blue);
      font-size: 34px;
      font-weight: 950;
      margin-bottom: 18px;
    }


    .certified-used-showcase {
      margin: 0 0 34px;
      border: 1px solid rgba(20, 99, 217, .16);
      border-radius: 32px;
      overflow: hidden;
      background: linear-gradient(135deg, #ffffff 0%, #f8fbff 52%, color-mix(in srgb, var(--blue), white 92%) 100%);
      box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
    }
    .certified-used-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 0;
      align-items: stretch;
    }
    .certified-used-copy {
      padding: 34px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .certified-used-kicker {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 8px;
      color: var(--blue);
      background: color-mix(in srgb, var(--blue), white 91%);
      border: 1px solid color-mix(in srgb, var(--blue), white 82%);
      border-radius: 999px;
      padding: 8px 12px;
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .certified-used-copy h3 {
      margin: 0;
      color: var(--heading-color);
      font-size: clamp(26px, 3vw, 38px);
      line-height: 1.16;
      letter-spacing: -.04em;
      font-weight: 950;
    }
    .certified-used-copy p {
      margin: 16px 0 0;
      color: var(--body-color);
      font-size: var(--body-size);
      line-height: 1.82;
      word-break: keep-all;
    }
    .certified-used-points {
      display: grid;
      gap: 10px;
      margin-top: 22px;
    }
    .certified-used-point {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: #334155;
      font-weight: 850;
      line-height: 1.55;
    }
    .certified-used-point span:first-child {
      display: inline-grid;
      place-items: center;
      flex: 0 0 24px;
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: var(--blue);
      color: white;
      font-size: 12px;
      font-weight: 950;
    }
    .certified-media-panel {
      position: relative;
      min-height: 380px;
      background: #0f172a;
      display: flex;
      flex-direction: column;
    }
    .certified-media-stage {
      position: relative;
      flex: 1;
      min-height: 330px;
      overflow: hidden;
      background: radial-gradient(circle at 20% 15%, rgba(147,197,253,.28), transparent 34%), #0f172a;
    }
    .certified-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity .24s ease;
      display: grid;
      place-items: center;
      background: #0f172a;
    }
    .certified-slide.active {
      opacity: 1;
      pointer-events: auto;
    }
    .certified-slide img,
    .certified-slide video,
    .certified-slide iframe {
      width: 100%;
      height: 100%;
      border: 0;
      object-fit: contain;
      display: block;
      background: #0f172a;
    }
    .certified-slide-caption {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: white;
      background: rgba(15, 23, 42, .76);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 18px;
      padding: 12px 14px;
      font-weight: 900;
      line-height: 1.4;
    }
    .certified-slide-caption small {
      color: #cbd5e1;
      font-weight: 850;
      white-space: nowrap;
    }
    .certified-media-placeholder {
      min-height: 330px;
      display: grid;
      place-items: center;
      color: white;
      text-align: center;
      padding: 28px;
    }
    .certified-media-placeholder strong {
      display: block;
      font-size: 28px;
      font-weight: 950;
      letter-spacing: -.03em;
    }
    .certified-media-placeholder span {
      display: block;
      color: #cbd5e1;
      line-height: 1.7;
      margin-top: 10px;
      font-weight: 750;
    }
    .certified-media-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 16px;
      background: rgba(15, 23, 42, .98);
      border-top: 1px solid rgba(255,255,255,.1);
    }
    .certified-media-controls button {
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.08);
      color: #ffffff;
      border-radius: 999px;
      padding: 10px 14px;
      font-weight: 950;
    }
    .certified-media-controls button:disabled {
      opacity: .38;
      cursor: not-allowed;
    }
    .certified-media-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      flex: 1;
    }
    .certified-media-dots button {
      width: 9px;
      height: 9px;
      min-width: 0;
      padding: 0;
      border-radius: 999px;
      border: 0;
      background: rgba(255,255,255,.36);
    }
    .certified-media-dots button.active {
      width: 26px;
      background: #ffffff;
    }
    .used-list-heading {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 18px;
      margin: 4px 0 18px;
      padding-top: 8px;
    }
    .used-list-heading h3 {
      margin: 4px 0 0;
      color: var(--heading-color);
      font-size: 28px;
      letter-spacing: -.035em;
      font-weight: 950;
    }
    .used-list-heading p {
      margin: 6px 0 0;
      color: var(--body-color);
      line-height: 1.65;
      font-weight: 750;
    }
    .eyebrow.mini {
      font-size: 11px;
      letter-spacing: .22em;
      margin-bottom: 0;
      text-align: left;
    }
    .certified-used-admin-card {
      grid-column: 1 / -1;
      border: 1px solid var(--line);
      background: #f8fafc;
      border-radius: 24px;
      padding: 22px;
      margin-top: 2px;
    }
    .certified-used-admin-card h4 {
      margin: 0 0 12px;
      font-size: 19px;
      font-weight: 950;
      color: var(--heading-color);
    }
    .certified-used-admin-points textarea {
      min-height: 82px;
    }
    .certified-used-admin-list {
      display: grid;
      gap: 10px;
      margin-top: 14px;
    }
    .certified-used-admin-item {
      display: grid;
      grid-template-columns: 74px 1fr auto;
      gap: 12px;
      align-items: center;
      border: 1px solid #e2e8f0;
      background: #ffffff;
      border-radius: 16px;
      padding: 10px;
      color: #0f172a;
    }
    .certified-used-admin-thumb {
      width: 74px;
      height: 52px;
      border-radius: 12px;
      overflow: hidden;
      background: #0f172a;
      color: #ffffff;
      display: grid;
      place-items: center;
      font-size: 12px;
      font-weight: 950;
    }
    .certified-used-admin-thumb img,
    .certified-used-admin-thumb video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .certified-used-admin-meta strong {
      display: block;
      font-size: 14px;
      font-weight: 950;
      color: #0f172a;
    }
    .certified-used-admin-meta span {
      display: block;
      margin-top: 3px;
      color: #64748b;
      font-size: 12px;
      font-weight: 800;
      line-height: 1.35;
      word-break: break-all;
    }
    .certified-used-admin-actions {
      display: flex;
      gap: 6px;
      align-items: center;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .certified-used-admin-actions button {
      border: 1px solid #e2e8f0;
      background: #ffffff;
      color: #334155;
      border-radius: 999px;
      padding: 8px 10px;
      font-size: 12px;
      font-weight: 950;
    }
    .certified-used-admin-actions button:hover {
      border-color: var(--blue);
      color: var(--blue);
      background: color-mix(in srgb, var(--blue), white 94%);
    }
    .certified-used-admin-actions button.danger:hover {
      border-color: #fecaca;
      color: #dc2626;
      background: #fff7f7;
    }

    .cta {
      background: var(--blue);
      color: white;
      padding: 58px 0;
    }
    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .cta h2 {
      margin: 0;
      font-size: clamp(27px, 4vw, 38px);
      font-weight: 950;
      letter-spacing: -.04em;
    }
    .cta p { color: #dbeafe; margin: 12px 0 0; }
    .cta .white-btn {
      background: white;
      color: var(--blue);
      border-radius: 18px;
      padding: 16px 22px;
      font-weight: 950;
      white-space: nowrap;
    }

    .admin {
      background: var(--navy);
      color: white;
      padding: 86px 0;
    }
    .login-card {
      width: min(560px, 100%);
      margin: 0 auto;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow);
    }
    .login-card h2, .admin h2 {
      margin: 0;
      font-size: 32px;
      font-weight: 950;
      letter-spacing: -.04em;
    }
    .login-card p { color: #cbd5e1; line-height: 1.65; }
    .login-card input, .admin input, .admin textarea, .admin select {
      border-color: rgba(255,255,255,.12);
    }
    .admin-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 24px;
      align-items: start;
    }
    .admin-wide-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: start;
    }
    .admin-card {
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      border-radius: var(--radius);
      padding: 24px;
      margin-top: 20px;
    }
    .admin-card h3 {
      margin: 0 0 14px;
      font-size: 22px;
      font-weight: 950;
    }
    .admin-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 22px;
    }
    .logout {
      background: transparent;
      color: #e2e8f0;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 16px;
      padding: 12px 16px;
      font-weight: 900;
    }
    .logout:hover { background: rgba(255,255,255,.1); }
    .request-card {
      background: white;
      color: #0f172a;
      border-radius: 20px;
      padding: 18px;
      margin-top: 12px;
    }
    .request-card h4 { margin: 4px 0 12px; font-size: 19px; }
    .request-card dl { margin: 0; color: #475569; line-height: 1.8; font-size: 14px; }
    .request-top {
      display: flex;
      justify-content: space-between;
      gap: 12px;
    }
    .delete-btn {
      background: #f8fafc;
      color: #64748b;
      border: 0;
      border-radius: 12px;
      padding: 8px 10px;
      font-weight: 900;
    }
    .delete-btn:hover { background: #fee2e2; color: var(--red); }
    .delete-btn.danger {
      background: #fff7f7;
      color: #dc2626;
      border: 1px solid rgba(239, 68, 68, .32);
    }
    .delete-btn.danger:hover {
      background: #fee2e2;
      color: #b91c1c;
    }
    .admin-section-gap { margin-top: 24px; }
    .admin-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .admin label span, .admin .admin-label {
      color: #cbd5e1;
      font-weight: 900;
      font-size: 14px;
      display: block;
      margin: 8px 0 6px;
    }
    .preview-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 18px;
      background: white;
      display: block;
      margin-bottom: 10px;
    }
    .notice {
      color: #94a3b8;
      font-size: 12px;
      line-height: 1.6;
      margin-top: 12px;
    }
    .admin-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 20px 0 8px;
    }
    .admin-tab {
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color: #cbd5e1;
      padding: 11px 14px;
      border-radius: 999px;
      font-weight: 900;
    }
    .admin-tab.active {
      background: white;
      color: var(--navy);
    }
    .admin-panel { display: none; }
    .admin-panel.active { display: block; }
    .hint-box {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 18px;
      padding: 14px;
      color: #cbd5e1;
      line-height: 1.65;
      font-size: 13px;
      margin-bottom: 14px;
    }
    .privacy-consent {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 14px 16px;
      border: 1px solid var(--line);
      background: #f8fafc;
      border-radius: 16px;
      color: #475569;
      font-size: 14px;
      line-height: 1.55;
      font-weight: 800;
    }
    .privacy-consent input {
      width: 18px;
      height: 18px;
      margin-top: 2px;
      accent-color: var(--blue);
      flex: 0 0 auto;
    }
    .text-link-btn {
      border: 0;
      background: transparent;
      color: var(--blue);
      font-weight: 950;
      padding: 0;
      margin-left: 4px;
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .floating-actions {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 850;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: flex-end;
    }
    .floating-action {
      min-width: 132px;
      border: 0;
      border-radius: 999px;
      box-shadow: 0 16px 38px rgba(15, 23, 42, .22);
      padding: 14px 18px;
      font-size: 14px;
      font-weight: 950;
      text-align: center;
      text-decoration: none;
      transition: transform .16s, filter .16s;
    }
    .floating-action:hover {
      transform: translateY(-2px);
      text-decoration: none;
    }
    .floating-action.phone {
      background: #0f172a;
      color: #ffffff;
    }
    .floating-action.demo {
      background: var(--blue);
      color: #ffffff;
    }
    body.admin-route .floating-actions {
      display: none;
    }
    body.modal-open .floating-actions {
      display: none;
    }
    body.form-focus .floating-actions {
      transition: transform .18s ease;
    }

    .back-to-top-btn {
      display: none;
      position: fixed;
      right: 18px;
      bottom: 132px;
      z-index: 860;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(203, 213, 225, .9);
      border-radius: 999px;
      background: #ffffff;
      color: #0f172a;
      box-shadow: 0 14px 32px rgba(15, 23, 42, .20);
      font-size: 22px;
      font-weight: 950;
      line-height: 1;
    }
    .back-to-top-btn.visible {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    body.admin-route .back-to-top-btn {
      display: none !important;
    }
    .mobile-modal-actions {
      display: none;
    }
    .mobile-modal-action {
      border: 0;
      border-radius: 16px;
      padding: 15px 12px;
      font-size: 15px;
      font-weight: 950;
      text-align: center;
      text-decoration: none;
    }
    .mobile-modal-action.phone {
      background: #0f172a;
      color: #ffffff;
    }
    .mobile-modal-action.demo {
      background: var(--blue);
      color: #ffffff;
    }
    .admin-download-row {
      margin: 12px 0 14px;
    }
    .admin-download-row .submit-btn {
      width: auto;
      flex: 0 0 auto;
      padding: 12px 16px;
      font-size: 13px;
    }
    .request-list-toolbar {
      display: grid;
      grid-template-columns: 1fr 150px 150px 150px 150px 145px;
      gap: 10px;
      margin: 14px 0 10px;
    }
    .inline-check-filter {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #475569;
      font-size: 13px;
      font-weight: 900;
      white-space: nowrap;
    }
    .inline-check-filter input,
    .admin-checkbox-filter input {
      width: 16px;
      height: 16px;
      accent-color: var(--blue);
    }
    .admin-checkbox-filter {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      border: 1px solid rgba(148, 163, 184, .25);
      border-radius: 14px;
      color: #dbeafe;
      font-size: 13px;
      font-weight: 900;
      padding: 0 12px;
      white-space: nowrap;
    }
    .used-card.sold-card,
    .request-card.archived-request-card {
      opacity: .62;
    }
    .request-summary-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
      margin-top: 12px;
    }
    .request-summary-pill {
      border: 1px solid rgba(96, 165, 250, .55);
      background: #ffffff;
      border-radius: 14px;
      padding: 10px 12px;
      color: #0f172a;
      font-size: 13px;
      font-weight: 950;
      line-height: 1.45;
      box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
    }
    .request-summary-pill strong {
      display: block;
      color: #1d4ed8;
      font-size: 11px;
      margin-bottom: 3px;
      letter-spacing: -.01em;
    }
    .request-detail-panel {
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid rgba(148, 163, 184, .22);
    }
    .request-detail-panel[hidden] {
      display: none;
    }
    .request-admin-memo {
      margin-top: 14px;
      display: grid;
      gap: 8px;
    }
    .request-admin-memo span {
      color: #bfdbfe;
      font-size: 13px;
      font-weight: 950;
    }
    .request-admin-memo textarea {
      min-height: 90px;
      resize: vertical;
    }
    .request-history-box,
    .request-notify-box {
      grid-column: 1 / -1;
      margin-top: 12px;
      border: 1px solid rgba(148, 163, 184, .22);
      background: rgba(15, 23, 42, .20);
      border-radius: 18px;
      padding: 14px;
    }
    .request-history-box h5,
    .request-notify-box h5 {
      margin: 0 0 8px;
      color: #f8fafc;
      font-size: 13px;
      font-weight: 950;
    }
    .request-notify-box p {
      margin: 0;
      color: #cbd5e1;
      font-size: 12px;
      line-height: 1.65;
      font-weight: 750;
    }
    .request-history-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 7px;
    }
    .request-history-list li {
      display: grid;
      gap: 2px;
      padding: 9px 10px;
      border-radius: 12px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.08);
    }
    .request-history-list strong {
      color: #e0f2fe;
      font-size: 12px;
    }
    .request-history-list span {
      color: #cbd5e1;
      font-size: 11px;
      font-weight: 750;
    }
    .request-card-actions {
      display: flex;
      gap: 6px;
      align-items: flex-start;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .regional-rep-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin: 14px 0 16px;
      align-items: start;
    }
    .regional-rep-card {
      border: 1px solid rgba(148, 163, 184, .25);
      background: rgba(15, 23, 42, .18);
      border-radius: 18px;
      padding: 14px;
    }
    .regional-rep-region {
      color: #bfdbfe;
      font-weight: 950;
      margin-bottom: 10px;
    }
    .regional-reps-wide-wrap {
      grid-template-columns: 1fr;
    }
    .regional-reps-wide-card {
      width: 100%;
      max-width: none;
    }
    .regional-rep-grid {
      display: grid;
      grid-template-columns: minmax(100px, .75fr) minmax(125px, .85fr) minmax(155px, 1.1fr);
      gap: 10px;
      align-items: end;
    }
    .regional-rep-grid label:last-child {
      grid-column: auto;
    }
    .regional-rep-toolbar {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      align-items: stretch;
    }
    .regional-rep-toolbar .submit-btn,
    .regional-rep-toolbar .upload-label {
      width: 100%;
      min-width: 0;
      justify-content: center;
      text-align: center;
      margin-top: 0;
    }
    .popup-manage-toolbar {
      display: grid;
      grid-template-columns: minmax(360px, 1fr) auto;
      gap: 12px;
      align-items: end;
      margin: 12px 0 18px;
    }
    .popup-select-wrap {
      width: 100%;
      min-width: 0;
    }
    .popup-action-row {
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: flex-start;
      flex-wrap: wrap;
    }
    .popup-action-row .submit-btn {
      width: auto;
      min-width: 0;
      height: 46px;
      margin-top: 0;
      justify-content: center;
      text-align: center;
      padding: 12px 18px;
      font-size: 13px;
      white-space: nowrap;
    }
    #popupPanel .admin-form-grid {
      grid-template-columns: minmax(120px, .75fr) minmax(100px, .55fr) minmax(130px, .8fr) minmax(260px, 1.55fr) minmax(150px, .9fr);
      gap: 14px;
      align-items: end;
    }
    #popupPanel .admin-form-grid .wide {
      grid-column: 1 / -1;
    }
    #popupPanel .admin-wide-grid {
      grid-template-columns: 1fr;
    }
    #popupPanel .admin-card {
      max-width: none;
      width: 100%;
    }
    #popupPanel .image-preview {
      max-width: none;
    }
    #popupPanel .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      justify-content: flex-start;
    }
    #popupPanel .button-row .submit-btn {
      width: auto;
      min-width: 0;
      justify-content: center;
      text-align: center;
      white-space: nowrap;
      padding-left: 18px;
      padding-right: 18px;
    }
    .popup-image-help {
      display: grid;
      gap: 6px;
      color: #64748b;
      font-weight: 850;
    }
    .popup-image-help span {
      color: #0f172a;
      font-weight: 950;
      font-size: 13px;
    }
    .popup-image-help small {
      color: #64748b;
      font-weight: 800;
      line-height: 1.5;
    }
    .admin-list-toolbar {
      display: grid;
      grid-template-columns: 1fr 150px;
      gap: 10px;
      margin: 14px 0 10px;
    }
    .admin-list-count {
      color: #cbd5e1;
      font-size: 13px;
      font-weight: 850;
      margin: 8px 0 12px;
    }
    .admin-pagination {
      margin-top: 16px;
    }
    .admin-pagination button {
      min-width: 34px;
      height: 34px;
      font-size: 12px;
    }
    .request-card.compact-admin-card {
      padding: 14px;
      margin-top: 10px;
    }
    .request-card.compact-admin-card h4 {
      margin-bottom: 8px;
      font-size: 17px;
    }
    .request-card.compact-admin-card dl {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 12px;
      row-gap: 2px;
    }
    .button-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 14px;
    }
    .button-row .submit-btn {
      margin-top: 0;
      flex: 1;
      min-width: 150px;
    }
    .upload-label {
      margin-top: 10px;
      border: 1px dashed #cbd5e1;
      border-radius: 14px;
      padding: 12px;
      display: flex;
      justify-content: center;
      gap: 8px;
      color: #475569;
      font-weight: 950;
      font-size: 14px;
      cursor: pointer;
      background: white;
    }
    .upload-label:hover {
      background: #eff6ff;
      color: var(--blue);
      border-color: var(--blue);
    }
    .hidden-file { display: none; }

    .footer {
      background: var(--navy);
      color: #94a3b8;
      padding: 34px 0;
      font-size: 13px;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 22px;
      align-items: center;
    }
    .privacy-link {
      background: none;
      border: 0;
      color: #64748b;
      text-decoration: underline;
      font-size: 12px;
      padding: 0;
    }
    .privacy-link:hover { color: #cbd5e1; }

    .modal-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 50;
      background: rgba(15,23,42,.72);
      backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .modal-backdrop.open { display: flex; }
    #privacyModal {
      z-index: 1400;
    }
    body.modal-open {
      overflow: hidden;
    }
    .modal {
      width: min(900px, 100%);
      max-height: 88vh;
      background: white;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 25px 80px rgba(0,0,0,.32);
    }
    .modal.large { width: min(1040px, 100%); }
    .modal-head {
      padding: 20px 24px;
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .modal-head h3 {
      margin: 0;
      font-size: 24px;
      font-weight: 950;
      letter-spacing: -.03em;
    }
    .close-btn {
      border: 0;
      background: #f1f5f9;
      border-radius: 999px;
      width: 38px;
      height: 38px;
      font-size: 22px;
      line-height: 1;
    }
    .close-btn:hover { background: #e2e8f0; }
    .modal-body {
      padding: 24px;
      overflow: auto;
      max-height: 74vh;
    }
    .privacy-text {
      white-space: pre-line;
      color: #475569;
      line-height: 1.85;
      font-size: 14px;
    }
    .used-detail-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 24px;
    }
    .spec-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-bottom: 16px;
    }
    .spec {
      background: #f8fafc;
      border-radius: 17px;
      padding: 14px;
    }
    .spec dt { font-weight: 950; }
    .spec dd { margin: 6px 0 0; color: #64748b; font-weight: 700; }
    .spec.full { grid-column: 1 / -1; }
    .plain-box {
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 18px;
      margin-top: 14px;
    }
    .plain-box.blue {
      background: color-mix(in srgb, var(--blue), white 90%);
      border-color: color-mix(in srgb, var(--blue), white 80%);
      color: var(--blue-dark);
    }
    .plain-box h4 { margin: 0 0 10px; font-size: 18px; font-weight: 950; }
    .plain-box p { color: #64748b; line-height: 1.8; margin: 0; }
    .plain-box.blue p { color: var(--blue-dark); }
    .toast {
      display: none;
      position: fixed;
      left: 50%;
      top: 18px;
      transform: translateX(-50%);
      z-index: 80;
      background: #0f172a;
      color: white;
      padding: 13px 17px;
      border-radius: 16px;
      box-shadow: 0 15px 40px rgba(0,0,0,.2);
      font-weight: 900;
    }
    .toast.show { display: block; }

    .site-notice-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1200;
      background: rgba(15, 23, 42, .56);
      padding: 24px;
      align-items: center;
      justify-content: center;
      overflow: auto;
    }
    .site-notice-backdrop.open {
      display: flex;
    }
    .site-notice-shell {
      width: min(1120px, 100%);
      max-height: min(88dvh, 820px);
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .site-notice-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: #ffffff;
      font-weight: 950;
      padding: 0 4px;
    }
    .site-notice-topbar strong {
      font-size: 18px;
      letter-spacing: -.02em;
    }
    .site-notice-close-all {
      border: 1px solid rgba(255,255,255,.35);
      background: rgba(255,255,255,.14);
      color: #ffffff;
      border-radius: 999px;
      padding: 10px 14px;
      font-weight: 950;
    }
    .site-notice-close-all:hover {
      background: rgba(255,255,255,.24);
    }
    .site-notice-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 360px));
      justify-content: center;
      align-items: start;
      gap: 18px;
      overflow: auto;
      padding: 2px 2px 8px;
    }
    .site-notice-modal {
      position: relative;
      width: 100%;
      min-width: 0;
      max-width: 360px;
      max-height: 78dvh;
      overflow: auto;
      background: #ffffff;
      border-radius: 30px;
      box-shadow: 0 28px 80px rgba(15, 23, 42, .30);
      border: 1px solid rgba(226, 232, 240, .95);
    }
    .site-notice-close {
      position: absolute;
      right: 14px;
      top: 14px;
      z-index: 2;
      width: 40px;
      height: 40px;
      border: 0;
      border-radius: 999px;
      background: rgba(15, 23, 42, .72);
      color: #ffffff;
      font-size: 24px;
      font-weight: 900;
      line-height: 1;
    }
    .site-notice-image-wrap {
      width: 100%;
      max-height: 230px;
      overflow: hidden;
      background: #f1f5f9;
      border-radius: 30px 30px 0 0;
    }
    .site-notice-image-wrap img {
      width: 100%;
      display: block;
      object-fit: cover;
      max-height: 230px;
    }
    .site-notice-body {
      padding: 28px;
    }
    .site-notice-label {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 7px 11px;
      background: color-mix(in srgb, var(--blue), white 89%);
      color: var(--blue-dark);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .05em;
      margin-bottom: 12px;
    }
    .site-notice-body h3 {
      margin: 0;
      color: var(--heading-color);
      font-size: 26px;
      line-height: 1.25;
      letter-spacing: -.04em;
      font-weight: 950;
    }
    .site-notice-body p {
      margin: 14px 0 0;
      color: var(--body-color);
      line-height: 1.75;
      white-space: pre-line;
      font-weight: 700;
    }
    .site-notice-actions {
      margin-top: 20px;
    }
    .site-notice-actions a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      border-radius: 18px;
      padding: 15px 18px;
      background: var(--blue);
      color: #ffffff;
      font-weight: 950;
    }
    .site-notice-today {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      color: #64748b;
      font-size: 13px;
      font-weight: 850;
    }
    .site-notice-today input {
      width: 16px;
      height: 16px;
    }
    body.admin-route .site-notice-backdrop {
      display: none !important;
    }
    .image-preview {
      margin-top: 12px;
      border: 1px dashed #cbd5e1;
      border-radius: 18px;
      min-height: 92px;
      display: grid;
      place-items: center;
      color: #64748b;
      font-weight: 850;
      background: #f8fafc;
      overflow: hidden;
    }
    .image-preview img {
      width: 100%;
      max-height: 220px;
      object-fit: cover;
      display: block;
    }
    .image-preview.empty {
      padding: 20px;
    }
    #popupSelect {
      width: 100%;
      margin-top: 8px;
    }
    .empty {
      border: 1px dashed rgba(255,255,255,.2);
      border-radius: 20px;
      padding: 30px;
      text-align: center;
      color: #94a3b8;
    }
    .login-error {
      display: none;
      color: #fecaca;
      font-size: 13px;
      font-weight: 800;
      margin-top: 10px;
    }
    .login-error.show { display: block; }



    /* PC first improvement pack: conversion, admin safety, popup schedule */
    .quick-region-card {
      margin-top: 22px;
      border: 1px solid color-mix(in srgb, var(--blue), white 78%);
      background: linear-gradient(135deg, color-mix(in srgb, var(--blue), white 93%), #ffffff);
      border-radius: 22px;
      padding: 20px;
    }
    .quick-region-card h4,
    .demo-fast-box strong,
    .selected-rep-box strong,
    .admin-storage-alert strong,
    .admin-summary-card strong,
    .used-status-guide strong {
      font-weight: 950;
      color: var(--heading-color);
    }
    .quick-region-card h4 { margin: 0 0 8px; font-size: 18px; }
    .quick-region-card p { margin: 0 0 12px; color: var(--body-color); line-height: 1.7; }
    .region-check-row {
      display: grid;
      grid-template-columns: minmax(220px, 1fr) auto;
      gap: 10px;
      align-items: center;
    }
    .region-check-result {
      margin-top: 12px;
      border-radius: 16px;
      padding: 13px 15px;
      background: #f8fafc;
      border: 1px solid var(--line);
      color: #475569;
      line-height: 1.65;
      font-weight: 750;
    }
    .region-check-result.is-active {
      background: color-mix(in srgb, var(--blue), white 92%);
      border-color: color-mix(in srgb, var(--blue), white 72%);
      color: var(--blue-dark);
    }
    .demo-fast-box,
    .selected-rep-box,
    .success-next-steps,
    .used-status-guide {
      border: 1px solid var(--line);
      background: #f8fafc;
      border-radius: 18px;
      padding: 15px;
      margin-top: 14px;
      color: #475569;
      line-height: 1.65;
    }
    .selected-rep-box.is-active {
      border-color: color-mix(in srgb, var(--blue), white 68%);
      background: color-mix(in srgb, var(--blue), white 92%);
      color: var(--blue-dark);
    }
    .demo-fast-box p { margin: 5px 0 12px; color: #64748b; font-size: 13px; line-height: 1.6; }
    .quick-purpose-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }
    .quick-purpose-btn {
      border: 1px solid #cbd5e1;
      background: white;
      color: #334155;
      border-radius: 14px;
      padding: 11px 10px;
      font-size: 13px;
      font-weight: 950;
    }
    .quick-purpose-btn:hover,
    .quick-purpose-btn.active {
      border-color: var(--blue);
      color: var(--blue);
      background: color-mix(in srgb, var(--blue), white 94%);
    }
    .success-next-steps {
      background: color-mix(in srgb, var(--blue), white 93%);
      border-color: color-mix(in srgb, var(--blue), white 78%);
      color: var(--blue-dark);
      margin-top: 18px;
    }
    .success-next-steps ul { margin: 8px 0 0; padding-left: 18px; }
    .success-next-steps li { margin: 4px 0; }
    .equipment-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 24px;
      background: linear-gradient(135deg, #f8fafc, #ffffff, color-mix(in srgb, var(--blue), white 86%));
    }
    .equipment-placeholder .placeholder-brand {
      font-size: 14px;
      font-weight: 950;
      letter-spacing: .2em;
      color: var(--blue);
      margin-bottom: 10px;
    }
    .equipment-placeholder .placeholder-model {
      font-size: clamp(26px, 4vw, 38px);
      font-weight: 950;
      color: var(--heading-color);
      letter-spacing: -.04em;
      line-height: 1.1;
    }
    .equipment-placeholder .placeholder-note {
      margin-top: 9px;
      color: #64748b;
      font-size: 12px;
      font-weight: 900;
    }
    .admin-storage-alert {
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.07);
      color: #cbd5e1;
      border-radius: 22px;
      padding: 18px;
      margin: 0 0 18px;
      line-height: 1.7;
    }
    .admin-storage-alert.dirty {
      border-color: rgba(251, 191, 36, .55);
      background: rgba(251, 191, 36, .12);
      color: #fde68a;
    }
    .admin-storage-alert strong { color: #ffffff; display: block; margin-bottom: 5px; }
    .admin-storage-alert .storage-meta { color: inherit; opacity: .92; font-size: 13px; font-weight: 850; }
    .admin-summary-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 20px;
    }
    .admin-summary-card {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 20px;
      padding: 17px;
      color: #cbd5e1;
      min-height: 96px;
    }
    .admin-summary-card strong { color: #ffffff; display: block; font-size: 26px; margin-top: 6px; }
    .admin-summary-card span { font-size: 13px; font-weight: 900; color: #93c5fd; }
    .memo-chip {
      display: inline-flex;
      align-items: center;
      margin-left: 6px;
      padding: 5px 8px;
      border-radius: 999px;
      background: #fef3c7;
      color: #92400e;
      font-size: 11px;
      font-weight: 950;
      vertical-align: middle;
    }
    .popup-date-note {
      grid-column: 1 / -1;
      margin-top: -4px;
      color: #94a3b8;
      font-size: 12px;
      line-height: 1.5;
      font-weight: 800;
    }
    .site-notice-backdrop { z-index: 1200; }
    .popup-image-zoom-backdrop { z-index: 1500; }
    .modal-backdrop { z-index: 1300; }
    #privacyModal { z-index: 1400; }
    #demoSuccessModal { z-index: 1350; }
    .toast { z-index: 1600; }
    @media (max-width: 1120px) {
      #popupPanel .admin-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      #popupPanel .admin-form-grid .wide {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 980px) {
      .nav { display: none; }
      .mobile-menu-btn { display: inline-flex; align-items: center; justify-content: center; }
      .header-inner { min-height: 66px; }
      .brand { min-width: auto; }

      .certified-used-grid { grid-template-columns: 1fr; }
      .certified-media-panel { min-height: 320px; }
      .certified-media-stage, .certified-media-placeholder { min-height: 280px; }
      .certified-used-admin-item { grid-template-columns: 62px 1fr; }
      .certified-used-admin-actions { grid-column: 1 / -1; justify-content: flex-start; }

      .hero-grid, .about-grid, .products-grid, .product-detail-grid, .product-modal-grid, .admin-grid, .used-detail-grid, .admin-wide-grid {
        grid-template-columns: 1fr;
      }
      .product-list { position: static; }
      .used-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
      .cta-inner { flex-direction: column; align-items: flex-start; }
      .product-modal-form { position: static; }
      .admin-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: thin;
      }
      .admin-tab {
        white-space: nowrap;
        flex: 0 0 auto;
      }
    }
    @media (max-width: 640px) {
      body { overflow-x: hidden; }
      .container { width: min(100% - 28px, 1180px); }
      .header-inner { min-height: 62px; gap: 8px; }
      .brand-mark { width: 42px; height: 42px; flex-basis: 42px; }
      .brand-title { font-size: 17px; }
      .phone-btn { display: none; }
      .admin-login-top-btn { padding: 9px 10px; font-size: 11px; }
      .mobile-menu-btn { padding: 9px 10px; font-size: 12px; }
      .brand-sub { display: none; }
      .section { padding: 56px 0; }
      .section-title { text-align: left; margin-bottom: 28px; }
      .section-title h2 { font-size: clamp(28px, 8vw, 34px); }
      .section-title p { font-size: 15px; line-height: 1.7; }
      .eyebrow { font-size: 11px; letter-spacing: .18em; }
      .hero { padding: 52px 0 60px; }
      .hero h1 { font-size: clamp(34px, 10vw, 44px); line-height: 1.12; }
      .hero p { font-size: 15px; line-height: 1.7; margin-top: 18px; }
      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 24px;
      }
      .primary-btn, .secondary-btn {
        justify-content: center;
        width: 100%;
        padding: 15px 18px;
      }
      .hero-card { border-radius: 24px; }
      .hero-card-inner { padding: 18px; }
      .used-grid, .product-grid, .info-grid, .admin-form-grid, .spec-grid {
        grid-template-columns: 1fr;
      }
      .product-card-body, .used-body { padding: 18px; }
      .product-card-title, .used-title { font-size: 20px; }
      .equipment-image { height: 210px; }
      .equipment-image.compact { height: 178px; }
      .toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
      }
      .search-wrap { width: 100%; }
      .inline-check-filter {
        width: 100%;
        justify-content: flex-start;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 12px 14px;
      }
      .pagination {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
      }
      .pagination button {
        min-width: 34px;
        height: 34px;
        padding: 0 10px;
        flex: 0 0 auto;
      }
      .admin-list-toolbar,
      .request-list-toolbar,
      .regional-rep-grid,
      .request-summary-grid {
        grid-template-columns: 1fr;
      }
      .admin-card, .dark-card, .product-card, .form-card {
        border-radius: 22px;
        padding: 18px;
      }
      .admin-download-row {
        display: grid;
        grid-template-columns: 1fr;
      }
      .admin-download-row .submit-btn,
      .admin-download-row .upload-label,
      .button-row .submit-btn,
      .button-row .upload-label {
        width: 100%;
        justify-content: center;
        text-align: center;
      }
      .admin-tabs {
        margin-left: -14px;
        margin-right: -14px;
        padding-left: 14px;
        padding-right: 14px;
      }
      .request-card.compact-admin-card dl {
        grid-template-columns: 1fr;
      }
      .request-card-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
      }
      .request-card-actions .delete-btn {
        width: 100%;
        text-align: center;
      }
      .request-summary-pill {
        padding: 12px 14px;
      }
      .modal-backdrop {
        padding: 0;
        align-items: stretch;
      }
      .modal, .modal.large {
        width: 100%;
        max-height: 100dvh;
        min-height: 100dvh;
        border-radius: 0;
      }
      .modal-head {
        position: sticky;
        top: 0;
        z-index: 2;
        background: #ffffff;
        padding: 16px 18px;
      }
      .modal-head h3 { font-size: 20px; }
      .close-btn {
        width: 42px;
        height: 42px;
        font-size: 24px;
      }
      .modal-body {
        padding: 18px;
        max-height: calc(100dvh - 75px);
      }
      body {
        padding-bottom: 74px;
      }
      .floating-actions {
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 900;
        flex-direction: row;
        gap: 8px;
        align-items: stretch;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, .96);
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 -10px 28px rgba(15, 23, 42, .10);
        backdrop-filter: blur(12px);
      }
      .floating-action {
        flex: 1 1 0;
        min-width: 0;
        padding: 14px 12px;
        font-size: 14px;
        border-radius: 16px;
        box-shadow: none;
      }
      .back-to-top-btn {
        right: 14px;
        bottom: calc(88px + env(safe-area-inset-bottom));
      }
      .modal.mobile-action-modal {
        display: flex;
        flex-direction: column;
      }
      .modal.mobile-action-modal .modal-body {
        flex: 1 1 auto;
        max-height: none;
        padding-bottom: 22px;
      }
      .mobile-modal-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, .98);
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 -8px 24px rgba(15, 23, 42, .08);
      }
      .mobile-modal-actions.single {
        grid-template-columns: 1fr;
      }
      body.modal-open .floating-actions,
      body.form-focus .floating-actions {
        transform: translateY(calc(100% + 20px));
        pointer-events: none;
      }
      .modal.mobile-action-modal .modal-body {
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
      }
      .mobile-modal-actions {
        position: sticky;
        bottom: 0;
        z-index: 3;
      }
      .used-detail-grid .submit-btn {
        width: 100%;
        text-align: center;
      }
      .certified-used-showcase {
        padding: 18px;
        border-radius: 22px;
      }
      .certified-media-panel {
        min-height: auto;
      }
      .certified-media-stage,
      .certified-media-placeholder {
        min-height: 230px;
      }
      .certified-media-stage {
        touch-action: pan-y;
        user-select: none;
      }
      .certified-slide img,
      .certified-slide video,
      .certified-slide iframe {
        max-height: 255px;
        object-fit: contain;
        background: #0f172a;
      }
      .certified-slide-caption {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 10px 12px;
      }
      .certified-media-controls {
        gap: 8px;
      }
      .certified-media-controls button {
        min-height: 42px;
        padding: 10px 12px;
        font-size: 13px;
      }
      .quick-purpose-grid {
        grid-template-columns: 1fr 1fr;
      }
      .quick-purpose-btn {
        min-height: 44px;
      }
      .field { margin-top: 12px; }
      .site-notice-shell {
        width: 100%;
        max-height: 84dvh;
        overflow: auto;
      }
      .site-notice-media {
        max-height: 62dvh;
      }
      .popup-image-zoom-card {
        width: calc(100vw - 20px);
        max-height: 90dvh;
      }
      .popup-image-zoom-close,
      .site-notice-close,
      .close-btn {
        min-width: 44px;
        min-height: 44px;
      }
      .wide, .spec.full { grid-column: auto; }
      .site-notice-backdrop {
        padding: 14px;
        align-items: flex-start;
      }
      .site-notice-shell {
        max-height: 88dvh;
      }
      .site-notice-topbar {
        padding: 4px 2px 0;
      }
      .site-notice-list {
        grid-template-columns: 1fr;
        justify-content: stretch;
        gap: 14px;
      }
      .site-notice-modal {
        width: 100%;
        max-width: none;
        border-radius: 24px;
        max-height: none;
      }
      .site-notice-image-wrap {
        max-height: 210px;
        border-radius: 24px 24px 0 0;
      }
      .site-notice-image-wrap img {
        max-height: 210px;
      }
      .site-notice-body {
        padding: 22px;
      }
      .site-notice-body h3 {
        font-size: 22px;
      }
      #regionalRepsGrid,
      .regional-rep-grid,
      .admin-list-toolbar,
      .regional-rep-toolbar,
      .popup-manage-toolbar,
      #popupPanel .admin-form-grid,
      #popupPanel .button-row {
        grid-template-columns: 1fr;
      }
      .popup-action-row {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }
      .regional-rep-grid label:last-child,
      #popupPanel .admin-form-grid .wide {
        grid-column: auto;
      }
      .regional-rep-list {
        grid-template-columns: 1fr;
      }
      #regionalRepsGrid {
        grid-template-columns: 1fr;
      }
      .footer {
        padding-bottom: calc(112px + env(safe-area-inset-bottom));
      }
      .footer-inner { flex-direction: column; align-items: flex-start; }
    }
  
    .regional-reps-wide-card .regional-rep-toolbar {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(180px, 240px));
      gap: 10px;
      justify-content: flex-start;
      align-items: stretch;
      width: fit-content;
      max-width: 100%;
    }
    .regional-reps-wide-card .regional-rep-toolbar .submit-btn,
    .regional-reps-wide-card .regional-rep-toolbar .upload-label {
      width: 100%;
      min-width: 0;
      height: 46px;
      margin-top: 0 !important;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      white-space: nowrap;
      padding: 12px 16px;
    }
    @media (max-width: 640px) {
      .regional-reps-wide-card .regional-rep-toolbar {
        grid-template-columns: 1fr;
        width: 100%;
      }
    }


    #sitePanel .site-settings-wide-wrap {
      grid-template-columns: 1fr;
    }
    #sitePanel .site-settings-wide-card,
    #sitePanel .site-style-card {
      width: 100%;
      max-width: none;
    }
    #sitePanel .site-basic-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      align-items: end;
    }
    #sitePanel .site-address-grid {
      grid-template-columns: 1fr;
      margin-top: 12px;
    }
    #sitePanel .site-copy-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 14px;
    }
    #sitePanel .site-copy-grid .wide {
      grid-column: 1 / -1;
    }
    #sitePanel .site-copy-grid textarea {
      min-height: 96px;
    }
    #sitePanel .site-copy-grid .wide textarea {
      min-height: 110px;
    }
    #sitePanel .site-hero-admin-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
      gap: 16px;
      margin-top: 16px;
      align-items: stretch;
    }
    #sitePanel .site-hero-text-box,
    #sitePanel .site-hero-image-box,
    #sitePanel .site-copy-card {
      border: 1px solid #e2e8f0;
      border-radius: 18px;
      background: #f8fafc;
      padding: 16px;
    }
    #sitePanel .site-hero-text-box {
      display: grid;
      gap: 12px;
    }
    #sitePanel .site-hero-text-box textarea {
      min-height: 112px;
    }
    #sitePanel .site-hero-image-box {
      display: grid;
      gap: 12px;
      align-content: start;
    }
    #sitePanel .admin-field-title {
      color: #0f172a;
      font-weight: 950;
      font-size: 13px;
    }
    #sitePanel .site-image-button-row,
    #sitePanel .site-settings-button-row,
    #sitePanel .site-style-button-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start;
    }
    #sitePanel .site-image-button-row .submit-btn,
    #sitePanel .site-image-button-row .upload-label,
    #sitePanel .site-settings-button-row .submit-btn,
    #sitePanel .site-style-button-row .submit-btn {
      width: auto;
      min-width: 0;
      white-space: nowrap;
      padding-left: 18px;
      padding-right: 18px;
      margin-top: 0;
    }
    #sitePanel .site-card-copy-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 16px;
    }
    #sitePanel .site-copy-card {
      display: grid;
      gap: 12px;
    }
    #sitePanel .site-copy-card textarea {
      min-height: 96px;
    }
    #sitePanel .site-style-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      align-items: end;
    }
    #sitePanel .preview-image {
      max-height: 260px;
      object-fit: contain;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 10px;
    }

    @media (max-width: 1120px) {
      #sitePanel .site-basic-grid,
      #sitePanel .site-style-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      #sitePanel .site-hero-admin-grid,
      #sitePanel .site-copy-grid,
      #sitePanel .site-card-copy-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      #sitePanel .site-basic-grid,
      #sitePanel .site-style-grid,
      #sitePanel .site-address-grid {
        grid-template-columns: 1fr;
      }
      #sitePanel .site-copy-grid .wide {
        grid-column: auto;
      }
    }


    /* =========================
       1차 디자인 마감 정리
       - 기능 변경 없이 시각 요소만 다듬음
    ========================= */

    body {
      background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 46%, #f8fafc 100%);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    .header {
      box-shadow: 0 10px 26px rgba(15, 23, 42, .035);
    }


    .nav a,
    .admin-login-top-btn,
    .phone-btn,
    .primary-btn,
    .secondary-btn,
    .submit-btn,
    .delete-btn,
    .upload-label {
      transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease, color .16s ease, filter .16s ease;
    }

    .phone-btn:hover,
    .primary-btn:hover,
    .submit-btn:hover,
    .upload-label:hover {
      transform: translateY(-1px);
    }

    .section {
      padding: 92px 0;
    }

    .section-title {
      margin-bottom: 48px;
    }

    .section-title p {
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero {
      padding: 92px 0 104px;
    }

    .hero-card {
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.18);
    }

    .hero-card-inner {
      box-shadow: 0 24px 58px rgba(15,23,42,.18);
    }

    .info-card,
    .product-card,
    .form-card,
    .admin-card,
    .request-card,
    .used-card,
    .listing-card,
    .site-notice-modal {
      border-color: rgba(226,232,240,.95);
      box-shadow: 0 16px 42px rgba(15,23,42,.065);
    }

    .info-card:hover,
    .listing-card:hover,
    .used-card:hover {
      box-shadow: 0 22px 54px rgba(15,23,42,.105);
      transform: translateY(-2px);
    }

    .info-card,
    .listing-card,
    .used-card,
    .product-card,
    .form-card {
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }

    .equipment-image,
    .equipment-image.compact {
      background:
        radial-gradient(circle at 20% 10%, color-mix(in srgb, var(--blue), white 84%), transparent 34%),
        linear-gradient(135deg, #f8fafc 0%, #ffffff 48%, #eef6ff 100%);
      border: 1px solid rgba(226,232,240,.9);
    }

    .equipment-image img {
      background: #ffffff;
    }

    .equipment-badge,
    .tag,
    .status-badge,
    .site-notice-label {
      box-shadow: 0 8px 18px rgba(15,23,42,.055);
    }

    .primary-btn,
    .submit-btn {
      box-shadow: 0 16px 32px color-mix(in srgb, var(--blue), transparent 78%);
    }

    .secondary-btn,
    .submit-btn.secondary,
    .upload-label {
      border-color: #cbd5e1;
      background: #ffffff;
    }

    .secondary-btn:hover,
    .submit-btn.secondary:hover,
    .upload-label:hover {
      border-color: color-mix(in srgb, var(--blue), white 45%);
      color: var(--blue);
      background: color-mix(in srgb, var(--blue), white 94%);
    }

    input,
    textarea,
    select {
      border-color: #dbe3ef;
      background: #ffffff;
      transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
    }

    input:focus,
    textarea:focus,
    select:focus {
      outline: none;
      border-color: color-mix(in srgb, var(--blue), white 25%);
      box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue), transparent 88%);
      background: #ffffff;
    }

    .admin-card {
      background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #fbfdff 100%);
    }

    .admin-tabs {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      padding: 6px;
      border-radius: 18px;
    }

    .admin-tab {
      border-radius: 14px;
    }

    .admin-tab.active {
      box-shadow: 0 10px 24px color-mix(in srgb, var(--blue), transparent 82%);
    }

    .request-card {
      background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 80%, #f8fafc 100%);
    }

    .request-summary-row {
      gap: 10px;
    }

    .site-notice-backdrop {
      backdrop-filter: blur(4px);
    }

    .site-notice-modal {
      overflow: hidden;
    }

    .site-notice-body {
      background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 74%, #f8fafc 100%);
    }

    .site-notice-body h3 {
      word-break: keep-all;
    }

    .site-notice-body p {
      word-break: keep-all;
    }

    .floating-actions a,
    .mobile-bottom-actions a,
    .back-to-top {
      box-shadow: 0 16px 34px rgba(15,23,42,.20);
    }

    .footer {
      border-top: 1px solid #e2e8f0;
    }

    @media (max-width: 640px) {
      .section {
        padding: 68px 0;
      }

      .hero {
        padding: 64px 0 76px;
      }

      .info-card:hover,
      .listing-card:hover,
      .used-card:hover {
        transform: none;
      }

      .site-notice-body h3,
      .section-title h2,
      .hero h1 {
        word-break: keep-all;
      }
    }


    /* =========================
       1차 디자인 수정: 버튼/관리자 탭 가시성 보강
    ========================= */

    .hero .secondary-btn {
      background: rgba(255, 255, 255, .12);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, .35);
      box-shadow: none;
    }

    .hero .secondary-btn:hover {
      background: rgba(255, 255, 255, .22);
      color: #ffffff;
      border-color: rgba(255, 255, 255, .58);
      transform: translateY(-1px);
    }

    .admin-tabs {
      background: #eef4fb;
      border: 1px solid #d5e1ef;
      padding: 6px;
      border-radius: 18px;
      gap: 6px;
    }

    .admin-tab {
      background: #ffffff;
      color: #334155;
      border: 1px solid #dbe3ef;
      font-weight: 950;
    }

    .admin-tab:hover {
      color: var(--blue);
      border-color: color-mix(in srgb, var(--blue), white 55%);
      background: color-mix(in srgb, var(--blue), white 94%);
    }

    .admin-tab.active {
      background: var(--blue);
      color: #ffffff;
      border-color: var(--blue);
      box-shadow: 0 10px 24px color-mix(in srgb, var(--blue), transparent 76%);
    }

    .admin-tab.active:hover {
      color: #ffffff;
      background: var(--blue-dark);
      border-color: var(--blue-dark);
    }


    /* =========================
       최종 가시성 보정
       - 중고장비 확인하기 버튼
       - 관리자 탭 글자색
    ========================= */

    .hero-actions .secondary-btn,
    .hero .secondary-btn,
    .hero a.secondary-btn,
    .hero button.secondary-btn {
      color: #ffffff !important;
      background: rgba(255, 255, 255, .16) !important;
      border: 1px solid rgba(255, 255, 255, .48) !important;
      text-shadow: 0 1px 2px rgba(15, 23, 42, .35);
      box-shadow: none !important;
    }

    .hero-actions .secondary-btn:hover,
    .hero .secondary-btn:hover,
    .hero a.secondary-btn:hover,
    .hero button.secondary-btn:hover {
      color: #ffffff !important;
      background: rgba(255, 255, 255, .26) !important;
      border-color: rgba(255, 255, 255, .72) !important;
    }

    .admin-tabs .admin-tab,
    button.admin-tab {
      color: #0f172a !important;
      background: #ffffff !important;
      border: 1px solid #94a3b8 !important;
      font-weight: 950 !important;
      text-shadow: none !important;
    }

    .admin-tabs .admin-tab:hover,
    button.admin-tab:hover {
      color: #0b3f91 !important;
      background: #eff6ff !important;
      border-color: #1463d9 !important;
    }

    .admin-tabs .admin-tab.active,
    button.admin-tab.active {
      color: #ffffff !important;
      background: #1463d9 !important;
      border-color: #1463d9 !important;
      box-shadow: 0 10px 24px rgba(20, 99, 217, .24) !important;
    }

    .admin-tabs .admin-tab.active:hover,
    button.admin-tab.active:hover {
      color: #ffffff !important;
      background: #0b3f91 !important;
      border-color: #0b3f91 !important;
    }


    /* =========================
       관리자 탭 색상 재정리
       - 탭별 색상 분리
       - 선택 탭은 진한 배경 + 흰색 글자
       - 비선택 탭은 연한 배경 + 진한 글자
    ========================= */

    .admin-tabs {
      background: #f1f5f9 !important;
      border: 1px solid #cbd5e1 !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
    }

    .admin-tabs .admin-tab,
    button.admin-tab {
      background: #ffffff !important;
      border: 1px solid #cbd5e1 !important;
      color: #1e293b !important;
      font-weight: 950 !important;
      text-shadow: none !important;
      box-shadow: none !important;
    }

    /* 데모 요청 */
    .admin-tabs .admin-tab:nth-child(1) {
      background: #eff6ff !important;
      color: #1d4ed8 !important;
      border-color: #93c5fd !important;
    }
    .admin-tabs .admin-tab:nth-child(1).active {
      background: #1d4ed8 !important;
      color: #ffffff !important;
      border-color: #1d4ed8 !important;
    }

    /* 대리점 소개/디자인 */
    .admin-tabs .admin-tab:nth-child(2) {
      background: #ecfdf5 !important;
      color: #047857 !important;
      border-color: #86efac !important;
    }
    .admin-tabs .admin-tab:nth-child(2).active {
      background: #047857 !important;
      color: #ffffff !important;
      border-color: #047857 !important;
    }

    /* 팝업창 관리 */
    .admin-tabs .admin-tab:nth-child(3) {
      background: #faf5ff !important;
      color: #7e22ce !important;
      border-color: #d8b4fe !important;
    }
    .admin-tabs .admin-tab:nth-child(3).active {
      background: #7e22ce !important;
      color: #ffffff !important;
      border-color: #7e22ce !important;
    }

    /* 삼성메디슨 장비 관리 */
    .admin-tabs .admin-tab:nth-child(4) {
      background: #fff7ed !important;
      color: #c2410c !important;
      border-color: #fdba74 !important;
    }
    .admin-tabs .admin-tab:nth-child(4).active {
      background: #c2410c !important;
      color: #ffffff !important;
      border-color: #c2410c !important;
    }

    /* 중고장비 관리 */
    .admin-tabs .admin-tab:nth-child(5) {
      background: #f8fafc !important;
      color: #334155 !important;
      border-color: #94a3b8 !important;
    }
    .admin-tabs .admin-tab:nth-child(5).active {
      background: #334155 !important;
      color: #ffffff !important;
      border-color: #334155 !important;
    }

    .admin-tabs .admin-tab:hover,
    button.admin-tab:hover {
      filter: brightness(.97);
      transform: translateY(-1px);
    }

    .admin-tabs .admin-tab.active,
    button.admin-tab.active {
      box-shadow: 0 10px 22px rgba(15, 23, 42, .16) !important;
    }


    /* =========================
       관리자 화면 글자 가시성 최종 보정
       - 탭 색상은 통일
       - 흰 배경 위 흰 글자 문제 방지
       - 데모 요청 카드/요약/라벨 글자 대비 강화
    ========================= */

    .admin-tabs {
      background: #f1f5f9 !important;
      border: 1px solid #cbd5e1 !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.85) !important;
    }

    .admin-tabs .admin-tab,
    button.admin-tab {
      background: #ffffff !important;
      color: #0f172a !important;
      border: 1px solid #cbd5e1 !important;
      font-weight: 950 !important;
      text-shadow: none !important;
      box-shadow: none !important;
    }

    .admin-tabs .admin-tab:hover,
    button.admin-tab:hover {
      background: #eff6ff !important;
      color: #0b3f91 !important;
      border-color: #93c5fd !important;
    }

    .admin-tabs .admin-tab.active,
    button.admin-tab.active {
      background: #1463d9 !important;
      color: #ffffff !important;
      border-color: #1463d9 !important;
      box-shadow: 0 10px 22px rgba(20, 99, 217, .24) !important;
    }

    .admin-tabs .admin-tab.active:hover,
    button.admin-tab.active:hover {
      background: #0b3f91 !important;
      color: #ffffff !important;
      border-color: #0b3f91 !important;
    }

    /* 관리자 영역 기본 글자색 통일 */
    #admin,
    #admin .admin-card,
    #admin .request-card,
    #admin .request-card *,
    #admin .admin-list,
    #admin .admin-list *,
    #admin label,
    #admin span,
    #admin dt,
    #admin dd,
    #admin p,
    #admin small,
    #admin strong,
    #admin h3,
    #admin h4 {
      text-shadow: none;
    }

    #admin .admin-card,
    #admin .request-card,
    #admin .compact-admin-card {
      color: #0f172a !important;
      background-color: #ffffff;
    }

    #admin .admin-card p,
    #admin .admin-card small,
    #admin .request-card p,
    #admin .request-card small,
    #admin .hint-box,
    #admin .request-muted,
    #admin .muted,
    #admin dd {
      color: #475569 !important;
    }

    #admin label span,
    #admin .admin-field-title,
    #admin dt,
    #admin .request-summary-label,
    #admin .summary-label,
    #admin .request-card-title,
    #admin .request-card strong,
    #admin .request-summary-row strong {
      color: #0f172a !important;
    }

    /* 데모 요청 요약 pill: 흰 배경에서도 확실히 보이게 */
    #admin .request-summary-row,
    #admin .request-summary,
    #admin .request-card-header,
    #admin .request-card-top {
      color: #0f172a !important;
    }

    #admin .request-summary-pill,
    #admin .summary-pill,
    #admin .request-meta-pill,
    #admin .request-info-pill {
      background: #f8fafc !important;
      color: #0f172a !important;
      border: 1px solid #cbd5e1 !important;
    }

    #admin .request-summary-pill *,
    #admin .summary-pill *,
    #admin .request-meta-pill *,
    #admin .request-info-pill * {
      color: #0f172a !important;
    }

    /* 상태 배지는 상태별 배경 위에서 흰 글자가 보이는 경우만 유지 */
    #admin .status-badge {
      color: #ffffff !important;
      font-weight: 950 !important;
      text-shadow: 0 1px 1px rgba(15,23,42,.22);
    }

    #admin .status-badge.gray,
    #admin .status-badge.light,
    #admin .status-badge.archived {
      color: #334155 !important;
      text-shadow: none;
    }

    /* 버튼 글자 대비 */
    #admin .delete-btn,
    #admin .submit-btn.secondary,
    #admin .upload-label {
      color: #334155 !important;
      background: #ffffff !important;
      border-color: #cbd5e1 !important;
    }

    #admin .delete-btn:hover,
    #admin .submit-btn.secondary:hover,
    #admin .upload-label:hover {
      color: #0b3f91 !important;
      background: #eff6ff !important;
      border-color: #93c5fd !important;
    }

    #admin .submit-btn:not(.secondary) {
      color: #ffffff !important;
      background: #1463d9 !important;
    }

    #admin .delete-btn.danger {
      color: #dc2626 !important;
      background: #fff7f7 !important;
      border-color: rgba(239, 68, 68, .38) !important;
    }

    /* 입력칸 내부 글자 */
    #admin input,
    #admin textarea,
    #admin select {
      color: #0f172a !important;
      background: #ffffff !important;
    }

    #admin input::placeholder,
    #admin textarea::placeholder {
      color: #94a3b8 !important;
    }


    /* =========================
       관리자 버튼 가시성 보정
       - 카드 배경과 버튼 배경을 분리
       - 다운로드/업로드/보조/삭제 버튼이 카드에 묻히지 않게 처리
    ========================= */

    #admin .admin-card {
      background: linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #f8fbff 100%) !important;
      border: 1px solid #d8e3f0 !important;
    }

    #admin .submit-btn {
      border: 1px solid transparent !important;
      box-shadow: 0 10px 22px rgba(15, 23, 42, .10) !important;
      font-weight: 950 !important;
    }

    #admin .submit-btn:not(.secondary) {
      background: #1463d9 !important;
      color: #ffffff !important;
      border-color: #1463d9 !important;
    }

    #admin .submit-btn:not(.secondary):hover {
      background: #0b3f91 !important;
      border-color: #0b3f91 !important;
      color: #ffffff !important;
    }

    #admin .submit-btn.secondary,
    #admin .upload-label,
    #admin .delete-btn {
      background: #eef6ff !important;
      color: #0b3f91 !important;
      border: 1px solid #93c5fd !important;
      box-shadow: 0 8px 18px rgba(20, 99, 217, .12) !important;
    }

    #admin .submit-btn.secondary:hover,
    #admin .upload-label:hover,
    #admin .delete-btn:hover {
      background: #dbeafe !important;
      color: #0b3f91 !important;
      border-color: #60a5fa !important;
      transform: translateY(-1px);
    }

    /* CSV/백업/복원처럼 관리 기능 버튼은 더 잘 보이게 */
    #admin .admin-download-row .submit-btn,
    #admin .admin-download-row .upload-label,
    #admin .regional-rep-toolbar .submit-btn,
    #admin .regional-rep-toolbar .upload-label {
      background: #e0f2fe !important;
      color: #075985 !important;
      border-color: #38bdf8 !important;
      box-shadow: 0 8px 18px rgba(14, 165, 233, .14) !important;
    }

    #admin .admin-download-row .submit-btn:hover,
    #admin .admin-download-row .upload-label:hover,
    #admin .regional-rep-toolbar .submit-btn:hover,
    #admin .regional-rep-toolbar .upload-label:hover {
      background: #bae6fd !important;
      color: #075985 !important;
      border-color: #0284c7 !important;
    }

    /* 삭제/위험 버튼은 붉은 계열로 분리 */
    #admin .delete-btn.danger,
    #admin button[data-request-delete],
    #admin button[data-product-delete],
    #admin button[data-used-delete],
    #admin #deletePopupBtn {
      background: #fff1f2 !important;
      color: #be123c !important;
      border: 1px solid #fda4af !important;
      box-shadow: 0 8px 18px rgba(225, 29, 72, .12) !important;
    }

    #admin .delete-btn.danger:hover,
    #admin button[data-request-delete]:hover,
    #admin button[data-product-delete]:hover,
    #admin button[data-used-delete]:hover,
    #admin #deletePopupBtn:hover {
      background: #ffe4e6 !important;
      color: #9f1239 !important;
      border-color: #fb7185 !important;
    }

    /* 버튼이 여러 개 모인 줄은 카드 배경과 구분되는 연한 박스로 처리 */
    #admin .button-row,
    #admin .admin-download-row,
    #admin .popup-button-row,
    #admin .regional-rep-toolbar,
    #admin .site-settings-button-row,
    #admin .site-style-button-row,
    #admin .site-image-button-row {
      background: #f1f5f9;
      border: 1px solid #dbe3ef;
      border-radius: 16px;
      padding: 10px;
    }

    /* 단, 카드 내부의 너무 작은 버튼줄은 과하게 넓어지지 않게 */
    #admin .request-card .button-row,
    #admin .listing-card .button-row,
    #admin .used-card .button-row {
      background: transparent;
      border: 0;
      padding: 0;
    }

    /* 관리자 필터 영역도 카드와 구분 */
    #admin .admin-list-toolbar,
    #admin .request-filters,
    #admin .product-admin-toolbar,
    #admin .used-admin-toolbar {
      background: #f8fafc;
      border: 1px solid #dbe3ef;
      border-radius: 18px;
      padding: 12px;
    }


    /* =========================================================
       관리자 화면 디자인 리셋 v2
       - 기존 보정 CSS 위에 최종 적용
       - 색상 과다 사용 제거
       - 탭/카드/버튼/입력창 스타일 통일
    ========================================================= */

    body.admin-route {
      background: #f3f6fb !important;
    }

    body.admin-route .header {
      background: #ffffff !important;
      border-bottom: 1px solid #dbe3ef !important;
      box-shadow: 0 8px 24px rgba(15, 23, 42, .05) !important;
    }

    #admin {
      background: #f3f6fb !important;
      color: #111827 !important;
    }

    #admin .container {
      width: min(1280px, calc(100% - 40px));
    }

    #admin .admin-box,
    #admin .admin-shell,
    #admin .admin-content {
      background: transparent !important;
      box-shadow: none !important;
      border: 0 !important;
    }

    #admin h2,
    #admin h3,
    #admin h4,
    #admin strong,
    #admin label span,
    #admin dt {
      color: #111827 !important;
      text-shadow: none !important;
    }

    #admin p,
    #admin small,
    #admin dd,
    #admin .muted,
    #admin .request-muted,
    #admin .hint-box {
      color: #5b6778 !important;
      text-shadow: none !important;
    }

    /* 관리자 상단 탭 */
    #admin .admin-tabs {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 8px !important;
      align-items: center !important;
      background: #e9eef6 !important;
      border: 1px solid #d5deea !important;
      border-radius: 18px !important;
      padding: 8px !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.75) !important;
    }

    #admin .admin-tab,
    #admin button.admin-tab {
      appearance: none !important;
      border: 1px solid #cbd5e1 !important;
      background: #ffffff !important;
      color: #1f2937 !important;
      border-radius: 14px !important;
      padding: 12px 16px !important;
      font-size: 14px !important;
      font-weight: 900 !important;
      line-height: 1 !important;
      white-space: nowrap !important;
      box-shadow: 0 1px 2px rgba(15, 23, 42, .04) !important;
      text-shadow: none !important;
      filter: none !important;
      transition: background .16s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease !important;
    }

    #admin .admin-tab:hover,
    #admin button.admin-tab:hover {
      background: #f8fbff !important;
      color: #0b3f91 !important;
      border-color: #8bb8ff !important;
      box-shadow: 0 6px 14px rgba(15, 23, 42, .08) !important;
      transform: translateY(-1px) !important;
    }

    #admin .admin-tab.active,
    #admin button.admin-tab.active {
      background: #1463d9 !important;
      color: #ffffff !important;
      border-color: #1463d9 !important;
      box-shadow: 0 10px 22px rgba(20, 99, 217, .24) !important;
    }

    #admin .admin-tab.active:hover,
    #admin button.admin-tab.active:hover {
      background: #0b4fb3 !important;
      color: #ffffff !important;
      border-color: #0b4fb3 !important;
    }

    /* 관리자 카드 */
    #admin .admin-card,
    #admin .request-card,
    #admin .compact-admin-card {
      background: #ffffff !important;
      color: #111827 !important;
      border: 1px solid #dbe3ef !important;
      border-radius: 22px !important;
      box-shadow: 0 10px 28px rgba(15, 23, 42, .06) !important;
    }

    #admin .admin-card {
      padding: 24px !important;
    }

    #admin .admin-card h3 {
      margin-bottom: 14px !important;
      font-size: 20px !important;
      letter-spacing: -.02em !important;
    }

    #admin .hint-box {
      background: #f8fafc !important;
      border: 1px solid #e2e8f0 !important;
      border-radius: 16px !important;
      padding: 13px 15px !important;
      line-height: 1.6 !important;
      font-weight: 750 !important;
    }

    /* 입력창 */
    #admin input,
    #admin textarea,
    #admin select {
      background: #ffffff !important;
      color: #111827 !important;
      border: 1px solid #cfd8e5 !important;
      border-radius: 13px !important;
      box-shadow: none !important;
      font-weight: 700 !important;
    }

    #admin input:focus,
    #admin textarea:focus,
    #admin select:focus {
      outline: none !important;
      border-color: #1463d9 !important;
      box-shadow: 0 0 0 4px rgba(20, 99, 217, .12) !important;
    }

    #admin input::placeholder,
    #admin textarea::placeholder {
      color: #9aa6b6 !important;
    }

    #admin label span,
    #admin .admin-field-title {
      display: inline-block !important;
      margin-bottom: 7px !important;
      font-size: 13px !important;
      font-weight: 900 !important;
      color: #334155 !important;
    }

    /* 관리자 버튼: 3종만 명확히 */
    #admin .submit-btn,
    #admin .upload-label,
    #admin .delete-btn {
      appearance: none !important;
      border-radius: 13px !important;
      padding: 12px 16px !important;
      font-size: 13px !important;
      font-weight: 900 !important;
      line-height: 1.15 !important;
      white-space: nowrap !important;
      min-height: 42px !important;
      width: auto !important;
      min-width: 0 !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 6px !important;
      text-align: center !important;
      box-shadow: none !important;
      text-shadow: none !important;
      filter: none !important;
      transition: background .16s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease !important;
    }

    #admin .submit-btn:not(.secondary) {
      background: #1463d9 !important;
      color: #ffffff !important;
      border: 1px solid #1463d9 !important;
    }

    #admin .submit-btn:not(.secondary):hover {
      background: #0b4fb3 !important;
      border-color: #0b4fb3 !important;
      color: #ffffff !important;
      box-shadow: 0 8px 16px rgba(20, 99, 217, .18) !important;
      transform: translateY(-1px) !important;
    }

    #admin .submit-btn.secondary,
    #admin .upload-label,
    #admin .delete-btn {
      background: #ffffff !important;
      color: #334155 !important;
      border: 1px solid #cbd5e1 !important;
    }

    #admin .submit-btn.secondary:hover,
    #admin .upload-label:hover,
    #admin .delete-btn:hover {
      background: #f1f5f9 !important;
      color: #0f172a !important;
      border-color: #94a3b8 !important;
      box-shadow: 0 6px 14px rgba(15, 23, 42, .08) !important;
      transform: translateY(-1px) !important;
    }

    #admin .delete-btn.danger,
    #admin button[data-request-delete],
    #admin button[data-product-delete],
    #admin button[data-used-delete],
    #admin #deletePopupBtn {
      background: #fff7f7 !important;
      color: #c81e1e !important;
      border: 1px solid #f3b7b7 !important;
    }

    #admin .delete-btn.danger:hover,
    #admin button[data-request-delete]:hover,
    #admin button[data-product-delete]:hover,
    #admin button[data-used-delete]:hover,
    #admin #deletePopupBtn:hover {
      background: #fee2e2 !important;
      color: #991b1b !important;
      border-color: #f87171 !important;
    }

    /* 버튼 줄: 배경 박스 제거, 깔끔하게 간격만 */
    #admin .button-row,
    #admin .admin-download-row,
    #admin .popup-button-row,
    #admin .regional-rep-toolbar,
    #admin .site-settings-button-row,
    #admin .site-style-button-row,
    #admin .site-image-button-row {
      background: transparent !important;
      border: 0 !important;
      border-radius: 0 !important;
      padding: 0 !important;
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 10px !important;
      align-items: center !important;
      justify-content: flex-start !important;
      box-shadow: none !important;
    }

    #admin .regional-reps-wide-card .regional-rep-toolbar {
      display: grid !important;
      grid-template-columns: repeat(2, max-content) !important;
      gap: 10px !important;
      width: auto !important;
      justify-content: flex-start !important;
    }

    #admin .regional-reps-wide-card .regional-rep-toolbar .submit-btn,
    #admin .regional-reps-wide-card .regional-rep-toolbar .upload-label {
      width: auto !important;
    }

    /* 데모 요청 카드 */
    #admin .request-card {
      padding: 18px !important;
      margin-bottom: 14px !important;
    }

    #admin .request-card *,
    #admin .request-card-header *,
    #admin .request-summary-row * {
      color: inherit;
      text-shadow: none !important;
    }

    #admin .request-card-title,
    #admin .request-card strong,
    #admin .request-summary-row strong,
    #admin .request-summary-label,
    #admin .summary-label {
      color: #111827 !important;
      font-weight: 950 !important;
    }

    #admin .request-summary-pill,
    #admin .summary-pill,
    #admin .request-meta-pill,
    #admin .request-info-pill {
      background: #f8fafc !important;
      color: #334155 !important;
      border: 1px solid #e2e8f0 !important;
      border-radius: 999px !important;
      box-shadow: none !important;
    }

    #admin .request-summary-pill *,
    #admin .summary-pill *,
    #admin .request-meta-pill *,
    #admin .request-info-pill * {
      color: #334155 !important;
    }

    #admin .status-badge {
      border-radius: 999px !important;
      font-weight: 950 !important;
      box-shadow: none !important;
    }

    /* 필터/툴바 영역 */
    #admin .admin-list-toolbar,
    #admin .request-filters,
    #admin .product-admin-toolbar,
    #admin .used-admin-toolbar {
      background: #f8fafc !important;
      border: 1px solid #e2e8f0 !important;
      border-radius: 18px !important;
      padding: 14px !important;
      box-shadow: none !important;
    }

    /* 페이지네이션 */
    #admin .pagination button {
      background: #ffffff !important;
      color: #334155 !important;
      border: 1px solid #cbd5e1 !important;
      box-shadow: none !important;
    }

    #admin .pagination button.active,
    #admin .pagination button:hover {
      background: #1463d9 !important;
      color: #ffffff !important;
      border-color: #1463d9 !important;
    }

    /* 팝업/대리점/지역 설정 내부 박스 */
    #admin .site-hero-text-box,
    #admin .site-hero-image-box,
    #admin .site-copy-card,
    #admin .regional-rep-item {
      background: #f8fafc !important;
      border: 1px solid #e2e8f0 !important;
      border-radius: 18px !important;
      box-shadow: none !important;
    }

    #admin .regional-rep-list {
      gap: 14px !important;
    }

    /* 모바일 */
    @media (max-width: 640px) {
      #admin .admin-tabs {
        display: grid !important;
        grid-template-columns: 1fr !important;
      }

      #admin .admin-tab,
      #admin button.admin-tab {
        width: 100% !important;
      }

      #admin .regional-reps-wide-card .regional-rep-toolbar {
        grid-template-columns: 1fr !important;
        width: 100% !important;
      }

      #admin .regional-reps-wide-card .regional-rep-toolbar .submit-btn,
      #admin .regional-reps-wide-card .regional-rep-toolbar .upload-label {
        width: 100% !important;
      }
    }


    /* 지역별 영업사원 설정: 지역명 가시성 보강 */
    #admin .regional-rep-region {
      color: #0b3f91 !important;
      background: #eef6ff !important;
      border: 1px solid #bfdbfe !important;
      border-radius: 999px !important;
      padding: 8px 12px !important;
      display: inline-flex !important;
      align-items: center !important;
      width: fit-content !important;
      max-width: 100% !important;
      font-size: 14px !important;
      font-weight: 950 !important;
      letter-spacing: -.01em !important;
      box-shadow: none !important;
      text-shadow: none !important;
    }


    /* =========================================================
       팝업 이미지 전체 표시 보정
       - object-fit: cover 제거
       - 이미지가 잘리지 않고 전체 표시
       - 이미지가 있는 팝업은 더 넓게 표시
    ========================================================= */

    .site-notice-list {
      display: flex !important;
      flex-wrap: wrap !important;
      justify-content: center !important;
      align-items: flex-start !important;
      gap: 18px !important;
    }

    .site-notice-modal {
      width: min(92vw, 560px) !important;
      max-width: 560px !important;
    }

    .site-notice-modal:has(.site-notice-image-wrap) {
      width: min(92vw, 680px) !important;
      max-width: 680px !important;
    }

    .site-notice-image-wrap {
      width: 100% !important;
      max-height: none !important;
      overflow: visible !important;
      background: #f8fafc !important;
      border-radius: 30px 30px 0 0 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      padding: 0 !important;
    }

    .site-notice-image-wrap img {
      display: block !important;
      width: auto !important;
      height: auto !important;
      max-width: 100% !important;
      max-height: 62dvh !important;
      object-fit: contain !important;
      object-position: center center !important;
      background: #ffffff !important;
      border-radius: 30px 30px 0 0 !important;
    }

    @media (max-width: 640px) {
      .site-notice-backdrop {
        padding: 14px !important;
        align-items: flex-start !important;
      }

      .site-notice-list {
        display: grid !important;
        grid-template-columns: 1fr !important;
        justify-content: stretch !important;
        gap: 14px !important;
      }

      .site-notice-modal,
      .site-notice-modal:has(.site-notice-image-wrap) {
        width: 100% !important;
        max-width: none !important;
      }

      .site-notice-image-wrap {
        border-radius: 24px 24px 0 0 !important;
      }

      .site-notice-image-wrap img {
        max-height: 58dvh !important;
        border-radius: 24px 24px 0 0 !important;
      }
    }


    /* =========================================================
       팝업 이미지 + 본문 전체 표시 보정
       - 이미지가 본문/버튼을 밀어내지 않도록 높이 재배분
       - 팝업 전체가 화면 안에서 스크롤 가능하도록 수정
       - 문구/버튼/오늘 하루 보지 않기 영역이 잘리지 않게 처리
    ========================================================= */

    .site-notice-backdrop {
      align-items: flex-start !important;
      justify-content: center !important;
      overflow-y: auto !important;
      padding: 28px 20px !important;
    }

    .site-notice-shell {
      width: min(1180px, 100%) !important;
      max-height: none !important;
      overflow: visible !important;
      padding-bottom: 28px !important;
    }

    .site-notice-list {
      overflow: visible !important;
      align-items: flex-start !important;
    }

    .site-notice-modal {
      display: flex !important;
      flex-direction: column !important;
      width: min(92vw, 620px) !important;
      max-width: 620px !important;
      max-height: calc(100dvh - 96px) !important;
      overflow-y: auto !important;
      overflow-x: hidden !important;
    }

    .site-notice-modal:has(.site-notice-image-wrap) {
      width: min(92vw, 700px) !important;
      max-width: 700px !important;
    }

    .site-notice-image-wrap {
      flex: 0 0 auto !important;
      width: 100% !important;
      max-height: 44dvh !important;
      overflow: hidden !important;
      background: #f8fafc !important;
      border-radius: 30px 30px 0 0 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }

    .site-notice-image-wrap img {
      display: block !important;
      width: auto !important;
      height: auto !important;
      max-width: 100% !important;
      max-height: 44dvh !important;
      object-fit: contain !important;
      object-position: center center !important;
      background: #ffffff !important;
    }

    .site-notice-body {
      flex: 0 0 auto !important;
      padding: 24px 28px 26px !important;
      background: #ffffff !important;
    }

    .site-notice-actions,
    .site-notice-today {
      flex: 0 0 auto !important;
    }

    .site-notice-actions a {
      min-height: 50px !important;
    }

    @media (max-width: 640px) {
      .site-notice-backdrop {
        padding: 14px !important;
      }

      .site-notice-shell {
        padding-bottom: 18px !important;
      }

      .site-notice-modal,
      .site-notice-modal:has(.site-notice-image-wrap) {
        width: 100% !important;
        max-width: none !important;
        max-height: calc(100dvh - 44px) !important;
      }

      .site-notice-image-wrap {
        max-height: 38dvh !important;
        border-radius: 24px 24px 0 0 !important;
      }

      .site-notice-image-wrap img {
        max-height: 38dvh !important;
      }

      .site-notice-body {
        padding: 20px 20px 22px !important;
      }
    }


    /* =========================================================
       팝업 이미지 확대보기 기능
       - 팝업 이미지는 클릭 가능
       - 클릭 시 전체 화면에서 크게 보기
    ========================================================= */

    .site-notice-image-button {
      appearance: none !important;
      border: 0 !important;
      padding: 0 !important;
      margin: 0 !important;
      width: 100% !important;
      background: transparent !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      cursor: zoom-in !important;
      position: relative !important;
      color: inherit !important;
      box-shadow: none !important;
    }

    .site-notice-image-button img {
      transition: filter .16s ease, transform .16s ease !important;
    }

    .site-notice-image-button:hover img {
      filter: brightness(.96) !important;
    }

    .site-notice-image-button span {
      position: absolute !important;
      left: 50% !important;
      bottom: 10px !important;
      transform: translateX(-50%) !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      max-width: calc(100% - 28px) !important;
      padding: 7px 11px !important;
      border-radius: 999px !important;
      background: rgba(15, 23, 42, .72) !important;
      color: #ffffff !important;
      font-size: 12px !important;
      font-weight: 900 !important;
      line-height: 1.2 !important;
      white-space: nowrap !important;
      pointer-events: none !important;
      backdrop-filter: blur(4px) !important;
    }

    .popup-image-zoom-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1900;
      background: rgba(2, 6, 23, .86);
      padding: 28px;
      align-items: center;
      justify-content: center;
      overflow: auto;
    }

    .popup-image-zoom-backdrop.open {
      display: flex;
    }

    .popup-image-zoom-shell {
      position: relative;
      width: min(100%, 1200px);
      min-height: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }

    .popup-image-zoom-shell img {
      display: block;
      max-width: min(100%, 1200px);
      max-height: calc(100dvh - 120px);
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 18px;
      background: #ffffff;
      box-shadow: 0 28px 90px rgba(0, 0, 0, .45);
      cursor: zoom-out;
    }

    .popup-image-zoom-shell p {
      margin: 0;
      color: rgba(255,255,255,.86);
      font-size: 13px;
      font-weight: 850;
      text-align: center;
    }

    .popup-image-zoom-close {
      position: fixed;
      right: 24px;
      top: 22px;
      z-index: 1901;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 999px;
      background: rgba(15, 23, 42, .62);
      color: #ffffff;
      font-size: 28px;
      font-weight: 900;
      line-height: 1;
      cursor: pointer;
      backdrop-filter: blur(6px);
    }

    .popup-image-zoom-close:hover {
      background: rgba(15, 23, 42, .86);
    }

    @media (max-width: 640px) {
      .site-notice-image-button span {
        bottom: 8px !important;
        font-size: 11px !important;
        padding: 6px 9px !important;
      }

      .popup-image-zoom-backdrop {
        padding: 14px;
      }

      .popup-image-zoom-shell img {
        max-height: calc(100dvh - 98px);
        border-radius: 14px;
      }

      .popup-image-zoom-close {
        right: 14px;
        top: 14px;
        width: 42px;
        height: 42px;
        font-size: 26px;
      }

      .popup-image-zoom-shell p {
        font-size: 12px;
      }
    }


    /* 팝업 이미지 확대보기: 휠 확대/축소 + 드래그 이동 */
    .popup-image-zoom-backdrop.open {
      overscroll-behavior: contain;
    }

    .popup-image-zoom-shell {
      overflow: visible;
      user-select: none;
    }

    .popup-image-zoom-shell img {
      transform: translate(0, 0) scale(1);
      transform-origin: center center;
      transition: transform .08s ease-out;
      will-change: transform;
      cursor: zoom-in;
    }

    .popup-image-zoom-shell img.zoomed {
      cursor: grab;
    }

    .popup-image-zoom-shell img.dragging {
      cursor: grabbing;
      transition: none;
    }

    .popup-image-zoom-shell p {
      background: rgba(15, 23, 42, .58);
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 999px;
      padding: 8px 12px;
      backdrop-filter: blur(6px);
    }


/* WordPress integration */
body.admin-bar .header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .header { top: 46px; }
}
#wpadminbar { z-index: 999999; }
img { max-width: 100%; height: auto; }

/* Withuscare Core server integration */
.withuscare-hp{position:absolute!important;left:-10000px!important;top:auto!important;width:1px!important;height:1px!important;overflow:hidden!important;opacity:0!important;pointer-events:none!important}
.login-card #loginBtn{display:inline-flex;align-items:center;justify-content:center;text-decoration:none;margin-top:14px}
.withuscare-core-missing .admin-storage-alert{border-color:#f59e0b;background:#fff7ed;color:#9a3412}

/* v0.2.5: 관리자 문구 줄바꿈 지원 */
#admin textarea.compact-textarea,
textarea.compact-textarea {
  min-height: 58px;
  line-height: 1.55;
  resize: vertical;
}

#brandTitle,
#brandSub,
#heroPill,
#heroTitle,
#heroSubtitle,
#aboutName,
#aboutDescription,
#aboutAddress,
#aboutIntroText,
#productIntroText,
#usedIntroText,
#aboutCard1Title,
#aboutCard1Body,
#aboutCard2Title,
#aboutCard2Body,
#certifiedUsedSubtitle,
#certifiedUsedTitle,
#certifiedUsedDescription,
.certified-used-point > div,
.certified-slide-caption,
.product-category,
.product-card-title,
.product-grade,
.product-card-desc,
#productModalCategory,
#productModalTitle,
#productModalSummary,
#productModalBestFor,
#productModalFeatures li span:last-child,
.used-title,
.used-desc,
#usedModalTitle,
#usedModalModel,
#usedModalYear,
#usedModalPrice,
#usedModalProbes,
#usedModalDescription,
#usedModalFunctions,
.site-notice-label,
.site-notice-body h3,
.site-notice-body p {
  white-space: pre-line;
  overflow-wrap: anywhere;
}

/* v0.2.6 — 장비 목록/상세 이미지 비율 개선 */
/* 목록 카드는 가로 프레임을 유지하면서 세로 사진도 잘림 없이 전체 표시 */
.equipment-image.compact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}
.equipment-image.compact img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 10px;
  background: #ffffff;
}

/* 상세창은 가로 프레임에 억지로 맞추지 않고 원본 비율대로 표시 */
#productModalImage .equipment-image,
#usedModalImage .equipment-image {
  height: auto !important;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: #ffffff;
}
#productModalImage .equipment-image img,
#usedModalImage .equipment-image img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: min(72vh, 760px) !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #ffffff;
}

@media (max-width: 640px) {
  .equipment-image.compact img {
    padding: 8px;
  }
  #productModalImage .equipment-image,
  #usedModalImage .equipment-image {
    min-height: 220px;
    padding: 10px;
  }
  #productModalImage .equipment-image img,
  #usedModalImage .equipment-image img {
    max-height: 65dvh !important;
  }
}
