/* AI CASTER Renewal v2 - production ecommerce catalogue theme */

* {
  box-sizing: border-box;
}

body.caster-v2 {
  --font-display: "Barlow Condensed", sans-serif;
  /* MATCHES HTML */
  --font-body: "Noto Sans KR", sans-serif;
  /* MATCHES HTML */
  --page-max: 1320px;
  --page-gutter: 24px;
  /* Bose Style Palette */
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f8f8f8;
  --line: #e6e6e6;
  --line-strong: #000000;
  --text: #000000;
  --text-soft: #404040;
  --text-muted: #757575;
  /* Spacing System */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  /* Wider spacing */
  --space-xl: 48px;

  --accent: #cc0000;
  /* Bose Red */
  --accent-strong: #a30000;
  --accent-soft: #f5f5f5;

  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  /* Compact Catalog Size */
  line-height: 1.6;
  letter-spacing: normal;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.caster-v2 .mock-page {
  width: 100%;
  margin: 0;
  padding: 0 0 30px;
}

body.caster-v2 .site-shell {
  min-height: 100vh;
  background: transparent;
}

body.caster-v2 .topbar-inner,
body.caster-v2 .masthead-inner,
body.caster-v2 .category-bar-inner,
body.caster-v2 .site-content-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

/* --- E-COMMERCE LAYOUT STRUCTURE --- */

body.caster-v2 .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000000;
  /* Jet Black Header */
  color: #ffffff;
  border-bottom: 1px solid #333;
}

body.caster-v2 .utility-bar {
  background: #000;
  /* Seamless Black */
  border: none;
  color: #999;
}

body.caster-v2 .utility-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 6px var(--page-gutter);
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

body.caster-v2 .utility-inner a {
  text-decoration: none;
  color: inherit;
}

/* Main Header */
body.caster-v2 .main-header {
  padding: 20px 0;
  background: #000;
  /* Full Black */
  color: #fff;
}

body.caster-v2 .header-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: flex;
  align-items: center;
  gap: 40px;
}

body.caster-v2 .brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  /* White Logo */
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

body.caster-v2 .search-container {
  flex: 1;
  width: 100%;
  max-width: 480px;
}

body.caster-v2 .search-form {
  display: flex;
  width: 100%;
  border: 1px solid #cc0000;
  border-radius: 4px;
  overflow: hidden;
}

body.caster-v2 .search-form input {
  flex: 1;
  border: none;
  padding: 12px 15px;
  font-size: 14px;
  outline: none;
}

body.caster-v2 .search-form button {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 0 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

body.caster-v2 .header-actions {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

body.caster-v2 .action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: #fff;
  /* White text for Black Header */
  text-decoration: none;
  gap: 4px;
}

/* GNB */
body.caster-v2 .gnb-bar {
  border-top: 1px solid #333;
  background: #000;
  /* Black GNB */
}

body.caster-v2 .gnb-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: flex;
  gap: 30px;
}

body.caster-v2 .gnb-item {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  color: #999;
  /* Grey text */
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

body.caster-v2 .gnb-item:hover {
  color: #fff;
}

body.caster-v2 .gnb-item.active {
  color: var(--accent);
}

body.caster-v2 .gnb-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

body.caster-v2 .brand-copy {
  display: grid;
  gap: 1px;
}

body.caster-v2 .brand-copy strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.caster-v2 .brand-copy em {
  color: #999;
}

body.caster-v2 .masthead-links a {
  position: relative;
  color: #bbbbbb;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
  transition: color 0.2s;
}

body.caster-v2 .masthead-links a:hover,
body.caster-v2 .masthead-links a.is-active {
  color: #ffffff;
}

body.caster-v2 .masthead-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ffffff;
}

body.caster-v2 .header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.caster-v2 .header-search input,
body.caster-v2 .toolbar input,
body.caster-v2 .toolbar select {
  border: 1px solid #333;
  border-radius: 4px;
  /* Slightly rounded, almost square */
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  padding: 10px 14px;
}

body.caster-v2 .header-search input:focus,
body.caster-v2 .toolbar input:focus,
body.caster-v2 .toolbar select:focus {
  outline: 0;
  border-color: #666;
  background: #222;
  box-shadow: none;
}

body.caster-v2 .header-search button {
  border: none;
  border-radius: 4px;
  background: #333;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s;
}

body.caster-v2 .header-search button:hover {
  background: #555;
}

body.caster-v2 .inquiry-button {
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  padding: 9px 14px;
}

body.caster-v2 .inquiry-button:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
}

body.caster-v2 .category-bar {
  border-top: 1px solid var(--line);
  background: #f8f8f8;
  padding: 9px 0;
}

body.caster-v2 .category-bar-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

body.caster-v2 .category-bar-inner::-webkit-scrollbar {
  display: none;
}

body.caster-v2 .category-bar a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  padding: 7px 11px;
}

body.caster-v2 .category-bar a.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

body.caster-v2 .site-content {
  padding-top: var(--space-lg);
}

body.caster-v2 .site-content-inner {
  display: grid;
  gap: var(--space-lg);
}

body.caster-v2 .menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 80;
}

body.caster-v2 .menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 92vw);
  height: 100vh;
  border-left: 1px solid var(--line);
  background: #ffffff;
  transform: translateX(102%);
  transition: transform 220ms ease;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
}

body.caster-v2 .menu-drawer header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.caster-v2 .drawer-links {
  display: grid;
  gap: 8px;
}

body.caster-v2 .drawer-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
}

body.caster-v2 .drawer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  overflow-y: auto;
}

body.caster-v2 .drawer-gnb {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 15px;
}

body.caster-v2 .drawer-gnb a {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  padding: 8px 0;
  text-decoration: none;
}

body.caster-v2 .drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #eee;
  text-align: center;
}

body.caster-v2 .drawer-tel {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin-top: 10px;
}

body.caster-v2 .drawer-section p {
  margin: 0 0 10px;
  color: #111;
  font-size: 13px;
  font-weight: 800;
}

body.caster-v2 .drawer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

body.caster-v2 .drawer-chips a {
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  padding: 6px 9px;
}

body.caster-v2 .drawer-cta {
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  padding: 9px 13px;
  display: inline-flex;
  justify-content: center;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .menu-drawer {
  transform: translateX(0);
}

body.caster-v2 .hero-copy,
body.caster-v2 .hero-video,
body.caster-v2 .panel,
body.caster-v2 .filter-panel,
body.caster-v2 .catalog-main,
body.caster-v2 .detail-media,
body.caster-v2 .detail-panel,
body.caster-v2 .popular-section,
body.caster-v2 .reel-strip,
body.caster-v2 .notice-board,
body.caster-v2 .related-section {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

body.caster-v2 .eyebrow {
  margin: 0;
  color: #999999;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.caster-v2 .home-panels,
body.caster-v2 .catalog-layout,
body.caster-v2 .detail-layout {
  margin: 0;
  padding: 0;
}

body.caster-v2 .hero-copy {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  /* Blend into section */
  border: none;
  box-shadow: none;
}

body.caster-v2 .hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Expanded vertical gap */
}

body.caster-v2 .hero-line {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  /* Matching image scale */
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  word-break: keep-all;
}

body.caster-v2 .hero-line.muted {
  color: var(--text-muted);
  font-size: clamp(18px, 2vw, 24px);
  /* Secondary scale */
  font-weight: 700;
}

body.caster-v2 .hero-bottom-content {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

body.caster-v2 .hero-copy .hero-lede {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  /* Slightly larger lede for better proportions */
  line-height: 1.6;
  max-width: 48ch;
}

body.caster-v2 .hero-signal-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

body.caster-v2 .hero-signal-row span,
body.caster-v2 .catalog-specs span,
body.caster-v2 .notice-item p span {
  border: none !important;
  background: none !important;
  border-radius: 0 !important;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  display: inline-flex;
  align-items: center;
  text-transform: none !important;
  letter-spacing: normal !important;
  padding: 0 !important;
}

body.caster-v2 .chip-row.compact {
  min-height: 48px;
  /* Fixed height for spec rows */
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 8px;
}

body.caster-v2 .chip-row.compact span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
}

body.caster-v2 .popular-card-body>span,
body.caster-v2 .category-label {
  color: #777777;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  display: block;
}

body.caster-v2 .chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  row-gap: 4px;
}

body.caster-v2 .chip-row span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: var(--line);
  font-weight: 700;
}

body.caster-v2 .hero-cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.caster-v2 .btn,
body.caster-v2 .mini-link,
body.caster-v2 .tool-btn {
  border: 1px solid #000;
  /* Distinct border */
  border-radius: 999px;
  /* Pill Shape */
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 20px;
  /* Compact padding */
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.caster-v2 .btn:hover,
body.caster-v2 .mini-link:hover,
body.caster-v2 .tool-btn:hover {
  background: #000;
  color: #fff;
}

body.caster-v2 .btn-primary {
  background: #000;
  color: #ffffff;
  border-color: #000;
}

body.caster-v2 .btn-primary:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-2px);
}

body.caster-v2 .utility-bar {
  background: #000;
  border: none;
  box-shadow: none;
  color: #fff;
}

body.caster-v2 .stats-strip {
  display: none !important;
  /* Force Hide */
}

body.caster-v2 .hero-photo-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

body.caster-v2 .hero-photo-slideshow .slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: hero-crossfade 16s infinite;
  background: var(--surface-soft);
}

/* 4 slides, 16s total -> 4s per slide */
body.caster-v2 .hero-photo-slideshow .slide-0 {
  animation-delay: 0s;
}

body.caster-v2 .hero-photo-slideshow .slide-1 {
  animation-delay: 4s;
}

body.caster-v2 .hero-photo-slideshow .slide-2 {
  animation-delay: 8s;
}

body.caster-v2 .hero-photo-slideshow .slide-3 {
  animation-delay: 12s;
}

@keyframes hero-crossfade {
  0% {
    opacity: 0;
    transform: scale(1.05);
    z-index: 10;
  }

  5% {
    opacity: 1;
    transform: scale(1.04);
    z-index: 10;
  }

  25% {
    opacity: 1;
    transform: scale(1.00);
    z-index: 10;
  }

  /* Start fading out */
  30% {
    opacity: 0;
    transform: scale(0.99);
    z-index: 0;
  }

  /* Give way to next slide */
  100% {
    opacity: 0;
    transform: scale(0.99);
    z-index: 0;
  }
}

body.caster-v2 .hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 40%);
  pointer-events: none;
  z-index: 20;
}

body.caster-v2 .panel-kicker {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

body.caster-v2 .inquiry-panel {
  background: #111;
  color: #fff;
}

body.caster-v2 .inquiry-panel h3 {
  color: #fff;
  margin-top: 0;
}

body.caster-v2 .inquiry-panel p.panel-desc {
  color: #aaa;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 24px;
}

body.caster-v2 .inquiry-panel .inquiry-metrics article span {
  color: #888;
}

body.caster-v2 .inquiry-panel .inquiry-metrics article strong {
  color: #fff;
}

body.caster-v2 .mt-3 {
  margin-top: 24px;
}

body.caster-v2 .video-label {
  display: none;
}

body.caster-v2 .timeline {
  display: none;
  /* Hide cluttered timeline */
}

body.caster-v2 .timeline div {
  flex: 1;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: background 0.2s ease;
  cursor: pointer;
  /* Add pointer to suggest interactivity */
}

body.caster-v2 .timeline div:hover {
  background: rgba(255, 255, 255, 0.03);
}

body.caster-v2 .timeline div:last-child {
  border-right: none;
}

body.caster-v2 .timeline span {
  color: var(--accent);
  /* Highlight time in red */
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

body.caster-v2 .timeline strong {
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

body.caster-v2 .home-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

body.caster-v2 .panel {
  padding: 32px;
  border: 1px solid #eee;
  /* Soft border */
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Inquiry Panel: Premium Dark Mode ── */
body.caster-v2 .home-panels .panel:first-child {
  background: #111;
  /* Deep Black */
  border: 1px solid #000;
  border-top: 4px solid var(--accent);
  /* Red Accent remains */
  color: #fff;
  position: relative;
  overflow: hidden;
}

body.caster-v2 .home-panels .panel:first-child h3 {
  color: #fff;
}

body.caster-v2 .home-panels .panel:first-child strong,
body.caster-v2 .home-panels .panel:first-child p,
body.caster-v2 .home-panels .panel:first-child li {
  color: #e5e5e5 !important;
}

body.caster-v2 .home-panels .panel:first-child .plain-list li {
  border-left-color: var(--accent);
  color: #ccc !important;
}

body.caster-v2 .home-panels .panel:first-child .chip-row span {
  background: #222;
  border: 1px solid #333;
  color: #fff;
}

body.caster-v2 .home-panels .panel:first-child .btn-primary {
  background: #fff;
  /* High Contrast White Button */
  color: #000;
  font-weight: 800;
}

body.caster-v2 .home-panels .panel:first-child .btn-primary:hover {
  background: #e5e5e5;
  color: #000;
}

body.caster-v2 .home-panels .panel:first-child .inquiry-metrics article {
  background: #1a1a1a;
  border-color: #333;
}

body.caster-v2 .home-panels .panel:first-child .inquiry-metrics span {
  color: #888;
}

body.caster-v2 .home-panels .panel:first-child .inquiry-metrics strong {
  color: #fff !important;
}

/* ── Category Panel: Clean ── */
body.caster-v2 .home-panels .panel:last-child {
  background: transparent;
}

@media (max-width: 768px) {
  body.caster-v2 .panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
}


body.caster-v2 .panel h3,
body.caster-v2 .section-head h3,
body.caster-v2 .reel-strip h3,
body.caster-v2 .detail-panel h2,
body.caster-v2 .filter-panel h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

body.caster-v2 .panel h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

body.caster-v2 .plain-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

body.caster-v2 .plain-list li {
  border-left: 2px solid var(--accent);
  color: var(--text-soft);
  font-size: 12.5px;
  line-height: 1.6;
  padding-left: 12px;
}

body.caster-v2 .chip-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

body.caster-v2 .chip-row.compact {
  margin-top: 2px;
}

body.caster-v2 .category-cards-ecom {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

@media (max-width: 768px) {
  body.caster-v2 .category-cards-ecom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

body.caster-v2 .category-card-link {
  border: 1px solid #e5e5e5;
  border-radius: 0;
  /* Boxy */
  background: #fcfcfc;
  color: inherit;
  text-decoration: none;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.2s ease;
  position: relative;
}

body.caster-v2 .category-card-link:hover {
  border-color: #000;
  background: #fff;
  transform: none;
  /* No lift */
  box-shadow: none;
}

body.caster-v2 .popular-card,
body.caster-v2 .related-card {
  border: none;
  /* No border for product cards */
  border-radius: 0;
  background: transparent;
  overflow: visible;
  transition: opacity 0.2s;
}

body.caster-v2 .popular-card:hover,
body.caster-v2 .related-card:hover {
  opacity: 0.8;
  transform: none;
  box-shadow: none;
}

body.caster-v2 .popular-card .preview-link img,
body.caster-v2 .related-card .preview-link img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #f5f5f5;
  mix-blend-mode: multiply;
  margin-bottom: 12px;
}

body.caster-v2 .popular-card-body,
body.caster-v2 .related-card .preview-link div {
  padding: 0;
  /* Remove padding */
  display: grid;
  gap: 4px;
}

body.caster-v2 .popular-card-body p,
body.caster-v2 .related-card .preview-link p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

body.caster-v2 .popular-card-body>span,
body.caster-v2 .related-card .preview-link span {
  color: var(--text-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.caster-v2 .popular-actions,
body.caster-v2 .catalog-actions {
  display: flex;
  gap: 6px;
  margin-top: 15px;
}

body.caster-v2 .notice-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.caster-v2 .notice-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  padding: 16px;
  display: grid;
  gap: 6px;
  transition: border-color 180ms ease;
}

body.caster-v2 .notice-item:hover {
  border-color: var(--line-strong);
}

body.caster-v2 .notice-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.caster-v2 .notice-item h4 {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

body.caster-v2 .catalog-layout {
  display: grid;
  grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  gap: 14px;
}

body.caster-v2 .catalog-layout .filter-panel {
  position: sticky;
  top: 118px;
  align-self: start;
  padding: 15px;
}

body.caster-v2 .filter-panel h2 {
  margin-top: 8px;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 0.98;
}

body.caster-v2 .filter-panel p {
  margin: 9px 0 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.56;
}

body.caster-v2 .sidebar-metrics {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

body.caster-v2 .sidebar-metrics article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 8px;
  display: grid;
  gap: 3px;
}

body.caster-v2 .sidebar-metrics span {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
}

body.caster-v2 .sidebar-metrics strong {
  color: var(--text);
  font-size: 20px;
  line-height: 1;
}

body.caster-v2 .filter-list {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

body.caster-v2 .category-filter-list {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr;
  max-height: 360px;
  overflow-y: auto;
}

body.caster-v2 .btn,
body.caster-v2 button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  /* Pill shape like Bose */
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

body.caster-v2 .btn-primary,
body.caster-v2 button.primary {
  background: var(--accent);
  color: #ffffff;
}

body.caster-v2 .btn-primary:hover,
body.caster-v2 button.primary:hover {
  background: var(--accent-strong);
  transform: scale(1.02);
}

body.caster-v2 .btn-secondary {
  background: transparent;
  border: 2px solid #000;
  color: #000;
}

body.caster-v2 .btn-secondary:hover {
  background: #000;
  color: #fff;
}

body.caster-v2 .pill {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--text-muted);
  text-decoration: none;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 10px;
}

body.caster-v2 .pill.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

body.caster-v2 .catalog-main {
  padding: 12px;
}

body.caster-v2 .toolbar {
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}

body.caster-v2 .toolbar input {
  flex: 1;
  min-width: 0;
}

body.caster-v2 .toolbar select {
  min-width: 120px;
}

body.caster-v2 .counter {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  padding: 6px 10px;
}

body.caster-v2 .active-filters {
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

body.caster-v2 .filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
}

body.caster-v2 .filter-chip.is-default {
  color: var(--text-muted);
  background: var(--surface-soft);
}

body.caster-v2 .result-hint {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 11px;
}

body.caster-v2 .product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

body.caster-v2 .product-card {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}

body.caster-v2 .product-link {
  display: flex;
  flex: 1;
  flex-direction: column;
}

body.caster-v2 .media {
  border-bottom: 1px solid var(--line);
  background: #f8fafd;
}

body.caster-v2 .media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  padding: 12px;
}

body.caster-v2 .product-card .content {
  padding: 10px 10px 8px;
  display: grid;
  gap: 6px;
}

body.caster-v2 .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

body.caster-v2 .sku {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
}

body.caster-v2 .media-kind {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
}

body.caster-v2 .media-kind.is-video {
  border-color: rgba(212, 58, 74, 0.42);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

body.caster-v2 .product-card h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.28;
  min-height: 2.4em;
}

body.caster-v2 .footer-info p {
  margin: 4px 0;
  color: #64748b;
  /* Muted slate */
  font-size: 13px;
}

body.caster-v2 .footer-copy {
  margin-top: 16px;
  color: #94a3b8;
  /* Very muted */
  font-size: 12px;
}

body.caster-v2 .card-category {
  margin: 0;
  color: var(--text-soft);
  font-size: 10px;
}

body.caster-v2 .catalog-specs {
  margin-top: 1px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

body.caster-v2 .catalog-specs span {
  font-size: 9px;
  padding: 3px 6px;
}

body.caster-v2 .catalog-actions {
  padding: 0 10px 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

body.caster-v2 .catalog-actions .mini-link {
  justify-content: center;
  text-align: center;
  font-size: 11px;
  padding: 6px 8px;
}

body.caster-v2 .empty-state {
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
  padding: 30px 10px;
}

body.caster-v2 .product-grid>.empty-state,
body.caster-v2 .popular-grid>.empty-state,
body.caster-v2 .related-grid>.empty-state,
body.caster-v2 .reel-grid>.empty-state {
  grid-column: 1 / -1;
}

body.caster-v2 .breadcrumb {
  margin: 0;
  color: var(--text-muted);
  font-size: 11px;
}

body.caster-v2 .detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 14px;
}

body.caster-v2 .detail-media,
body.caster-v2 .detail-panel {
  padding: 12px;
}

body.caster-v2 .main-player {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

body.caster-v2 .main-player figcaption {
  border-top: 1px solid var(--line);
  background: #f8fafd;
  color: var(--text);
  font-size: 11px;
  padding: 8px 9px;
}

body.caster-v2 .video-playlist {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

body.caster-v2 .video-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--text-muted);
  text-align: left;
  padding: 8px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

body.caster-v2 .video-item.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

body.caster-v2 .video-item-copy {
  display: grid;
  gap: 2px;
}

body.caster-v2 .video-item strong {
  color: var(--text);
  font-size: 11px;
}

body.caster-v2 .video-item span {
  font-size: 10px;
}

body.caster-v2 .playlist-thumb {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #edf2f8;
  object-fit: cover;
  display: block;
}

body.caster-v2 .playlist-thumb.is-empty {
  background: var(--surface-soft);
}

body.caster-v2 .detail-panel h2 {
  margin-top: 8px;
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1.08;
}

body.caster-v2 .summary {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.58;
}

body.caster-v2 .meta-grid {
  margin-top: 11px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

body.caster-v2 .meta-grid div,
body.caster-v2 .spec-box dl div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 8px 10px;
}

body.caster-v2 .meta-grid span,
body.caster-v2 .spec-box dt {
  color: var(--text-muted);
  font-size: 10px;
}

body.caster-v2 .meta-grid strong,
body.caster-v2 .spec-box dd {
  color: var(--text);
  font-size: 12px;
}

body.caster-v2 .action-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.caster-v2 .purchase-flow {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 10px;
}

body.caster-v2 .purchase-flow h3 {
  margin: 0;
  font-size: 13px;
}

body.caster-v2 .purchase-flow ol {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 12px;
  display: grid;
  gap: 5px;
}

body.caster-v2 .spec-box {
  margin-top: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 10px;
}

body.caster-v2 .spec-box header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

body.caster-v2 .spec-box header h3 {
  margin: 0;
  font-size: 14px;
}

body.caster-v2 .spec-box header span {
  color: var(--text-muted);
  font-size: 10px;
}

body.caster-v2 .spec-box dl {
  margin: 0;
  display: grid;
  gap: 6px;
}

body.caster-v2 .spec-box dt,
body.caster-v2 .spec-box dd {
  margin: 0;
}

body.caster-v2 .category-panels {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.caster-v2 .category-panel-card {
  display: grid;
  gap: 10px;
}

body.caster-v2 .category-cta {
  margin-top: 0;
}

body.caster-v2 .media-placeholder {
  min-height: 180px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  background: var(--surface-soft);
}

body.caster-v2 .media-placeholder.inverse {
  border-color: #2b3648;
  color: rgba(237, 242, 249, 0.72);
  background: #141c2a;
}

body.caster-v2 img.is-placeholder,
body.caster-v2 img.is-missing,
body.caster-v2 .playlist-thumb.is-empty {
  object-fit: contain;
  background: #eef2f8;
}

@media (max-width: 1260px) {

  body.caster-v2 .product-grid,
  body.caster-v2 .popular-grid,
  body.caster-v2 .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {

  body.caster-v2 .home-hero,
  body.caster-v2 .catalog-layout,
  body.caster-v2 .detail-layout {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .catalog-layout .filter-panel {
    position: static;
  }

  body.caster-v2 .notice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 941px) {

  body.caster-v2 .menu-toggle,
  body.caster-v2 .menu-backdrop,
  body.caster-v2 .menu-drawer {
    display: none;
  }
}

@media (max-width: 940px) {
  body.caster-v2 {
    --page-gutter: 14px;
  }

  body.caster-v2 .topbar-links {
    display: none;
  }

  body.caster-v2 .masthead-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px;
  }

  body.caster-v2 .masthead-links {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  body.caster-v2 .header-search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  body.caster-v2 .inquiry-button {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  body.caster-v2 .home-panels,
  body.caster-v2 .category-panels {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .hero-copy h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  body.caster-v2 .panel h3 {
    font-size: clamp(24px, 8vw, 30px);
  }

  body.caster-v2 .toolbar {
    flex-wrap: wrap;
  }

  body.caster-v2 .toolbar input {
    flex-basis: 100%;
  }
}

@media (max-width: 760px) {
  body.caster-v2 .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.caster-v2 .section-head h3 {
    font-size: clamp(22px, 7vw, 28px);
  }

  body.caster-v2 .product-grid,
  body.caster-v2 .popular-grid,
  body.caster-v2 .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.caster-v2 .notice-list,
  body.caster-v2 .reel-grid {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .category-cards-ecom {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .video-playlist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {

  body.caster-v2 .hero-copy,
  body.caster-v2 .hero-video,
  body.caster-v2 .panel,
  body.caster-v2 .filter-panel,
  body.caster-v2 .catalog-main,
  body.caster-v2 .detail-media,
  body.caster-v2 .detail-panel,
  body.caster-v2 .popular-section,
  body.caster-v2 .reel-strip,
  body.caster-v2 .notice-board,
  body.caster-v2 .related-section {
    padding: 12px;
  }

  body.caster-v2 .filter-list {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .meta-grid,
  body.caster-v2 .sidebar-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {

  body.caster-v2 .meta-grid,
  body.caster-v2 .sidebar-metrics,
  body.caster-v2 .stats-strip {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .action-row {
    flex-direction: column;
  }
}

/* v17 ecommerce refinement: keep mock2 identity, improve production UX density */
body.caster-v2 {
  --font-display: "Sora", "Pretendard", sans-serif;
  --font-body: "Pretendard", "Segoe UI", sans-serif;
  --bg: #eceef1;
  --surface: #ffffff;
  --surface-soft: #f6f7fa;
  --line: #d4d9e2;
  --line-strong: #aab3c3;
  --text: #171a21;
  --text-soft: #3a4150;
  --text-muted: #6d7688;
  --accent: #d43a4a;
  --accent-strong: #b52a3a;
  --accent-soft: #fff2f5;
  background: var(--bg);
}

body.caster-v2 .site-header {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  backdrop-filter: none;
}

body.caster-v2 .topbar {
  border-bottom: 1px solid var(--line);
  background: #f4f5f8;
}

body.caster-v2 .site-content-inner {
  gap: 12px;
}

body.caster-v2 .hero-copy,
body.caster-v2 .hero-video,
body.caster-v2 .panel,
body.caster-v2 .filter-panel,
body.caster-v2 .catalog-main,
body.caster-v2 .detail-media,
body.caster-v2 .detail-panel,
body.caster-v2 .popular-section,
body.caster-v2 .reel-strip,
body.caster-v2 .notice-board,
body.caster-v2 .related-section {
  border-radius: 8px;
  box-shadow: none;
}

body.caster-v2 .menu-toggle,
body.caster-v2 .menu-close,
body.caster-v2 .header-search input,
body.caster-v2 .header-search button,
body.caster-v2 .inquiry-button,
body.caster-v2 .category-bar a,
body.caster-v2 .btn,
body.caster-v2 .mini-link,
body.caster-v2 .tool-btn,
body.caster-v2 .pill,
body.caster-v2 .counter,
body.caster-v2 .filter-chip,
body.caster-v2 .media-kind {
  border-radius: 6px;
}

body.caster-v2 .header-search input,
body.caster-v2 .toolbar input,
body.caster-v2 .toolbar select {
  border-radius: 6px;
  font-size: 12px;
}

body.caster-v2 .header-search button,
body.caster-v2 .inquiry-button {
  font-size: 11px;
  letter-spacing: 0.01em;
}

body.caster-v2 .home-hero {
  gap: 10px;
}

body.caster-v2 .hero-copy {
  padding: 18px;
}

body.caster-v2 .hero-copy h2 {
  margin: 8px 0 10px;
  max-width: 10.5ch;
  font-size: clamp(56px, 5vw, 86px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

body.caster-v2 .hero-copy p {
  font-size: 11px;
  line-height: 1.45;
  max-width: 54ch;
}

body.caster-v2 .hero-signal-row span,
body.caster-v2 .catalog-specs span,
body.caster-v2 .chip-row span,
body.caster-v2 .notice-item p span {
  border-radius: 4px;
  background: #f4f5f8;
  border: 1px solid transparent;
  /* cleaner look */
  color: #5f697d;
}

body.caster-v2 .chip-row span {
  background: transparent;
  border: 1px solid #e2e5ec;
  color: #6a778d;
}

body.caster-v2 .btn,
body.caster-v2 .mini-link,
body.caster-v2 .tool-btn {
  font-size: 11px;
  padding: 7px 10px;
}

body.caster-v2 .mini-link.is-primary {
  border-color: #171a21;
  background: #171a21;
  color: #ffffff;
}

body.caster-v2 .mini-link.is-primary:hover {
  border-color: #2b3141;
  background: #2b3141;
}

body.caster-v2 .stats-strip article {
  border-radius: 6px;
}

body.caster-v2 .stats-strip strong {
  font-size: 21px;
}

body.caster-v2 .hero-video {
  padding: 10px;
  border-color: #222a38;
  border-width: 2px;
  border-radius: 8px;
}

body.caster-v2 .hero-video video,
body.caster-v2 .main-player video,
body.caster-v2 .hero-video img {
  border-radius: 4px;
}

body.caster-v2 .timeline div {
  border-radius: 4px;
}

body.caster-v2 .panel {
  padding: 14px;
}

body.caster-v2 .panel h3 {
  font-size: clamp(36px, 3vw, 52px);
  line-height: 0.96;
}

body.caster-v2 .inquiry-metrics {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body.caster-v2 .inquiry-metrics article {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
  padding: 8px;
  display: grid;
  gap: 2px;
}

body.caster-v2 .inquiry-metrics span {
  color: var(--text-muted);
  font-size: 10px;
}

body.caster-v2 .inquiry-metrics strong {
  color: var(--text);
  font-size: 12px;
}

body.caster-v2 .plain-list li {
  font-size: 11px;
}

body.caster-v2 .category-cards-ecom {
  grid-template-columns: 1fr;
}

body.caster-v2 .category-card-link {
  border-radius: 6px;
  padding: 10px;
  gap: 5px;
}

body.caster-v2 .category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

body.caster-v2 .category-head strong {
  font-size: 12px;
}

body.caster-v2 .category-head em {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
  color: var(--text-soft);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  padding: 2px 6px;
}

body.caster-v2 .category-card-link span {
  color: var(--text-muted);
  font-size: 10px;
}

body.caster-v2 .category-card-link small {
  color: #8b93a4;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.caster-v2 .section-head {
  margin-bottom: 8px;
}

body.caster-v2 .section-head h3 {
  font-size: clamp(20px, 1.8vw, 28px);
}

body.caster-v2 .popular-grid,
body.caster-v2 .related-grid {
  gap: 8px;
}

body.caster-v2 .popular-card,
body.caster-v2 .related-card,
body.caster-v2 .product-card {
  border-radius: 6px;
}

body.caster-v2 .popular-card-body p,
body.caster-v2 .related-card .preview-link p {
  font-size: 12px;
}

body.caster-v2 .popular-actions,
body.caster-v2 .catalog-actions {
  gap: 5px;
}

body.caster-v2 .reel-strip {
  border-color: #202733;
}

body.caster-v2 .notice-list {
  gap: 8px;
}

body.caster-v2 .notice-item {
  border-radius: 6px;
}

body.caster-v2 .catalog-layout {
  grid-template-columns: minmax(250px, 280px) minmax(0, 1fr);
  gap: 10px;
}

body.caster-v2 .catalog-layout .filter-panel {
  top: 106px;
  padding: 12px;
}

body.caster-v2 .filter-panel h2 {
  margin-top: 7px;
  font-size: clamp(32px, 2.9vw, 64px);
  line-height: 0.9;
}

body.caster-v2 .filter-panel p {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.45;
}

body.caster-v2 .sidebar-metrics article {
  border-radius: 6px;
}

body.caster-v2 .sidebar-metrics strong {
  font-size: 17px;
}

body.caster-v2 .filter-group {
  margin-top: 10px;
}

body.caster-v2 .filter-group h3 {
  margin: 0 0 6px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.caster-v2 .filter-list {
  margin-top: 0;
  gap: 5px;
}

body.caster-v2 .category-filter-list {
  max-height: 260px;
}

body.caster-v2 .pill {
  font-size: 10px;
  padding: 7px 9px;
}

body.caster-v2 .panel-cta {
  margin-top: 10px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--accent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 10px;
  display: inline-flex;
  justify-content: center;
}

body.caster-v2 .panel-cta:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
}

body.caster-v2 .catalog-main {
  padding: 10px;
}

body.caster-v2 .catalog-head {
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
  padding: 8px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.caster-v2 .catalog-head h3 {
  margin: 2px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

body.caster-v2 .toolbar {
  margin-bottom: 7px;
  border-radius: 6px;
  padding: 7px;
}

body.caster-v2 .counter {
  border-radius: 5px;
  padding: 6px 9px;
}

body.caster-v2 .active-filters {
  margin-bottom: 7px;
  gap: 5px;
}

body.caster-v2 .filter-chip {
  border-radius: 4px;
  font-size: 9px;
  padding: 3px 7px;
}

body.caster-v2 .result-hint {
  margin-bottom: 8px;
  font-size: 10px;
}

body.caster-v2 .product-grid {
  gap: 8px;
}

body.caster-v2 .media img {
  padding: 8px;
}

body.caster-v2 .product-card .content {
  padding: 8px;
  gap: 5px;
}

body.caster-v2 .product-card h3 {
  font-size: 12px;
}

body.caster-v2 .media-kind {
  border-radius: 4px;
  font-size: 8px;
  padding: 2px 6px;
}

body.caster-v2 .catalog-actions {
  padding: 0 8px 8px;
  gap: 5px;
}

body.caster-v2 .catalog-actions .mini-link {
  border-radius: 4px;
  font-size: 10px;
  padding: 5px 6px;
}

body.caster-v2 .empty-state {
  border-radius: 6px;
}

@media (max-width: 1120px) {

  body.caster-v2 .catalog-layout,
  body.caster-v2 .home-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 940px) {
  body.caster-v2 .hero-copy h2 {
    max-width: 100%;
    font-size: clamp(46px, 13vw, 66px);
  }

  body.caster-v2 .panel h3 {
    font-size: clamp(30px, 9vw, 42px);
  }

  body.caster-v2 .catalog-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  body.caster-v2 .inquiry-metrics {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .catalog-main {
    padding: 8px;
  }

  body.caster-v2 .product-grid,
  body.caster-v2 .popular-grid,
  body.caster-v2 .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {

  body.caster-v2 .product-grid,
  body.caster-v2 .popular-grid,
  body.caster-v2 .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Footer */
body.caster-v2 .site-footer {
  margin-top: 60px;
  border-top: 1px solid #ddd;
  background: #f9f9f9;
  font-size: 12px;
  color: #666;
}

body.caster-v2 .footer-upper {
  border-bottom: 1px solid #eee;
}

body.caster-v2 .footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 40px var(--page-gutter);
  display: flex;
  justify-content: space-between;
  /* Force Left/Right separation */
  align-items: flex-start;
  gap: 40px;
}

@media (max-width: 768px) {
  body.caster-v2 .footer-inner {
    flex-direction: column;
    gap: 30px;
  }
}


body.caster-v2 .footer-links {
  display: flex;
  gap: 20px;
}

body.caster-v2 .footer-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

body.caster-v2 .footer-main {
  padding: 40px var(--page-gutter);
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

body.caster-v2 .company-info h4 {
  font-size: 14px;
  margin: 0 0 10px;
  color: #111;
}

body.caster-v2 .company-info p {
  margin: 4px 0;
  line-height: 1.5;
}

body.caster-v2 .cs-center h4 {
  font-size: 14px;
  margin: 0 0 10px;
  color: #111;
}

body.caster-v2 .cs-center .phone {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 940px) {
  body.caster-v2 .gnb-inner {
    display: none;
  }

  /* Hide GNB on mobile, use Drawer */
  body.caster-v2 .search-container {
    display: none;
  }

  /* Simplified mobile header */
  body.caster-v2 .header-actions span {
    display: none;
  }

  body.caster-v2 .footer-main {
    grid-template-columns: 1fr;
  }
}

/* --- PROFESSIONAL B2B STYLES (v17 Refactor) --- */
body.caster-v2 .utility-item {
  font-size: 11px;
  color: #666;
  text-decoration: none;
}

body.caster-v2 .utility-item b {
  color: #333;
}

body.caster-v2 .utility-divider {
  margin: 0 8px;
  color: #ddd;
}

body.caster-v2 .utility-inner {
  justify-content: flex-end;
  display: flex;
  align-items: center;
}

body.caster-v2 .brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}

body.caster-v2 .brand-text {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #000;
}

body.caster-v2 .brand-sub {
  font-size: 11px;
  font-weight: 500;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

body.caster-v2 .action-btn.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

body.caster-v2 .action-btn.primary:hover {
  background: #1d4ed8;
}

body.caster-v2 .menu-toggle {
  width: auto;
  padding: 0 12px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.caster-v2 .menu-label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

@media (min-width: 941px) {
  body.caster-v2 .brand-sub {
    display: block;
  }
}


/* --- Search & Category Enhancements (v17) --- */
body.caster-v2 .empty-state {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  background: #f8f9fa;
  border: 1px dashed #d1d5db;
  border-radius: 8px;
  color: #4b5563;
  margin-top: 20px;
}

body.caster-v2 .empty-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

body.caster-v2 .empty-text strong {
  display: block;
  font-size: 16px;
  color: #111;
  margin-bottom: 8px;
}

body.caster-v2 .empty-text p {
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 16px;
}

body.caster-v2 .category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

body.caster-v2 .category-panel-card h3 {
  margin: 0;
  font-size: 18px;
}

body.caster-v2 .category-panel-card .badge {
  background: #eef2ff;
  color: #4338ca;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 99px;
}

body.caster-v2 .chip-row span {
  background: #f3f4f6;
  color: #374151;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
}


/* --- B2B E-commerce Standard Styles (v18 Refactor) --- */

/* 1. Utility Bar */
body.caster-v2 .utility-bar {
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
  padding: 8px 0;
  font-size: 11px;
  color: #666;
}

body.caster-v2 .utility-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.caster-v2 .utility-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.caster-v2 .utility-item {
  color: #555;
  text-decoration: none;
}

body.caster-v2 .utility-item:hover {
  text-decoration: underline;
  color: #fff;
}

body.caster-v2 .utility-divider {
  color: #ccc;
  font-size: 9px;
}

/* 2. Main Header */
body.caster-v2 .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #111;
  /* Strong divider for GNB */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

body.caster-v2 .header-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 20px var(--page-gutter);
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Brand */
body.caster-v2 .brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

body.caster-v2 .brand-text {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: #000;
  letter-spacing: -0.5px;
  line-height: 1;
}

body.caster-v2 .brand-sub {
  font-size: 10px;
  color: #666;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 500;
}

/* Wide Search Bar */
body.caster-v2 .search-container {
  flex: 1;
  max-width: 480px;
}

body.caster-v2 .home-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px 60px;
  min-height: auto;
  align-items: stretch;
  /* Sync height between text and image */
}

@media (max-width: 1024px) {
  body.caster-v2 .home-hero {
    grid-template-columns: 1fr;
    padding: 100px 20px 40px;
    gap: 30px;
    text-align: center;
  }

  body.caster-v2 .hero-copy {
    align-items: center;
    padding: 0;
  }

  body.caster-v2 .hero-photo-slideshow {
    min-height: 400px;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  body.caster-v2 .home-hero {
    padding-top: 80px;
  }

  body.caster-v2 .hero-line {
    font-size: 28px;
  }

  body.caster-v2 .hero-line.muted {
    font-size: 20px;
  }

  body.caster-v2 .hero-photo-slideshow {
    min-height: 300px;
  }
}

body.caster-v2 .search-form {
  display: flex;
  border: 2px solid #111;
  /* Monochrome */
  border-radius: 4px;
  /* Standard rect */
  overflow: hidden;
}

body.caster-v2 .search-form input {
  flex: 1;
  border: none;
  padding: 12px 15px;
  font-size: 14px;
  outline: none;
}

body.caster-v2 .search-form button {
  background: #111;
  color: #fff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.caster-v2 .search-form button:hover {
  background: #333;
}

/* Header Actions */
body.caster-v2 .header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

body.caster-v2 .inquiry-info {
  text-align: right;
  line-height: 1.2;
  display: none;
  /* Show on wider screens */
}

@media (min-width: 1024px) {
  body.caster-v2 .inquiry-info {
    display: block;
  }
}

body.caster-v2 .inquiry-info .label {
  font-size: 11px;
  color: #666;
  display: block;
}

body.caster-v2 .inquiry-info .phone {
  font-size: 16px;
  color: #111;
  font-weight: 800;
  display: block;
}

body.caster-v2 .action-btn.primary {
  background: #111;
  /* Professional Dark */
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

body.caster-v2 .action-btn.primary:hover {
  background: #333;
}

/* 3. GNB */
body.caster-v2 .gnb-bar {
  border-top: 1px solid #eee;
  /* Separator inside header */
}

body.caster-v2 .gnb-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: flex;
  gap: 30px;
  height: 48px;
  align-items: center;
}

body.caster-v2 .gnb-item {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 16px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

body.caster-v2 .gnb-item:hover,
body.caster-v2 .gnb-item.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* 4. Footer Refinement */
body.caster-v2 .site-footer {
  margin-top: 80px;
  border-top: 1px solid #ddd;
  background: #f9f9f9;
  font-size: 12px;
  color: #555;
  padding-bottom: 40px;
}

body.caster-v2 .footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

body.caster-v2 .footer-upper {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

body.caster-v2 .footer-links {
  display: flex;
  gap: 20px;
}

body.caster-v2 .footer-links a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

body.caster-v2 .footer-main {
  padding-top: 30px;
  width: 100%;
  background: #f9f9f9;
}

body.caster-v2 .company-info {
  /* flex: 2 removed to allow space-between to work */
}

body.caster-v2 .company-info h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #111;
}

body.caster-v2 .company-info address {
  font-style: normal;
  line-height: 1.6;
}

body.caster-v2 .company-info p {
  margin: 4px 0;
}

body.caster-v2 .divider {
  color: #ddd;
  margin: 0 6px;
}

body.caster-v2 .cs-center {
  /* flex: 1 removed */
  text-align: right;
}

body.caster-v2 .cs-center h4 {
  font-size: 13px;
  font-weight: 700;
  color: #666;
  margin-bottom: 8px;
}

body.caster-v2 .cs-phone {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  display: block;
  margin-bottom: 5px;
}

body.caster-v2 .cs-hours {
  font-size: 12px;
  color: #888;
  margin-bottom: 15px;
}

body.caster-v2 .btn-outline {
  border: 1px solid #ccc;
  background: #fff;
  padding: 6px 12px;
  font-size: 11px;
  color: #333;
  text-decoration: none;
  border-radius: 3px;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
  body.caster-v2 .gnb-bar {
    display: none;
  }

  /* Hide GNB on mobile */
  body.caster-v2 .utility-right {
    display: none;
  }

  body.caster-v2 .header-inner {
    padding: 15px var(--page-gutter);
    gap: 15px;
  }

  body.caster-v2 .search-container {
    order: 2;
    width: 100%;
    max-width: none;
    margin-top: 10px;
    display: none;
    /* Initially hide big search on mobile? or make it toggle? For now let's keep it if space allows, or hide it. */
  }

  /* Mobile Header Layout */
  body.caster-v2 .site-header .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  body.caster-v2 .search-container {
    display: block;
    order: 3;
    width: 100%;
    margin-top: 10px;
  }

  body.caster-v2 .header-actions {
    gap: 10px;
  }

  body.caster-v2 .inquiry-info {
    display: none;
  }

  body.caster-v2 .action-btn {
    display: none;
  }

  /* Hide Inquiry btn on very small header, stick to drawer or bottom bar */
  body.caster-v2 .pc-hidden {
    display: inline-flex;
  }

  /* Show menu toggle */

  body.caster-v2 .footer-main {
    flex-direction: column;
    gap: 20px;
  }
}

body.caster-v2 .pc-hidden {
  display: none;
}

@media (max-width: 768px) {
  body.caster-v2 .pc-hidden {
    display: inline-flex;
  }
}

/* Empty State Fix (ensure it uses full width) */
body.caster-v2 .empty-state {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  background: #f8f9fa;
  border: 1px dashed #d1d5db;
  border-radius: 8px;
  color: #4b5563;
  margin-top: 20px;
}

body.caster-v2 .empty-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

body.caster-v2 .empty-text strong {
  display: block;
  font-size: 16px;
  color: #111;
  margin-bottom: 8px;
}

body.caster-v2 .empty-text p {
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 16px;
}

body.caster-v2 .category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

body.caster-v2 .category-panel-card h3 {
  margin: 0;
  font-size: 18px;
}

body.caster-v2 .category-panel-card .badge {
  background: #eef2ff;
  color: #4338ca;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 99px;
}

body.caster-v2 .chip-row span {
  background: #f3f4f6;
  color: #374151;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
}

/* --- PDP Refinements (Spec Table & Mobile CTA) --- */
body.caster-v2 .spec-table-container {
  margin-top: 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow-x: auto;
  background: #fff;
}

body.caster-v2 .spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

body.caster-v2 .spec-table th,
body.caster-v2 .spec-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  line-height: 1.4;
}

body.caster-v2 .spec-table tr:last-child th,
body.caster-v2 .spec-table tr:last-child td {
  border-bottom: none;
}

body.caster-v2 .spec-table th {
  background: var(--surface-soft);
  color: var(--text-soft);
  font-weight: 700;
  width: 30%;
  border-right: 1px solid var(--line);
  padding: 12px 16px;
  /* Comfortable padding */
}

body.caster-v2 .spec-table td {
  color: var(--text);
  padding: 12px 16px;
}

/* Mobile Sticky CTA */
@media (max-width: 560px) {
  body.caster-v2 {
    padding-bottom: 70px;
    /* Space for sticky bar */
  }

  body.caster-v2 .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 12px 16px;
    z-index: 900;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 10px;
  }

  body.caster-v2 .mobile-cta .btn {
    flex: 1;
    height: 48px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 561px) {
  body.caster-v2 .mobile-cta {
    display: none;
  }
}

/* Search Empty State */
.empty-state-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  color: #666;
  background: var(--bg-surface);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin: 20px 0;
  min-height: 300px;
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.empty-message {
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.btn-reset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 99px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-reset:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Category Sidebar Hover Styles */
@media (min-width: 561px) {
  .filter-list .category-item {
    position: relative;
    margin-bottom: 2px;
  }

  .filter-list .category-item>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  .filter-list .category-item>a:hover {
    background: #f5f5f5;
    color: #0066cc;
  }

  .filter-list .category-item>a.is-active {
    background: #e6f7ff;
    color: #0066cc;
    font-weight: 600;
  }

  .filter-list .category-item .toggle-icon {
    font-size: 10px;
    color: #999;
    transition: transform 0.2s;
  }

  /* Sub-filter hidden by default */
  .filter-list .category-item .sub-filter {
    max-height: 0;
    overflow: hidden;
    padding-left: 15px;
    margin-top: 0;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }

  /* Show on hover */
  .filter-list .category-item:hover>.sub-filter,
  .filter-list .category-item .sub-filter:hover {
    max-height: 800px;
    margin-top: 2px;
  }

  .filter-list .sub-filter .category-item>a {
    padding: 6px 10px;
    font-size: 0.95em;
    color: #555;
  }

  .filter-list .sub-filter .category-item>a:hover {
    color: #0066cc;
    background: none;
    text-decoration: underline;
  }

  .filter-list .sub-filter .category-item>a.is-active {
    color: #0066cc;
    font-weight: 600;
  }
}

/* --- PDP RENEWAL STYLES (v17 Refined) --- */
body.caster-v2 .product-detail-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 80px;
  /* Space for mobile sticky CTA */
}

body.caster-v2 .product-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

body.caster-v2 .product-info-panel h1 {
  font-size: 28px;
  margin: 0 0 10px;
  color: #111;
  font-weight: 800;
  line-height: 1.2;
}

body.caster-v2 .product-info-panel .summary {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

body.caster-v2 .product-meta-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 24px;
  font-size: 14px;
  margin-bottom: 30px;
  background: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #eee;
}

body.caster-v2 .product-meta-grid span {
  color: #666;
  font-weight: 500;
}

body.caster-v2 .product-meta-grid strong {
  color: #111;
  font-weight: 700;
}

/* Tab Navigation */
body.caster-v2 .pdp-tabs {
  border-bottom: 2px solid #eee;
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

body.caster-v2 .tab-btn {
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

body.caster-v2 .tab-btn:hover {
  color: #333;
}

body.caster-v2 .tab-btn.active {
  color: #d43a4a;
  font-weight: 700;
}

body.caster-v2 .tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d43a4a;
}

/* Tab Content Areas */
body.caster-v2 .tab-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

body.caster-v2 .tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Spec Table in Tab */
body.caster-v2 .spec-table-container {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

body.caster-v2 .spec-table th {
  background: #f8f9fa;
  width: 25%;
  color: #333;
  font-weight: 600;
}

/* Media Grid for Gallery Tab */
body.caster-v2 .media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

body.caster-v2 .media-item {
  aspect-ratio: 16/9;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--line);
}

body.caster-v2 .media-item img,
body.caster-v2 .media-item video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
  mix-blend-mode: multiply;
}

/* Inquiry Checklist */
body.caster-v2 .check-list {
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
}

body.caster-v2 .check-list h3 {
  margin: 0 0 20px;
  font-size: 18px;
  color: #111;
}

body.caster-v2 .check-list ul {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.caster-v2 .check-list li {
  font-size: 15px;
  color: #444;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  body.caster-v2 .product-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.caster-v2 .product-info-panel h1 {
    font-size: 24px;
  }

  body.caster-v2 .product-meta-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 15px;
  }

  body.caster-v2 .product-meta-grid div {
    display: flex;
    justify-content: space-between;
  }

  body.caster-v2 .pdp-tabs {
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0;
    -webkit-overflow-scrolling: touch;
    /* smooth scroll */
    scrollbar-width: none;
    /* Firefox */
  }

  body.caster-v2 .pdp-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  body.caster-v2 .media-grid {
    grid-template-columns: 1fr;
  }
}

/* Badge Style for Featured Products (Bose Style) */
body.caster-v2 .popular-card .preview-link,
body.caster-v2 .related-card .preview-link {
  position: relative;
}

body.caster-v2 .popular-card:nth-child(1) .preview-link::before,
body.caster-v2 .popular-card:nth-child(2) .preview-link::before {
  content: 'NEW';
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  z-index: 10;
  letter-spacing: 0.05em;
}

body.caster-v2 .popular-card:nth-child(3) .preview-link::before {
  content: 'BEST';
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  z-index: 10;
  letter-spacing: 0.05em;
}

/* --- Codex Redesign v18: Industrial Editorial Catalogue --- */
body.caster-v2 {
  --font-display: "Barlow Condensed", "Noto Sans KR", sans-serif;
  --font-body: "Noto Sans KR", "Pretendard", sans-serif;
  --page-max: 1380px;
  --page-gutter: clamp(14px, 2.6vw, 36px);
  --bg: #f0f0f0;
  --surface: #fdfefe;
  --surface-soft: #f2f5fa;
  --line: #c6cfdb;
  --line-strong: #8997ab;
  --text: #131a27;
  --text-soft: #263248;
  --text-muted: #5b6a82;
  --accent: #0f73c8;
  --accent-strong: #0b558f;
  --accent-soft: #e8f3ff;
  --signal: #ff6f3d;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 9% 8%, rgba(255, 111, 61, 0.14), transparent 26%),
    linear-gradient(180deg, #f4f7fb 0%, #e6ebf1 100%);
}

body.caster-v2 .utility-bar {
  background: #0f1929;
  border-bottom: 1px solid #223146;
  color: #d2dced;
}

body.caster-v2 .utility-item,
body.caster-v2 .utility-divider {
  color: inherit;
}

body.caster-v2 .site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(250, 252, 255, 0.94);
  border-bottom: 1px solid #d2dae6;
  box-shadow: 0 8px 20px rgba(13, 25, 44, 0.08);
  backdrop-filter: blur(8px);
}

body.caster-v2 .header-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 14px var(--page-gutter);
  display: grid;
  grid-template-columns: auto minmax(320px, 640px) auto;
  align-items: center;
  gap: 20px;
}

body.caster-v2 .brand {
  display: grid;
  gap: 3px;
}

body.caster-v2 .brand-text {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 0.95;
  color: #121927;
}

body.caster-v2 .brand-sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #67768d;
  font-weight: 700;
}

body.caster-v2 .search-container {
  max-width: none;
}

body.caster-v2 .search-form {
  border: 1px solid #9eadc2;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

body.caster-v2 .search-form input {
  padding: 13px 14px;
  font-size: 14px;
  color: #1a2435;
  background: transparent;
}

body.caster-v2 .search-form button {
  padding: 0 18px;
  border: 0;
  background: linear-gradient(180deg, #1d2a3f, #121a28);
  color: #f6f8fc;
  transition: background 0.2s ease;
}

body.caster-v2 .search-form button:hover {
  background: linear-gradient(180deg, #24344d, #172338);
}

body.caster-v2 .header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

body.caster-v2 .inquiry-info {
  display: grid;
  gap: 2px;
  text-align: right;
}

body.caster-v2 .inquiry-info .label {
  font-size: 11px;
  color: #627188;
}

body.caster-v2 .inquiry-info .phone {
  font-family: var(--font-display);
  font-size: 30px;
  color: #152037;
  line-height: 0.9;
}

body.caster-v2 .action-btn,
body.caster-v2 .btn {
  border: 1px solid #b8c3d4;
  border-radius: 8px;
  background: #ffffff;
  color: #1b2536;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 13px;
  transition: all 0.16s ease;
}

body.caster-v2 .action-btn:hover,
body.caster-v2 .btn:hover {
  transform: translateY(-1px);
  border-color: #8ea0b8;
  box-shadow: 0 6px 14px rgba(15, 31, 54, 0.12);
}

body.caster-v2 .btn-primary,
body.caster-v2 .mini-link.is-primary {
  border-color: #0f73c8;
  background: linear-gradient(180deg, #1a8be4, #0d66b3);
  color: #ffffff;
}

body.caster-v2 .btn-primary:hover,
body.caster-v2 .mini-link.is-primary:hover {
  border-color: #0a4f88;
  background: linear-gradient(180deg, #1782d7, #0a568f);
}

body.caster-v2 .gnb-bar {
  border-top: 1px solid #dce3ed;
  border-bottom: 1px solid #dce3ed;
  background: #f2f6fb;
}

body.caster-v2 .gnb-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  height: 46px;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
}

body.caster-v2 .gnb-item {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #41516b;
  border-bottom: 3px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

body.caster-v2 .gnb-item:hover,
body.caster-v2 .gnb-item.active {
  color: #12213a;
  border-bottom-color: var(--signal);
}

body.caster-v2 .site-content {
  padding-top: 18px;
}

body.caster-v2 .site-content-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

body.caster-v2 .home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 14px;
}

body.caster-v2 .hero-copy,
body.caster-v2 .hero-video,
body.caster-v2 .panel,
body.caster-v2 .popular-section,
body.caster-v2 .notice-board,
body.caster-v2 .catalog-main,
body.caster-v2 .filter-panel,
body.caster-v2 .related-section {
  border: 1px solid #c6cfdb;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(24, 40, 63, 0.06);
}

body.caster-v2 .hero-copy {
  padding: 24px 24px 22px;
  background:
    linear-gradient(150deg, rgba(15, 115, 200, 0.07), transparent 45%),
    #ffffff;
}

body.caster-v2 .eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #4e617e;
  text-transform: uppercase;
  font-weight: 700;
}

body.caster-v2 .hero-copy h2 {
  margin: 10px 0 12px;
  color: #131d2f;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 12ch;
}

body.caster-v2 .hero-copy p {
  margin: 0;
  max-width: 56ch;
  color: #51617a;
  font-size: 13px;
  line-height: 1.58;
}

body.caster-v2 .hero-signal-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

body.caster-v2 .hero-signal-row span,
body.caster-v2 .chip-row span {
  border: 1px solid #e0e0e0;
  border-radius: 7px;
  background: #f5f8fc;
  color: #4f617c;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 8px;
}

body.caster-v2 .hero-cta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

body.caster-v2 .stats-strip {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

body.caster-v2 .stats-strip article {
  border: 1px solid #d2dae7;
  border-radius: 8px;
  background: #fbfdff;
  padding: 8px 9px;
}

body.caster-v2 .stats-strip span {
  display: block;
  font-size: 10px;
  color: #6f7c91;
}

body.caster-v2 .stats-strip strong {
  display: block;
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 0.9;
  color: #132137;
}

body.caster-v2 .hero-video {
  padding: 12px;
  display: grid;
  gap: 10px;
  align-content: start;
  background:
    linear-gradient(150deg, rgba(19, 30, 45, 0.88), rgba(18, 28, 44, 0.96));
  border-color: #202e43;
}

body.caster-v2 .hero-video .video-label,
body.caster-v2 .timeline span,
body.caster-v2 .timeline strong {
  color: #d6e0f3;
}

body.caster-v2 .hero-video video,
body.caster-v2 .hero-video img {
  border-radius: 8px;
}

body.caster-v2 .home-panels {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 12px;
}

body.caster-v2 .panel {
  padding: 16px;
}

body.caster-v2 .panel h3 {
  margin: 0;
  color: #16243a;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.9;
  letter-spacing: 0.005em;
}

body.caster-v2 .plain-list {
  margin: 12px 0 0;
  padding-left: 16px;
  display: grid;
  gap: 7px;
}

body.caster-v2 .plain-list li {
  color: #46556e;
  font-size: 12px;
  line-height: 1.45;
}

body.caster-v2 .inquiry-metrics article {
  border: 1px solid #d0d9e6;
  border-radius: 8px;
  background: #f8f8f8;
}

body.caster-v2 .category-cards-ecom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

body.caster-v2 .category-card-link {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #fdfefe;
  padding: 10px;
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: 4px;
  transition: transform 0.14s ease, border-color 0.14s ease;
}

body.caster-v2 .category-card-link:hover {
  transform: translateY(-1px);
  border-color: #95a8bf;
}

body.caster-v2 .category-head strong {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  color: #16253a;
}

body.caster-v2 .category-head em {
  border: 1px solid #c6d1e1;
  border-radius: 7px;
  background: #f1f6fd;
  color: #30435f;
}

body.caster-v2 .popular-section,
body.caster-v2 .notice-board {
  margin-top: 12px;
  padding: 16px;
}

body.caster-v2 .section-head {
  margin-bottom: 10px;
}

body.caster-v2 .section-head h3 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.1vw, 46px);
  color: #17263d;
  line-height: 0.9;
}

body.caster-v2 .popular-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

body.caster-v2 .popular-card,
body.caster-v2 .product-card,
body.caster-v2 .related-card {
  border: 1px solid #d4dce8;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
}

body.caster-v2 .popular-card .preview-link,
body.caster-v2 .product-card .preview-link,
body.caster-v2 .related-card .preview-link {
  display: block;
  aspect-ratio: 4 / 3;
  background: #f1f4f9;
}

body.caster-v2 .popular-card .preview-link img,
body.caster-v2 .product-card .preview-link img,
body.caster-v2 .related-card .preview-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

body.caster-v2 .popular-card-body,
body.caster-v2 .product-card-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 7px;
}

body.caster-v2 .popular-card-body p,
body.caster-v2 .product-card h4 {
  margin: 0;
  color: #18263b;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

body.caster-v2 .popular-card-body span {
  color: #66768f;
  font-size: 11px;
}

body.caster-v2 .catalog-layout {
  display: grid;
  grid-template-columns: minmax(250px, 292px) minmax(0, 1fr);
  gap: 12px;
}

body.caster-v2 .catalog-layout .filter-panel {
  position: sticky;
  top: 128px;
  align-self: start;
  padding: 14px;
}

body.caster-v2 .filter-panel h2 {
  margin: 0;
  color: #17263c;
  font-family: var(--font-display);
  font-size: clamp(34px, 2.9vw, 46px);
  line-height: 0.88;
}

body.caster-v2 .filter-group h3 {
  margin: 10px 0 6px;
  font-size: 11px;
  color: #62738d;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

body.caster-v2 .filter-list a {
  border: 1px solid transparent;
  border-radius: 7px;
  background: #f7f9fc;
  color: #374964;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 9px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.caster-v2 .filter-list a.is-active {
  border-color: #88a2c3;
  background: #eaf3ff;
  color: #14305a;
}

body.caster-v2 .catalog-main {
  padding: 12px;
}

body.caster-v2 .catalog-header {
  margin-bottom: 10px;
  border: 1px solid #d2dae7;
  border-radius: 10px;
  background: #f9fbff;
  padding: 11px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
}

body.caster-v2 .catalog-title h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 2.7vw, 44px);
  line-height: 0.9;
  color: #17253c;
}

body.caster-v2 .product-count {
  color: #5f6f88;
  font-size: 12px;
}

body.caster-v2 .catalog-snapshot {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

body.caster-v2 .catalog-snapshot span {
  border: 1px solid #cfdae9;
  border-radius: 999px;
  background: #eef4fc;
  color: #2e4362;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 9px;
}

body.caster-v2 .catalog-tools {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

body.caster-v2 .btn-neutral {
  border-color: #bcc8d9;
  background: #ffffff;
  color: #293a56;
}

body.caster-v2 .filter-toggle-btn {
  display: none;
}

body.caster-v2 .sort-select {
  border: 1px solid #b7c4d6;
  border-radius: 8px;
  background: #ffffff;
  color: #1b2739;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 12px;
}

body.caster-v2 .product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body.caster-v2 .card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

body.caster-v2 .category-label {
  color: #687891;
  font-size: 11px;
  font-weight: 700;
}

body.caster-v2 .media-badge {
  border: 1px solid #ebc5b7;
  border-radius: 999px;
  background: #fff1ec;
  color: #aa4f2d;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 7px;
}

body.caster-v2 .card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 15px;
}

body.caster-v2 .card-actions .btn {
  width: 100%;
  padding: 8px 8px;
  font-size: 11px;
}

body.caster-v2 .notice-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body.caster-v2 .notice-item {
  border: 1px solid #d5dde9;
  border-radius: 10px;
  background: #fdfefe;
  padding: 10px;
}

body.caster-v2 .notice-item h4 {
  margin: 8px 0 7px;
  color: #1d2b41;
  font-size: 14px;
  line-height: 1.35;
}

body.caster-v2 .notice-item p {
  margin: 0;
  color: #62728a;
  font-size: 12px;
  line-height: 1.45;
}

body.caster-v2 .site-footer {
  margin-top: 52px;
  border-top: 1px solid #ced7e3;
  background: #edf1f6;
  color: #3f4f68;
}

body.caster-v2 .footer-upper {
  border-bottom: 1px solid #d8e0eb;
}

body.caster-v2 .footer-links a {
  color: #30425d;
}

body.caster-v2 .footer-main {
  background: transparent;
}

body.caster-v2 .cs-phone {
  font-family: var(--font-display);
  color: #122039;
}

@media (max-width: 1200px) {
  body.caster-v2 .home-hero {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .hero-copy h2 {
    max-width: 100%;
  }

  body.caster-v2 .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  body.caster-v2 .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 10px 14px;
  }

  body.caster-v2 .search-container {
    grid-column: 1 / -1;
  }

  body.caster-v2 .catalog-layout {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .catalog-layout .filter-panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(92vw, 360px);
    max-height: 100dvh;
    overflow-y: auto;
    z-index: 220;
    border-radius: 0;
    border-left: 1px solid #e0e0e0;
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
    box-shadow: -18px 0 40px rgba(12, 25, 43, 0.2);
  }

  body.caster-v2 .catalog-layout .filter-panel.is-open {
    display: block;
  }

  body.caster-v2 .catalog-layout .filter-panel .panel-header {
    position: sticky;
    top: 0;
    z-index: 2;
    margin: -14px -14px 10px;
    padding: 12px 14px;
    background: #ffffff;
    border-bottom: 1px solid #dde4ef;
  }

  body.caster-v2 .filter-toggle-btn {
    display: inline-flex;
  }

  body.caster-v2 .close-filter {
    display: inline-flex !important;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    background: #f4f7fb;
    color: #1f304a;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 8px;
  }
}

@media (max-width: 840px) {
  body.caster-v2 .home-panels {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .category-cards-ecom {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .popular-grid,
  body.caster-v2 .notice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.caster-v2 .utility-left {
    display: none;
  }

  body.caster-v2 .header-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  body.caster-v2 .brand-text {
    font-size: 32px;
  }

  body.caster-v2 .brand-sub {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  body.caster-v2 .gnb-bar {
    display: none;
  }

  body.caster-v2 .site-content {
    padding-top: 10px;
  }

  body.caster-v2 .hero-copy,
  body.caster-v2 .hero-video,
  body.caster-v2 .panel,
  body.caster-v2 .popular-section,
  body.caster-v2 .notice-board,
  body.caster-v2 .catalog-main {
    border-radius: 10px;
  }

  body.caster-v2 .hero-copy {
    padding: 16px;
  }

  body.caster-v2 .hero-copy h2 {
    font-size: clamp(40px, 13vw, 54px);
    line-height: 1.25;
    margin-top: 8px;
    margin-bottom: 10px;
  }

  body.caster-v2 .hero-copy p {
    font-size: 12px;
    line-height: 1.5;
  }

  body.caster-v2 .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.caster-v2 .stats-strip strong {
    font-size: 24px;
  }

  body.caster-v2 .popular-grid,
  body.caster-v2 .product-grid,
  body.caster-v2 .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  body.caster-v2 .popular-card-body,
  body.caster-v2 .product-card-body {
    padding: 8px;
    gap: 6px;
  }

  body.caster-v2 .popular-card-body p,
  body.caster-v2 .product-card h4 {
    font-size: 12px;
  }

  body.caster-v2 .chip-row.compact span:nth-child(n+2) {
    display: none;
  }

  body.caster-v2 .popular-card .popular-actions,
  body.caster-v2 .card-actions {
    gap: 5px;
  }

  body.caster-v2 .card-actions .btn,
  body.caster-v2 .popular-actions .mini-link {
    padding: 6px 6px;
    font-size: 10px;
  }

  body.caster-v2 .catalog-main {
    padding: 8px;
  }

  body.caster-v2 .catalog-header {
    padding: 9px;
    gap: 7px;
  }

  body.caster-v2 .catalog-title h2 {
    font-size: clamp(28px, 8.6vw, 38px);
  }

  body.caster-v2 .catalog-snapshot {
    width: 100%;
  }

  body.caster-v2 .catalog-tools {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  body.caster-v2 .sort-select {
    flex: 1;
    min-width: 0;
  }

  body.caster-v2 .notice-list {
    grid-template-columns: 1fr;
  }
}

/* --- Codex Redesign v20: Steel Ledger Commerce --- */
body.caster-v2 {
  --font-display: "Barlow Condensed", "Noto Sans KR", sans-serif;
  --font-body: "Noto Sans KR", "Pretendard", sans-serif;
  --page-max: 1400px;
  --page-gutter: clamp(14px, 2vw, 34px);
  --bg: #e9eef4;
  --surface: #fdfefe;
  --surface-soft: #f5f5f5;
  --surface-ink: #1b2738;
  --line: #c8d2df;
  --line-strong: #7f8ea4;
  --text: #0f1a28;
  --text-soft: #273449;
  --text-muted: #5c6c85;
  --accent: #0d5f9e;
  --accent-strong: #0a4878;
  --accent-soft: #e8f2fb;
  --signal: #cc5e2f;
  color: var(--text);
  background:
    linear-gradient(165deg, #f6f9fc 0%, #f0f0f0 46%, #e6edf4 100%);
}

body.caster-v2 .site-wrapper {
  min-height: 100dvh;
}

body.caster-v2 .utility-bar {
  border-bottom: 1px solid #2f4055;
  background: #1a2a40;
  color: #dddddd;
}

body.caster-v2 .utility-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 8px var(--page-gutter);
}

body.caster-v2 .utility-item,
body.caster-v2 .utility-divider {
  color: inherit;
  font-size: 11px;
}

body.caster-v2 .site-header {
  position: sticky;
  top: 0;
  z-index: 130;
  border-bottom: 1px solid #c6d0de;
  background: rgba(252, 254, 255, 0.93);
  box-shadow: 0 8px 24px rgba(18, 34, 57, 0.08);
  backdrop-filter: blur(7px);
}

body.caster-v2 .header-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 14px var(--page-gutter);
  display: grid;
  grid-template-columns: auto minmax(360px, 1fr) auto;
  align-items: center;
  gap: 14px clamp(16px, 1.4vw, 24px);
}

body.caster-v2 .brand {
  display: grid;
  gap: 2px;
  text-decoration: none;
}

body.caster-v2 .brand-text {
  font-family: var(--font-display);
  font-size: clamp(36px, 3vw, 46px);
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #142338;
}

body.caster-v2 .brand-sub {
  font-size: 10px;
  line-height: 1.15;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5e6f88;
  font-weight: 700;
}

body.caster-v2 .search-container {
  max-width: none;
}

body.caster-v2 .search-form {
  min-height: 44px;
  border: 1px solid #899ab2;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.caster-v2 .search-form input {
  padding: 11px 12px;
  font-size: 14px;
  color: #1a283f;
}

body.caster-v2 .search-form input::placeholder {
  color: #70809a;
}

body.caster-v2 .search-form button {
  border: 0;
  padding: 0 16px;
  color: #edf3fb;
  background: linear-gradient(180deg, #21364f, #162538);
  transition: filter 0.16s ease;
}

body.caster-v2 .search-form button:hover {
  filter: brightness(1.08);
}

body.caster-v2 .header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.caster-v2 .inquiry-info {
  display: grid;
  gap: 3px;
  text-align: right;
}

body.caster-v2 .inquiry-info .label {
  color: #5d6d85;
  font-size: 11px;
}

body.caster-v2 .inquiry-info .phone {
  font-family: var(--font-display);
  color: #132439;
  font-size: 30px;
  line-height: 0.9;
}

body.caster-v2 .btn,
body.caster-v2 .action-btn,
body.caster-v2 .mini-link {
  border: 1px solid #aec0d4;
  border-radius: 5px;
  background: #fdfefe;
  color: #213149;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 11px;
  transition: border-color 0.16s ease, background-color 0.16s ease, transform 0.16s ease;
}

body.caster-v2 .btn:hover,
body.caster-v2 .action-btn:hover,
body.caster-v2 .mini-link:hover {
  transform: translateY(-1px);
  border-color: #8fa4bd;
  background: #ffffff;
}

body.caster-v2 .btn-primary,
body.caster-v2 .mini-link.is-primary {
  border-color: var(--accent);
  background: linear-gradient(180deg, #1973bb, #0f5f9d);
  color: #ffffff;
}

body.caster-v2 .btn-primary:hover,
body.caster-v2 .mini-link.is-primary:hover {
  border-color: #08395f;
  background: linear-gradient(180deg, #1469ab, #0c548b);
}

body.caster-v2 .btn-neutral,
body.caster-v2 .btn-outline {
  border-color: #b7c5d8;
  background: #f8f8f8;
  color: #2b3d58;
}

body.caster-v2 .btn-sm {
  min-height: 30px;
  padding: 6px 9px;
  font-size: 11px;
}

body.caster-v2 .gnb-bar {
  border-top: 1px solid #d8e0eb;
  border-bottom: 1px solid #d8e0eb;
  background:
    linear-gradient(180deg, #f8f8f8 0%, #edf3f9 100%);
}

body.caster-v2 .gnb-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 17px;
  overflow-x: auto;
}

body.caster-v2 .gnb-item {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: #3f516b;
  border-bottom: 3px solid transparent;
  padding: 14px 16px;
  white-space: nowrap;
}

body.caster-v2 .gnb-item:hover,
body.caster-v2 .gnb-item.active {
  border-bottom-color: var(--signal);
  color: #16273d;
}

body.caster-v2 .site-content {
  padding-top: 14px;
}

body.caster-v2 .site-content-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: grid;
  gap: 12px;
}

body.caster-v2 .hero-copy,
body.caster-v2 .hero-video,
body.caster-v2 .panel,
body.caster-v2 .popular-section,
body.caster-v2 .notice-board,
body.caster-v2 .catalog-main,
body.caster-v2 .filter-panel,
body.caster-v2 .related-section {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(16, 32, 53, 0.05);
}

body.caster-v2 .home-hero>article,
body.caster-v2 .home-panels>article,
body.caster-v2 .popular-card,
body.caster-v2 .product-card,
body.caster-v2 .notice-item {
  animation: v20-rise 280ms ease both;
}

body.caster-v2 .home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 12px;
}

body.caster-v2 .hero-copy {
  padding: 20px;
  background:
    linear-gradient(150deg, rgba(13, 95, 158, 0.1), transparent 45%),
    repeating-linear-gradient(-45deg, rgba(11, 39, 68, 0.018) 0 5px, transparent 5px 10px),
    #ffffff;
}

body.caster-v2 .eyebrow {
  margin: 0;
  color: #5b6d86;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}

body.caster-v2 .hero-copy h2 {
  margin: 11px 0 10px;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(46px, 4.2vw, 68px);
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: #112034;
}

body.caster-v2 .hero-copy p {
  margin: 0;
  max-width: 58ch;
  font-size: 13px;
  line-height: 1.55;
  color: #4f6079;
}

body.caster-v2 .hero-signal-row,
body.caster-v2 .hero-cta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

body.caster-v2 .hero-signal-row span,
body.caster-v2 .chip-row span {
  border: 1px solid #d5deea;
  border-radius: 4px;
  background: #f5f5f5;
  color: #4b5e79;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  padding: 4px 7px;
}

body.caster-v2 .stats-strip {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

body.caster-v2 .stats-strip article {
  border: 1px solid #d3ddeb;
  border-top: 3px solid #9cb3ca;
  border-radius: 5px;
  background: #fbfdff;
  padding: 8px;
}

body.caster-v2 .stats-strip span {
  display: block;
  color: #697a93;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.caster-v2 .stats-strip strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 0.86;
  color: #16253a;
}

body.caster-v2 .hero-video {
  border-color: #233955;
  background:
    linear-gradient(160deg, #172840, #0f1929);
  padding: 12px;
  display: grid;
  gap: 9px;
  align-content: start;
}

body.caster-v2 .hero-video .video-label {
  margin: 0;
  color: #bfcee1;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.caster-v2 .hero-video video,
body.caster-v2 .hero-video img {
  border-radius: 5px;
  background: #000;
}

body.caster-v2 .timeline {
  display: grid;
  gap: 6px;
}

body.caster-v2 .timeline div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

body.caster-v2 .timeline span {
  min-width: 46px;
  font-family: var(--font-display);
  color: #8ba0bb;
  font-size: 16px;
  line-height: 1;
}

body.caster-v2 .timeline strong {
  color: #d7e2f0;
  font-size: 12px;
  line-height: 1.38;
}

body.caster-v2 .home-panels {
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 12px;
}

body.caster-v2 .panel {
  padding: 14px;
}

body.caster-v2 .panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 2.8vw, 46px);
  line-height: 0.88;
  color: #14243a;
}

body.caster-v2 .inquiry-metrics {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

body.caster-v2 .inquiry-metrics article {
  border: 1px solid #d6dfea;
  border-radius: 5px;
  background: #f8f8f8;
  padding: 8px;
}

body.caster-v2 .inquiry-metrics span {
  display: block;
  color: #6b7c94;
  font-size: 10px;
}

body.caster-v2 .inquiry-metrics strong {
  display: block;
  margin-top: 2px;
  font-family: var(--font-display);
  color: #16253c;
  font-size: 23px;
  line-height: 0.9;
}

body.caster-v2 .plain-list {
  margin: 10px 0 0;
  padding-left: 16px;
  display: grid;
  gap: 6px;
}

body.caster-v2 .plain-list li {
  color: #495d77;
  font-size: 12px;
  line-height: 1.42;
}

body.caster-v2 .category-cards-ecom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

body.caster-v2 .category-card-link {
  border: 1px solid #d4ddeb;
  border-radius: 5px;
  background: #fbfdff;
  padding: 9px;
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: 4px;
  transition: border-color 0.16s ease, transform 0.16s ease;
}

body.caster-v2 .category-card-link:hover {
  border-color: #98acc4;
  transform: translateY(-1px);
}

body.caster-v2 .category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

body.caster-v2 .category-head strong {
  color: #111111;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
}

body.caster-v2 .category-head em {
  border: 1px solid #c8d4e4;
  border-radius: 4px;
  background: #eef4fb;
  color: #2c425d;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
}

body.caster-v2 .category-card-link span {
  color: #52647f;
  font-size: 11px;
  line-height: 1.35;
}

body.caster-v2 .category-card-link small {
  color: #334864;
  font-size: 11px;
  font-weight: 700;
}

body.caster-v2 .popular-section,
body.caster-v2 .notice-board {
  margin-top: 0;
  padding: 14px;
}

body.caster-v2 .section-head {
  margin-bottom: 10px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
}

body.caster-v2 .section-head h3 {
  margin: 3px 0 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 2.5vw, 42px);
  line-height: 0.9;
  color: #15243a;
}

body.caster-v2 .popular-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

body.caster-v2 .product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

body.caster-v2 .popular-card,
body.caster-v2 .product-card,
body.caster-v2 .related-card {
  border: 1px solid #d2dce9;
  border-radius: 5px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

body.caster-v2 .popular-card:hover,
body.caster-v2 .product-card:hover,
body.caster-v2 .related-card:hover {
  border-color: #9db0c8;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.11);
  transform: translateY(-2px);
}

body.caster-v2 .popular-card .preview-link,
body.caster-v2 .product-card .preview-link,
body.caster-v2 .related-card .preview-link {
  display: block;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid #dbe3ee;
  background:
    radial-gradient(circle at 20% 20%, rgba(20, 69, 112, 0.08), transparent 48%),
    #f1f5fa;
}

body.caster-v2 .popular-card .preview-link img,
body.caster-v2 .product-card .preview-link img,
body.caster-v2 .related-card .preview-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

body.caster-v2 .popular-card-body,
body.caster-v2 .product-card-body {
  padding: 9px;
  display: grid;
  gap: 6px;
}

body.caster-v2 .popular-card-body p,
body.caster-v2 .product-card h4 {
  margin: 0;
  color: #182840;
  font-size: 13px;
  line-height: 1.34;
  font-weight: 700;
}

body.caster-v2 .product-card h4 a {
  color: inherit;
  text-decoration: none;
}

body.caster-v2 .product-card h4 a:hover {
  text-decoration: underline;
}

body.caster-v2 .popular-card-body span,
body.caster-v2 .category-label {
  color: #647793;
  font-size: 11px;
  font-weight: 700;
}

body.caster-v2 .card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

body.caster-v2 .media-badge {
  border: 1px solid #e4c0b2;
  border-radius: 4px;
  background: #fff2ec;
  color: #a24a29;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  padding: 3px 6px;
}

body.caster-v2 .chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

body.caster-v2 .chip-row.compact {
  gap: 4px;
}

body.caster-v2 .popular-actions,
body.caster-v2 .card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
}

body.caster-v2 .card-actions .btn,
body.caster-v2 .popular-actions .mini-link {
  width: 100%;
  min-height: 30px;
  padding: 6px 7px;
  font-size: 11px;
}

body.caster-v2 .catalog-layout {
  display: grid;
  grid-template-columns: minmax(254px, 292px) minmax(0, 1fr);
  gap: 12px;
}

body.caster-v2 .filter-panel {
  position: sticky;
  top: 116px;
  align-self: start;
  padding: 12px;
}

body.caster-v2 .panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
}

body.caster-v2 .filter-panel h2 {
  margin: 0;
  color: #17263d;
  font-family: var(--font-display);
  font-size: clamp(34px, 2.4vw, 42px);
  line-height: 0.88;
}

body.caster-v2 .filter-group h3 {
  margin: 11px 0 7px;
  color: #6c7b92;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.13em;
  font-weight: 700;
  text-transform: uppercase;
}

body.caster-v2 .filter-list {
  display: grid;
  gap: 4px;
}

body.caster-v2 .filter-list>a,
body.caster-v2 .filter-list .category-item>a {
  border: 1px solid #d5deea;
  border-radius: 5px;
  background: #f8f8f8;
  color: #31465f;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

body.caster-v2 .filter-list .category-item {
  margin: 0;
}

body.caster-v2 .filter-list a:hover {
  border-color: #a8b9cf;
  background: #ffffff;
  color: #203550;
}

body.caster-v2 .filter-list a.is-active {
  border-color: #86a5c7;
  background: #eaeaea;
  color: #113c67;
}

body.caster-v2 .filter-list .toggle-icon {
  color: #7e8da3;
  font-size: 10px;
}

body.caster-v2 .filter-list .sub-filter {
  display: block !important;
  margin-top: 4px;
  margin-bottom: 2px;
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid #d9e1ed;
}

body.caster-v2 .filter-list .sub-filter .category-item>a {
  border-color: #e0e6ef;
  background: #ffffff;
  font-size: 11px;
  padding: 6px 8px;
}

body.caster-v2 .catalog-main {
  padding: 10px;
}

body.caster-v2 .catalog-header {
  margin-bottom: 9px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background:
    linear-gradient(180deg, #f8f8f8, #f2f7fc);
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title tools"
    "snapshot tools";
  gap: 8px 10px;
  align-items: end;
}

body.caster-v2 .catalog-title {
  grid-area: title;
}

body.caster-v2 .catalog-title h2 {
  margin: 0;
  color: #17263d;
  font-family: var(--font-display);
  font-size: clamp(33px, 2.3vw, 41px);
  line-height: 0.9;
}

body.caster-v2 .product-count {
  margin-top: 3px;
  display: inline-block;
  color: #5e7089;
  font-size: 12px;
}

body.caster-v2 .catalog-snapshot {
  grid-area: snapshot;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

body.caster-v2 .catalog-snapshot span {
  border: 1px solid #cfd9e7;
  border-radius: 4px;
  background: #ffffff;
  color: #2f4663;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  padding: 4px 8px;
}

body.caster-v2 .catalog-tools {
  grid-area: tools;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 0;
}

body.caster-v2 .sort-select {
  min-width: 154px;
  border: 1px solid #b4c3d6;
  border-radius: 5px;
  background: #ffffff;
  color: #213049;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 11px;
}

body.caster-v2 .filter-toggle-btn,
body.caster-v2 .close-filter {
  display: none;
}

body.caster-v2 .empty-state-container {
  margin: 0;
  min-height: 280px;
  border: 1px solid #d5dce7;
  border-radius: 6px;
  background: #f8f8f8;
}

body.caster-v2 .empty-message {
  color: #888888;
}

body.caster-v2 .notice-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body.caster-v2 .notice-item {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background: #fbfdff;
  padding: 10px;
}

body.caster-v2 .notice-item p:first-child {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #7b8ca3;
  font-size: 11px;
}

body.caster-v2 .notice-item p:first-child span {
  border: 1px solid #d2deeb;
  border-radius: 4px;
  background: #f5f5f5;
  color: #2d4460;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  padding: 3px 6px;
}

body.caster-v2 .notice-item h4 {
  margin: 8px 0 7px;
  color: #1b2b43;
  font-size: 14px;
  line-height: 1.36;
}

body.caster-v2 .notice-item p {
  margin: 0;
  color: #60718a;
  font-size: 12px;
  line-height: 1.42;
}

body.caster-v2 .site-footer {
  margin-top: 42px;
  border-top: 1px solid #d3dbe8;
  background: #e9eef4;
  color: #3f4f67;
}

body.caster-v2 .footer-upper {
  border-bottom: 1px solid #d8e0ea;
}

body.caster-v2 .footer-links a {
  color: #32465f;
}

body.caster-v2 .footer-main {
  background: transparent;
}

body.caster-v2 .cs-phone {
  color: #13233a;
  font-family: var(--font-display);
}

body.caster-v2 .menu-backdrop {
  background: rgba(0, 0, 0, 0.52);
}

body.caster-v2 .menu-drawer {
  border-left: 1px solid #ced7e3;
  background: #fefefe;
  box-shadow: -18px 0 36px rgba(11, 24, 41, 0.18);
}

body.caster-v2 .drawer-gnb a {
  border-bottom: 1px solid #eeeeee;
}

body.caster-v2 .drawer-chips a {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background: #f8f8f8;
}

@keyframes v20-rise {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1280px) {
  body.caster-v2 .home-hero {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .hero-copy h2 {
    max-width: 100%;
  }

  body.caster-v2 .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  body.caster-v2 .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  body.caster-v2 .search-container {
    grid-column: 1 / -1;
  }

  body.caster-v2 .catalog-layout {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .catalog-layout .filter-panel {
    display: none;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(92vw, 348px);
    max-height: 100dvh;
    overflow-y: auto;
    z-index: 240;
    border-radius: 0;
    border-left: 1px solid #c7d2df;
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
    box-shadow: -16px 0 34px rgba(11, 24, 40, 0.2);
  }

  body.caster-v2 .catalog-layout .filter-panel.is-open {
    display: block;
  }

  body.caster-v2 .catalog-layout .filter-panel .panel-header {
    position: sticky;
    top: 0;
    z-index: 2;
    margin: -12px -12px 9px;
    padding: 11px 12px;
    background: #ffffff;
    border-bottom: 1px solid #dbe2ec;
  }

  body.caster-v2 .filter-toggle-btn {
    display: inline-flex;
  }

  body.caster-v2 .close-filter {
    display: inline-flex !important;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    background: #f5f5f5;
    color: #222222;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 8px;
  }
}

@media (max-width: 820px) {
  body.caster-v2 .home-panels {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .category-cards-ecom {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .popular-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.caster-v2 .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.caster-v2 .notice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body.caster-v2 .utility-left {
    display: none;
  }

  body.caster-v2 .header-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  body.caster-v2 .brand-text {
    font-size: 32px;
  }

  body.caster-v2 .brand-sub {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  body.caster-v2 .gnb-bar {
    display: none;
  }

  body.caster-v2 .site-content {
    padding-top: 10px;
  }

  body.caster-v2 .hero-copy,
  body.caster-v2 .hero-video,
  body.caster-v2 .panel,
  body.caster-v2 .popular-section,
  body.caster-v2 .notice-board,
  body.caster-v2 .catalog-main {
    border-radius: 6px;
  }

  body.caster-v2 .hero-copy {
    padding: 14px;
  }

  body.caster-v2 .hero-copy h2 {
    margin-top: 8px;
    margin-bottom: 9px;
    font-size: clamp(38px, 13vw, 54px);
    line-height: 1.25;
  }

  body.caster-v2 .hero-copy p {
    font-size: 12px;
    line-height: 1.5;
  }

  body.caster-v2 .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.caster-v2 .stats-strip strong {
    font-size: 24px;
  }

  body.caster-v2 .popular-grid,
  body.caster-v2 .product-grid,
  body.caster-v2 .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  body.caster-v2 .popular-card-body,
  body.caster-v2 .product-card-body {
    padding: 8px;
    gap: 5px;
  }

  body.caster-v2 .popular-card-body p,
  body.caster-v2 .product-card h4 {
    font-size: 12px;
  }

  body.caster-v2 .chip-row.compact span:nth-child(n + 2) {
    display: none;
  }

  body.caster-v2 .card-actions .btn,
  body.caster-v2 .popular-actions .mini-link {
    padding: 6px 5px;
    font-size: 10px;
  }

  body.caster-v2 .panel {
    padding: 12px;
  }

  body.caster-v2 .plain-list li:nth-child(n + 3) {
    display: none;
  }

  body.caster-v2 .catalog-main {
    padding: 8px;
  }

  body.caster-v2 .catalog-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "snapshot"
      "tools";
    padding: 8px;
    gap: 7px;
    align-items: start;
  }

  body.caster-v2 .catalog-title h2 {
    font-size: clamp(31px, 8.6vw, 40px);
  }

  body.caster-v2 .catalog-snapshot,
  body.caster-v2 .catalog-tools {
    width: 100%;
  }

  body.caster-v2 .catalog-tools {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  body.caster-v2 .sort-select {
    min-width: 0;
    flex: 1;
  }

  body.caster-v2 .notice-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body.caster-v2 .site-content-inner {
    gap: 10px;
  }

  body.caster-v2 .hero-signal-row {
    gap: 5px;
  }

  body.caster-v2 .hero-signal-row span,
  body.caster-v2 .chip-row span {
    padding: 3px 6px;
    font-size: 10px;
  }

  body.caster-v2 .catalog-snapshot span {
    padding: 3px 7px;
  }

  body.caster-v2 .popular-actions,
  body.caster-v2 .card-actions {
    grid-template-columns: 1fr;
  }
}

/* --- Codex Redesign v21: Industrial Editorial Catalog --- */
body.caster-v2 {
  --font-display: "Barlow Condensed", "Noto Sans KR", sans-serif;
  --font-body: "Noto Sans KR", "Pretendard", sans-serif;
  --page-max: 1440px;
  --page-gutter: clamp(14px, 2vw, 34px);
  --bg: #f0f0f0;
  --surface: #ffffff;
  --surface-soft: #f5f5f5;
  --line: #e0e0e0;
  --line-strong: #999999;
  --text: #111111;
  --text-soft: #333333;
  --text-muted: #777777;
  --accent: #cc0000;
  --accent-strong: #a30000;
  --accent-soft: #fff0f0;
  --signal: #cb6432;
  color: var(--text);
  background:
    linear-gradient(180deg, #f5f5f5 0%, #eeeeee 40%, #eaeaea 100%);
  overflow-x: clip;
}

body.caster-v2 .site-wrapper {
  min-height: 100dvh;
}

body.caster-v2 .site-header {
  border-bottom: 1px solid #e0e0e0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
}

body.caster-v2 .utility-bar {
  border-bottom: 1px solid #333333;
  background: #111111;
  color: #999999;
}

body.caster-v2 .utility-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 8px var(--page-gutter);
}

body.caster-v2 .utility-item,
body.caster-v2 .utility-divider {
  font-size: 11px;
}

body.caster-v2 .header-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 12px var(--page-gutter);
  display: grid;
  grid-template-columns: auto minmax(340px, 1fr) auto;
  align-items: center;
  gap: 12px clamp(14px, 1.4vw, 24px);
}

body.caster-v2 .brand {
  text-decoration: none;
}

body.caster-v2 .brand-text {
  font-family: var(--font-display);
  font-size: clamp(34px, 2.8vw, 46px);
  line-height: 0.86;
  letter-spacing: 0.01em;
  color: #111111;
}

body.caster-v2 .brand-sub {
  color: #888888;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.caster-v2 .search-form {
  min-height: 44px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #ffffff;
}

body.caster-v2 .search-form input {
  padding: 10px 12px;
  color: #111111;
  font-size: 13px;
}

body.caster-v2 .search-form button {
  padding: 0 15px;
  border: 0;
  background: #cc0000;
  color: #ffffff;
}

body.caster-v2 .header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

body.caster-v2 .inquiry-info .label {
  color: #888888;
  font-size: 11px;
}

body.caster-v2 .inquiry-info .phone {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 0.88;
  color: #111111;
}

body.caster-v2 .btn,
body.caster-v2 .action-btn,
body.caster-v2 .mini-link {
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #fbfdff;
  color: #222222;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 11px;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

body.caster-v2 .btn:hover,
body.caster-v2 .action-btn:hover,
body.caster-v2 .mini-link:hover {
  border-color: #999999;
  background: #ffffff;
  transform: translateY(-1px);
}

body.caster-v2 .btn-primary,
body.caster-v2 .mini-link.is-primary {
  border-color: var(--accent);
  background: #cc0000;
  color: #ffffff;
}

body.caster-v2 .btn-primary:hover,
body.caster-v2 .mini-link.is-primary:hover {
  border-color: #a30000;
  background: #a30000;
}

body.caster-v2 .gnb-bar {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  background: #f8f8f8;
}

body.caster-v2 .gnb-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  min-height: 42px;
  padding: 0 var(--page-gutter);
  display: flex;
  align-items: center;
  gap: 15px;
}

body.caster-v2 .gnb-item {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1;
  color: #666666;
  white-space: nowrap;
  transition: color 0.2s ease;
}

body.caster-v2 .gnb-item:hover,
body.caster-v2 .gnb-item.active {
  color: var(--accent);
}

body.caster-v2 .site-content {
  padding-top: 13px;
}

body.caster-v2 .site-content-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: grid;
  gap: 12px;
}

body.caster-v2 .hero-copy,
body.caster-v2 .hero-video,
body.caster-v2 .panel,
body.caster-v2 .popular-section,
body.caster-v2 .notice-board,
body.caster-v2 .catalog-main,
body.caster-v2 .filter-panel,
body.caster-v2 .related-section,
body.caster-v2 .product-header,
body.caster-v2 .tab-panel {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  box-shadow: 0 5px 14px rgba(16, 31, 50, 0.05);
}

body.caster-v2 .home-hero>article,
body.caster-v2 .home-panels>article,
body.caster-v2 .popular-card,
body.caster-v2 .product-card,
body.caster-v2 .notice-item,
body.caster-v2 .related-card {
  animation: v21-rise 300ms ease both;
}

body.caster-v2 .home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(0, 0.76fr);
  gap: 11px;
}

body.caster-v2 .hero-copy {
  padding: 21px;
  border-top: 3px solid #cccccc;
  background:
    linear-gradient(140deg, rgba(10, 84, 138, 0.07), transparent 48%),
    #ffffff;
}

body.caster-v2 .eyebrow {
  margin: 0;
  color: #777777;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.caster-v2 .hero-copy h2 {
  margin: 10px 0 11px;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(52px, 4.2vw, 72px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #111111;
}

body.caster-v2 .hero-copy p {
  margin: 0;
  color: #777777;
  font-size: 13px;
  line-height: 1.52;
}

body.caster-v2 .hero-signal-row,
body.caster-v2 .hero-cta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.caster-v2 .hero-signal-row span {
  border: 0;
  border-left: 2px solid #cccccc;
  border-radius: 0;
  background: transparent;
  color: #666666;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  padding: 0 0 0 7px;
}

body.caster-v2 .stats-strip {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

body.caster-v2 .stats-strip article {
  border: 1px solid #e0e0e0;
  border-top: 3px solid #cccccc;
  border-radius: 3px;
  background: #fbfdff;
  padding: 8px;
}

body.caster-v2 .stats-strip span {
  color: #777777;
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.caster-v2 .stats-strip strong {
  margin-top: 3px;
  display: block;
  color: #111111;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 0.86;
}

body.caster-v2 .hero-video {
  border-color: #333333;
  background: linear-gradient(170deg, #17263b, #0e1827);
  padding: 12px;
  display: grid;
  gap: 10px;
  align-content: start;
}

body.caster-v2 .hero-video .video-label {
  margin: 0;
  color: #bbbbbb;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.caster-v2 .hero-video video,
body.caster-v2 .hero-video img {
  width: 100%;
  border-radius: 3px;
  background: #000;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

body.caster-v2 .timeline {
  display: grid;
  gap: 6px;
}

body.caster-v2 .timeline div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

body.caster-v2 .timeline span {
  min-width: 44px;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1;
  color: #aaaaaa;
}

body.caster-v2 .timeline strong {
  color: #e0e0e0;
  font-size: 11px;
  line-height: 1.35;
}

body.caster-v2 .home-panels {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 11px;
}

body.caster-v2 .panel {
  padding: 14px;
}

body.caster-v2 .panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 2.7vw, 46px);
  line-height: 0.88;
  color: #111111;
}

body.caster-v2 .inquiry-metrics {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

body.caster-v2 .inquiry-metrics article {
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background: #f8f8f8;
  padding: 7px;
}

body.caster-v2 .inquiry-metrics span {
  color: #70839f;
  font-size: 10px;
}

body.caster-v2 .inquiry-metrics strong {
  margin-top: 2px;
  display: block;
  color: #14263f;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 0.9;
}

body.caster-v2 .plain-list {
  margin: 10px 0 0;
  padding-left: 16px;
  display: grid;
  gap: 5px;
}

body.caster-v2 .plain-list li {
  color: #4d617d;
  font-size: 12px;
  line-height: 1.4;
}

body.caster-v2 .category-cards-ecom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

body.caster-v2 .category-card-link {
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background: #fcfdff;
  padding: 9px;
  color: inherit;
  text-decoration: none;
  display: grid;
  gap: 4px;
  transition: border-color 160ms ease, transform 160ms ease;
}

body.caster-v2 .category-card-link:hover {
  border-color: #9eb1c9;
  transform: translateY(-1px);
}

body.caster-v2 .category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

body.caster-v2 .category-head strong {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  color: #111111;
}

body.caster-v2 .category-head em {
  border: 1px solid #dddddd;
  border-radius: 2px;
  background: #f5f5f5;
  color: #222222;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 5px;
}

body.caster-v2 .category-card-link span {
  color: #666666;
  font-size: 11px;
  line-height: 1.34;
}

body.caster-v2 .category-card-link small {
  color: #555555;
  font-size: 11px;
  font-weight: 700;
}

body.caster-v2 .popular-section,
body.caster-v2 .notice-board {
  padding: 14px;
}

body.caster-v2 .section-head {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 9px;
}

body.caster-v2 .section-head h3 {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: clamp(33px, 2.4vw, 42px);
  line-height: 0.9;
  color: #111111;
}

body.caster-v2 .popular-grid,
body.caster-v2 .product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

body.caster-v2 .related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

body.caster-v2 .popular-card,
body.caster-v2 .product-card,
body.caster-v2 .related-card {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.caster-v2 .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

body.caster-v2 .home-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 40px 80px;
  min-height: calc(100vh - 180px);
  align-items: center;
}

body.caster-v2 .product-header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  align-items: start;
}

/* Video-First 16:9 Player */
body.caster-v2 .main-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #ffffff;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--line);
}

body.caster-v2 .main-player video,
body.caster-v2 .main-player img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
  mix-blend-mode: multiply;
}

body.caster-v2 .product-info-panel h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

body.caster-v2 .summary-container {
  margin-bottom: 24px;
}

body.caster-v2 .summary {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

body.caster-v2 .summary-full-btn {
  background: none;
  border: none;
  color: var(--accent);
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 8px;
}

body.caster-v2 .media-kind.video {
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 10px;
}

body.caster-v2 .video-item-thumb {
  position: relative;
}

body.caster-v2 .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 20px;
  opacity: 0.8;
}

body.caster-v2 .popular-card,
body.caster-v2 .product-card,
body.caster-v2 .related-card {
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

body.caster-v2 .popular-card:hover,
body.caster-v2 .product-card:hover,
body.caster-v2 .related-card:hover {
  border-color: #bbbbbb;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

body.caster-v2 .popular-card .preview-link,
body.caster-v2 .product-card .preview-link,
body.caster-v2 .related-card .preview-link {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid #e5e5e5;
  background: linear-gradient(180deg, #f8f8f8, #f0f0f0);
  overflow: hidden;
}

body.caster-v2 .popular-card .preview-link img,
body.caster-v2 .product-card .preview-link img,
body.caster-v2 .related-card .preview-link img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  mix-blend-mode: multiply;
}

body.caster-v2 .popular-card .preview-link::before,
body.caster-v2 .related-card .preview-link::before {
  content: none !important;
}

body.caster-v2 .popular-card-body,
body.caster-v2 .product-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
  justify-content: flex-start;
  text-align: left;
  /* Switch back to left for better data row alignment */
  min-height: 220px;
  background: #ffffff;
}

body.caster-v2 .popular-card-body p,
body.caster-v2 .product-card h4 {
  margin: 0;
  color: #111111;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  height: auto;
  min-height: 38px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

body.caster-v2 .product-card h4 a {
  color: inherit;
  text-decoration: none;
}

body.caster-v2 .product-card h4 a:hover {
  text-decoration: underline;
}

body.caster-v2 .category-label {
  color: #888888;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

body.caster-v2 .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

body.caster-v2 .media-badge {
  border: 1px solid #e7c2b4;
  border-radius: 2px;
  background: #fff1ea;
  color: #a64f2b;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  padding: 3px 5px;
}

body.caster-v2 .chip-row.wide {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin-top: 4px;
  margin-bottom: auto;
}

body.caster-v2 .spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed #e2e8f0;
  width: 100%;
}

body.caster-v2 .spec-row:last-child {
  border-bottom: 0;
}

body.caster-v2 .spec-label {
  color: #718096;
  font-size: 11px;
  font-weight: 500;
}

body.caster-v2 .spec-value {
  color: #2d3748;
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}

body.caster-v2 .chip-row span {
  display: none;
  /* Hide old chip span if any leakage */
}

body.caster-v2 .chip-row span:hover {
  background: #edf2f7;
  border-color: #cbd5e0;
}

body.caster-v2 .chip-row span::before {
  content: none;
}

body.caster-v2 .popular-actions,
body.caster-v2 .card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  margin-top: auto;
}

body.caster-v2 .popular-actions .mini-link,
body.caster-v2 .card-actions .btn {
  width: 100%;
  min-height: 29px;
  padding: 5px 6px;
  font-size: 11px;
}

body.caster-v2 .catalog-layout {
  display: grid;
  grid-template-columns: minmax(250px, 288px) minmax(0, 1fr);
  gap: 12px;
}

body.caster-v2 .filter-panel {
  position: sticky;
  top: 114px;
  align-self: start;
  padding: 12px;
}

body.caster-v2 .panel-header {
  margin-bottom: 9px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

body.caster-v2 .filter-panel h2 {
  margin: 0;
  color: #111111;
  font-family: var(--font-display);
  font-size: clamp(34px, 2.3vw, 41px);
  line-height: 0.87;
}

body.caster-v2 .filter-group h3 {
  margin: 10px 0 7px;
  color: #888888;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.caster-v2 .filter-list {
  display: grid;
  gap: 3px;
}

body.caster-v2 .filter-list>a,
body.caster-v2 .filter-list .category-item>a {
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background: #f8f8f8;
  color: #333333;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: border-color 160ms ease, background-color 160ms ease;
}

body.caster-v2 .filter-list>a:hover,
body.caster-v2 .filter-list .category-item>a:hover {
  border-color: #cccccc;
  background: #ffffff;
}

body.caster-v2 .filter-list a.is-active {
  border-color: #000000;
  background: #e8e8e8;
  color: #000000;
}

body.caster-v2 .filter-list .sub-filter {
  display: block !important;
  margin-top: 4px;
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid #e5e5e5;
}

body.caster-v2 .filter-list .sub-filter .category-item>a {
  background: #ffffff;
  border-color: #eaeaea;
  font-size: 11px;
  padding: 6px 8px;
}

body.caster-v2 .catalog-main {
  padding: 10px;
}

body.caster-v2 .catalog-header {
  margin-bottom: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background: linear-gradient(180deg, #fafafa, #f2f2f2);
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title tools"
    "snapshot tools";
  gap: 7px 10px;
  align-items: end;
}

body.caster-v2 .catalog-title {
  grid-area: title;
}

body.caster-v2 .catalog-title h2 {
  margin: 0;
  color: #111111;
  font-family: var(--font-display);
  font-size: clamp(33px, 2.2vw, 40px);
  line-height: 0.9;
}

body.caster-v2 .product-count {
  margin-top: 3px;
  display: inline-block;
  color: #666666;
  font-size: 12px;
}

body.caster-v2 .catalog-snapshot {
  grid-area: snapshot;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

body.caster-v2 .catalog-snapshot span {
  border: 0;
  border-left: 2px solid #cccccc;
  border-radius: 0;
  background: transparent;
  color: #555555;
  font-size: 11px;
  font-weight: 700;
  padding: 0 0 0 7px;
}

body.caster-v2 .catalog-tools {
  grid-area: tools;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.caster-v2 .sort-select {
  min-width: 154px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #ffffff;
  color: #222222;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px;
}

body.caster-v2 .filter-toggle-btn,
body.caster-v2 .close-filter {
  display: none;
}

body.caster-v2 .empty-state-container {
  margin: 0;
  min-height: 260px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #f8f8f8;
}

body.caster-v2 .notice-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body.caster-v2 .notice-item {
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background: #ffffff;
  padding: 10px;
}

body.caster-v2 .notice-item p:first-child {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #999999;
  font-size: 11px;
}

body.caster-v2 .notice-item p:first-child span {
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  background: #f0f0f0;
  color: #222222;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 3px 6px;
}

body.caster-v2 .notice-item h4 {
  margin: 8px 0 6px;
  color: #111111;
  font-size: 14px;
  line-height: 1.35;
}

body.caster-v2 .notice-item p {
  margin: 0;
  color: #666666;
  font-size: 12px;
  line-height: 1.4;
}

body.caster-v2 .breadcrumb {
  margin: 0;
  color: #888888;
  font-size: 11px;
}

body.caster-v2 .product-detail-container {
  display: grid;
  gap: 12px;
  padding-bottom: 70px;
}

body.caster-v2 .product-header {
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 12px;
  align-items: start;
}

body.caster-v2 .main-player {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: #ffffff;
}

body.caster-v2 .main-player video,
body.caster-v2 .main-player img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 0;
  background: #ffffff;
  mix-blend-mode: multiply;
}

body.caster-v2 .main-player figcaption {
  border-top: 1px solid var(--line);
  background: #f8fafd;
  color: var(--text);
  font-size: 11px;
  padding: 8px 9px;
}

body.caster-v2 .product-info-panel {
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background: #fdfefe;
  padding: 12px;
}

body.caster-v2 .product-info-panel h1 {
  margin: 2px 0 8px;
  color: #14273e;
  font-family: var(--font-display);
  font-size: clamp(34px, 2.5vw, 46px);
  line-height: 0.9;
}

body.caster-v2 .product-info-panel .summary {
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
  color: #666666;
  font-size: 13px;
  line-height: 1.5;
}

body.caster-v2 .product-meta-grid {
  margin-bottom: 11px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

body.caster-v2 .product-meta-grid>div {
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background: #f5f5f5;
  padding: 7px 9px;
}

body.caster-v2 .product-meta-grid span {
  display: block;
  color: #888888;
  font-size: 10px;
  margin-bottom: 2px;
}

body.caster-v2 .product-meta-grid strong {
  color: #111111;
  font-size: 12px;
  font-weight: 700;
}

body.caster-v2 .action-row {
  margin-top: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
}

body.caster-v2 .action-row .btn-primary {
  min-height: 38px;
  padding: 9px 12px !important;
  font-size: 13px !important;
}

body.caster-v2 .pdp-tabs {
  border: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

body.caster-v2 .tab-btn {
  border: 1px solid #d2dce9;
  border-radius: 3px;
  background: #f7fafe;
  color: #555555;
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
  word-break: keep-all;
  text-align: center;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

body.caster-v2 .tab-btn:hover {
  border-color: #cccccc;
  color: #333333;
}

body.caster-v2 .tab-btn.active {
  color: #000000;
  border-color: #000000;
  background: #eaeaea;
}

body.caster-v2 .tab-btn.active::after {
  content: none;
}

body.caster-v2 .tab-content {
  display: grid;
  gap: 10px;
}

body.caster-v2 .tab-panel {
  padding: 10px;
  display: none;
  animation: v21-fade 240ms ease both;
}

body.caster-v2 .tab-panel.active {
  display: block;
}

body.caster-v2 .spec-table-container {
  margin: 0;
  border: 1px solid #d7e0eb;
  border-radius: 3px;
  overflow: hidden;
}

body.caster-v2 .spec-table th {
  width: 30%;
  background: #f5f5f5;
  color: #222222;
  font-size: 12px;
  font-weight: 700;
}

body.caster-v2 .spec-table td {
  color: #444444;
  font-size: 12px;
}

body.caster-v2 .media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body.caster-v2 .media-item {
  aspect-ratio: 16 / 10;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: none;
}

body.caster-v2 .media-item img,
body.caster-v2 .media-item video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
  mix-blend-mode: multiply;
}

body.caster-v2 .check-list {
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background: #f8f8f8;
  padding: 12px;
}

body.caster-v2 .check-list h3 {
  margin: 0 0 8px;
  color: #162a43;
  font-size: 16px;
}

body.caster-v2 .check-list ul {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 6px;
}

body.caster-v2 .check-list li {
  color: #4f647d;
  font-size: 12px;
  line-height: 1.45;
}

body.caster-v2 .related-section {
  padding: 10px;
}

body.caster-v2 .related-card .preview-link div {
  border-top: 1px solid #e5e5e5;
  padding: 8px;
  display: grid;
  gap: 2px;
}

body.caster-v2 .related-card .preview-link p {
  margin: 0;
  color: #111111;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

body.caster-v2 .related-card .preview-link span {
  color: #777777;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

body.caster-v2 .mobile-cta .btn {
  min-height: 40px;
  font-size: 13px;
}

body.caster-v2 .site-footer {
  margin-top: 60px;
  padding: 48px 0;
  background: #000;
  color: #999;
  border-top: 1px solid #222;
}

body.caster-v2 .footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

body.caster-v2 .footer-info {
  text-align: left;
  max-width: 500px;
}

body.caster-v2 .footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}

body.caster-v2 .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 16px;
}

body.caster-v2 .footer-nav a {
  color: #ccc;
  font-size: 13px;
  text-decoration: none;
}

body.caster-v2 .footer-nav a:hover {
  color: #fff;
}

body.caster-v2 .footer-info address {
  font-style: normal;
  color: #888;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
}

body.caster-v2 .footer-info address a {
  color: #ccc;
}

body.caster-v2 .footer-info .copyright {
  color: #666;
  font-size: 12px;
  margin: 0;
}

body.caster-v2 .footer-inner .cs-center {
  text-align: right;
}

body.caster-v2 .footer-inner .cs-center strong {
  display: block;
  color: #ccc;
  font-size: 14px;
  margin-bottom: 4px;
}

body.caster-v2 .cs-phone {
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  display: block;
  margin: 4px 0 8px;
}

body.caster-v2 .footer-inner .cs-center p {
  color: #888;
  font-size: 13px;
  margin: 0 0 12px;
}

body.caster-v2 .footer-inner .cs-center .btn {
  border-color: #555;
  color: #ccc;
  padding: 8px 16px;
  font-size: 12px;
}

body.caster-v2 .footer-inner .cs-center .btn:hover {
  border-color: #fff;
  color: #fff;
}

/* Global Link Reset */
body.caster-v2 a {
  color: inherit;
  text-decoration: none;
}

body.caster-v2 .cs-phone {
  color: #111111;
  font-family: var(--font-display);
}

body.caster-v2 .menu-backdrop {
  background: rgba(0, 0, 0, 0.52);
}

body.caster-v2 .menu-drawer {
  border-left: 1px solid #d5d5d5;
  background: #fefefe;
  box-shadow: -18px 0 34px rgba(0, 0, 0, 0.18);
}

@keyframes v21-rise {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes v21-fade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1240px) {
  body.caster-v2 .home-hero {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .hero-copy h2 {
    max-width: 100%;
  }

  body.caster-v2 .product-grid,
  body.caster-v2 .popular-grid,
  body.caster-v2 .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  body.caster-v2 .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  body.caster-v2 .search-container {
    grid-column: 1 / -1;
  }

  body.caster-v2 .catalog-layout {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .catalog-layout .filter-panel {
    display: none;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 340px);
    max-height: 100dvh;
    overflow-y: auto;
    z-index: 240;
    border-radius: 0;
    border-left: 1px solid #d5d5d5;
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
    box-shadow: -18px 0 34px rgba(0, 0, 0, 0.2);
  }

  body.caster-v2 .catalog-layout .filter-panel.is-open {
    display: block;
  }

  body.caster-v2 .catalog-layout .filter-panel .panel-header {
    position: sticky;
    top: 0;
    z-index: 2;
    margin: -12px -12px 9px;
    padding: 10px 12px;
    border-bottom: 1px solid #dbe3ee;
    background: #ffffff;
  }

  body.caster-v2 .filter-toggle-btn {
    display: inline-flex;
  }

  body.caster-v2 .close-filter {
    display: inline-flex !important;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
    background: #f5f5f5;
    color: #222222;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 8px;
  }
}

@media (max-width: 860px) {
  body.caster-v2 .home-panels {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .category-cards-ecom {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .notice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.caster-v2 .product-header {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .action-row {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .action-row .btn {
    width: 100%;
  }
}

@media (max-width: 680px) {
  body.caster-v2 .utility-left {
    display: none;
  }

  body.caster-v2 .header-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  body.caster-v2 .brand-text {
    font-size: 31px;
  }

  body.caster-v2 .brand-sub {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  body.caster-v2 .inquiry-info .phone {
    font-size: 26px;
  }

  body.caster-v2 .gnb-bar {
    display: none;
  }

  body.caster-v2 .site-content {
    padding-top: 10px;
  }

  body.caster-v2 .hero-copy {
    padding: 14px;
  }

  body.caster-v2 .hero-copy h2 {
    margin: 8px 0 8px;
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1.25;
  }

  body.caster-v2 .hero-copy p {
    font-size: 12px;
    line-height: 1.46;
  }

  body.caster-v2 .hero-signal-row {
    gap: 8px;
  }

  body.caster-v2 .hero-signal-row span {
    font-size: 10px;
    padding-left: 6px;
  }

  body.caster-v2 .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.caster-v2 .stats-strip strong {
    font-size: 24px;
  }

  body.caster-v2 .panel,
  body.caster-v2 .popular-section,
  body.caster-v2 .notice-board,
  body.caster-v2 .catalog-main,
  body.caster-v2 .tab-panel {
    padding: 10px;
  }

  body.caster-v2 .panel h3,
  body.caster-v2 .section-head h3 {
    font-size: clamp(30px, 8.8vw, 40px);
  }

  body.caster-v2 .popular-grid,
  body.caster-v2 .product-grid,
  body.caster-v2 .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  body.caster-v2 .popular-card-body,
  body.caster-v2 .product-card-body {
    padding: 8px;
    gap: 4px;
  }

  body.caster-v2 .popular-card-body p,
  body.caster-v2 .product-card h4 {
    font-size: 12px;
  }

  body.caster-v2 .chip-row.compact span:nth-child(n + 3) {
    display: none;
  }

  body.caster-v2 .catalog-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "snapshot"
      "tools";
    align-items: start;
    padding: 8px;
    gap: 7px;
  }

  body.caster-v2 .catalog-title h2 {
    font-size: clamp(30px, 8.2vw, 38px);
  }

  body.caster-v2 .catalog-snapshot,
  body.caster-v2 .catalog-tools {
    width: 100%;
  }

  body.caster-v2 .catalog-tools {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  body.caster-v2 .sort-select {
    flex: 1;
    min-width: 0;
  }

  body.caster-v2 .product-detail-container {
    gap: 10px;
    padding-bottom: 60px;
  }

  body.caster-v2 .pdp-tabs {
    gap: 5px;
  }

  body.caster-v2 .tab-btn {
    font-size: 11px;
    padding: 9px 6px;
    line-height: 1.2;
  }

  body.caster-v2 .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  body.caster-v2 .check-list {
    padding: 10px;
  }

  body.caster-v2 .check-list h3 {
    font-size: 14px;
  }

  body.caster-v2 .check-list li {
    font-size: 11px;
  }

  body.caster-v2 .notice-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body.caster-v2 .site-content-inner {
    gap: 9px;
  }

  body.caster-v2 .header-actions .action-btn {
    display: none;
  }

  body.caster-v2 .inquiry-info {
    display: none;
  }

  body.caster-v2 .popular-actions,
  body.caster-v2 .card-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  body.caster-v2 .popular-actions .mini-link,
  body.caster-v2 .card-actions .btn {
    min-height: 27px;
    font-size: 10px;
    padding: 4px 5px;
  }

  body.caster-v2 .chip-row.compact span:nth-child(n + 2) {
    display: none;
  }

  body.caster-v2 .product-meta-grid {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .tab-btn {
    font-size: 10px;
    padding: 8px 5px;
  }

  body.caster-v2 .media-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Footer ── */
body.caster-v2 .site-footer {
  margin-top: var(--space-xl);
  border-top: 1px solid #222;
  background: #111;
  padding: 40px 0 32px;
}

body.caster-v2 .footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

body.caster-v2 .footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: #fff;
}

body.caster-v2 .footer-nav {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

body.caster-v2 .footer-nav a {
  font-size: 11px;
  color: #a3a3a3;
  text-decoration: none;
}

body.caster-v2 .footer-nav a:hover {
  color: #fff;
}

body.caster-v2 .footer-info address {
  font-style: normal;
  font-size: 11px;
  color: #888;
  line-height: 1.7;
}

body.caster-v2 .footer-info address a {
  color: #ccc;
}

body.caster-v2 .copyright {
  margin: 8px 0 0;
  font-size: 10px;
  color: #666;
}

body.caster-v2 .cs-center {
  text-align: right;
  min-width: 200px;
}

body.caster-v2 .cs-center strong {
  font-size: 12px;
  color: #ccc;
  display: block;
  margin-bottom: 4px;
}

body.caster-v2 .cs-phone {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  /* HIGH CONTRAST RED */
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 6px;
}

body.caster-v2 .cs-center p {
  font-size: 10px;
  color: #888;
  margin: 0 0 10px;
}

body.caster-v2 .cs-center .btn-outline {
  font-size: 10px;
  padding: 6px 12px;
  border-color: #444;
  background: transparent;
  color: #fff;
  transition: all 0.2s;
}

body.caster-v2 .cs-center .btn-outline:hover {
  background: #333;
  border-color: #666;
}

@media (max-width: 560px) {
  body.caster-v2 .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  body.caster-v2 .cs-center {
    text-align: left;
  }

  body.caster-v2 .footer-nav {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* =========================================
   PHASE 11: UI ANIMATIONS & GLASSMORPHISM
   ========================================= */

/* 1. Header Glassmorphism */
body.caster-v2 .site-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* 2. Micro-interactions: Cards & Panels */
body.caster-v2 .popular-card,
body.caster-v2 .panel,
body.caster-v2 .info-card,
body.caster-v2 .notice-item {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

body.caster-v2 .popular-card:hover,
body.caster-v2 .panel:hover,
body.caster-v2 .info-card:hover,
body.caster-v2 .notice-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.03);
}

body.caster-v2 .home-panels .panel:first-child:hover {
  box-shadow: 0 12px 24px rgba(204, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 3. Micro-interactions: Buttons */
body.caster-v2 .btn {
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

body.caster-v2 .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body.caster-v2 .btn:active {
  transform: translateY(1px);
}

/* 4. Scroll Reveal Classes */
body.caster-v2 .animate-on-scroll {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

body.caster-v2 .animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   PHASE 12: INFO PAGES (NOTICE & SUPPORT)
   ========================================= */

/* 1. Page Hero & Layout */
body.caster-v2 .info-page {
  padding-bottom: 80px;
}

body.caster-v2 .page-hero {
  background: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 1px solid #eee;
}

body.caster-v2 .page-hero .eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

body.caster-v2 .page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #111;
}

body.caster-v2 .hero-desc {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

body.caster-v2 .info-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 2. Notice Grid & Cards */
body.caster-v2 .notice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

body.caster-v2 .notice-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.caster-v2 .notice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

body.caster-v2 .card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #111;
  color: #fff;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

body.caster-v2 .card-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 12px;
  display: block;
}

body.caster-v2 .notice-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #111;
}

body.caster-v2 .card-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.caster-v2 .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #f5f5f5;
}

body.caster-v2 .card-footer .author {
  font-size: 12px;
  color: #999;
}

body.caster-v2 .card-footer .more-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

/* 3. Support Layout */
body.caster-v2 .support-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

body.caster-v2 .support-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

body.caster-v2 .support-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 40px;
  display: flex;
  gap: 25px;
}

body.caster-v2 .support-card .card-icon {
  width: 48px;
  height: 48px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

body.caster-v2 .support-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #111;
}

body.caster-v2 .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}

body.caster-v2 .detail-row span {
  color: #888;
  font-size: 0.9rem;
}

body.caster-v2 .detail-row strong {
  color: #111;
}

body.caster-v2 .address {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

body.caster-v2 .map-placeholder {
  background: #eee;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-weight: 500;
  border: 1px dashed #ccc;
}

body.caster-v2 .inquiry-box {
  background: #111;
  color: #fff;
  padding: 40px;
  text-align: center;
}

body.caster-v2 .inquiry-box p {
  color: #999;
  margin: 10px 0 20px;
}

body.caster-v2 .inquiry-box .sub-text {
  font-size: 12px;
  margin-top: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  body.caster-v2 .support-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body.caster-v2 .page-hero h1 {
    font-size: 2.2rem;
  }

  body.caster-v2 .support-card {
    flex-direction: column;
    padding: 30px;
  }
}

/* Phase 13 Final Polish - Original Staggered Design Restoration */

/* Search bar: center and widen */
body.caster-v2 .site-header .search-container {
  max-width: 540px !important;
  margin: 0 auto !important;
}

/* === GRID STAGGERING === */
body.caster-v2 .home-hero {
  display: grid !important;
  grid-template-columns: 1.25fr 0.75fr !important;
  /* Staggered: wider left */
  gap: 40px !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 100px 40px 40px !important;
  min-height: auto !important;
  align-items: stretch !important;
}

body.caster-v2 .home-panels {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  /* Staggered: slightly less wide left */
  gap: 40px !important;
  max-width: 1400px !important;
  width: calc(100vw - 10px) !important;
  /* Break out of parent grid if needed */
  justify-self: center !important;
  margin: 0 auto !important;
  padding: 0 40px 60px !important;
  align-items: stretch !important;
}

/* === CARD STYLING === */
/* Hero Text: White Card */
body.caster-v2 .hero-copy {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
  padding: 50px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

/* Hero Image: White Card */
body.caster-v2 .hero-photo-slideshow {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
  overflow: hidden !important;
}

/* Inquiry: Black Card */
body.caster-v2 .panel.inquiry-panel {
  background: #111111 !important;
  color: #ffffff !important;
  border: 1px solid #333 !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
  padding: 50px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

/* Categories side: NO CARD, just floating content */
body.caster-v2 .home-panels>article:not(.inquiry-panel) {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Typography */
body.caster-v2 .hero-title {
  gap: 16px !important;
}

body.caster-v2 .hero-line {
  font-size: clamp(36px, 4vw, 54px) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  color: #111 !important;
}

body.caster-v2 .hero-line.muted {
  font-size: clamp(24px, 2.5vw, 32px) !important;
  color: #888 !important;
}

body.caster-v2 .hero-copy .hero-lede {
  font-size: 16px !important;
  margin-top: 32px !important;
  opacity: 0.8 !important;
  line-height: 1.6 !important;
  max-width: 50ch !important;
}

body.caster-v2 .hero-cta {
  margin-top: 32px !important;
}

/* Responsive */
@media (max-width: 1024px) {

  body.caster-v2 .home-hero,
  body.caster-v2 .home-panels {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    gap: 30px !important;
    width: 100% !important;
  }
}

/* 2026-03-12 v22: restore product info density and rebalance detail blocks */
body.caster-v2 .chip-row > span {
  display: none;
}

body.caster-v2 .popular-card-body,
body.caster-v2 .product-card-body {
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}

body.caster-v2 .popular-card-main,
body.caster-v2 .product-card-main {
  display: grid;
  gap: 8px;
  align-content: start;
  flex: 1 1 auto;
}

body.caster-v2 .popular-card-main h4,
body.caster-v2 .product-card h4 {
  margin: 0;
  color: #101820;
  font-size: 15px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.caster-v2 .popular-card-main h4 a,
body.caster-v2 .product-card h4 a {
  color: inherit;
  text-decoration: none;
}

body.caster-v2 .popular-card-main h4 a:hover,
body.caster-v2 .product-card h4 a:hover {
  color: #183558;
}

body.caster-v2 .card-meta {
  margin-bottom: 0;
}

body.caster-v2 .category-label {
  color: #5f7088;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.caster-v2 .card-highlight-list {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid #dfe6f0;
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
}

body.caster-v2 .card-highlight-list .highlight-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding-bottom: 8px;
  border-bottom: 1px dashed #d5dce6;
}

body.caster-v2 .card-highlight-list .highlight-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

body.caster-v2 .card-highlight-list .highlight-label,
body.caster-v2 .detail-highlight-list .highlight-label {
  color: #76869c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.caster-v2 .card-highlight-list .highlight-value {
  color: #1a2940;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

body.caster-v2 .popular-actions,
body.caster-v2 .card-actions {
  margin-top: auto;
}

body.caster-v2 .product-info-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
}

body.caster-v2 .product-badge {
  margin-bottom: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.caster-v2 .summary-container {
  margin-bottom: 0;
  padding: 14px;
  border: 1px solid #dfe6f0;
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f5f7fb 100%);
}

body.caster-v2 .product-info-panel .summary {
  margin: 0;
  padding: 0;
  border: 0;
  color: #4f6178;
  font-size: 14px;
  line-height: 1.65;
}

body.caster-v2 .summary-full-btn {
  margin-top: 10px;
}

body.caster-v2 .detail-highlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

body.caster-v2 .detail-highlight-list .highlight-row {
  min-height: 84px;
  padding: 12px;
  border: 1px solid #dfe6f0;
  border-radius: 12px;
  background: #f8fbfe;
  display: grid;
  gap: 7px;
  align-content: start;
}

body.caster-v2 .detail-highlight-list .highlight-value {
  color: #11263d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

body.caster-v2 .product-meta-grid {
  margin-bottom: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body.caster-v2 .product-meta-grid > div {
  min-height: 74px;
  padding: 10px 12px;
  border: 1px solid #dfe6f0;
  border-radius: 10px;
  background: #f6f9fc;
  display: grid;
  align-content: start;
  gap: 4px;
}

body.caster-v2 .action-row {
  margin-top: 0;
}

@media (max-width: 860px) {
  body.caster-v2 .popular-card-body,
  body.caster-v2 .product-card-body {
    min-height: 204px;
  }

  body.caster-v2 .detail-highlight-list,
  body.caster-v2 .product-meta-grid {
    grid-template-columns: 1fr;
  }

  body.caster-v2 .detail-highlight-list .highlight-row,
  body.caster-v2 .product-meta-grid > div {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  body.caster-v2 .popular-card-body,
  body.caster-v2 .product-card-body {
    padding: 10px;
    gap: 10px;
    min-height: 0;
  }

  body.caster-v2 .popular-card-main,
  body.caster-v2 .product-card-main {
    gap: 8px;
  }

  body.caster-v2 .popular-card-main h4,
  body.caster-v2 .product-card h4 {
    font-size: 13px;
  }

  body.caster-v2 .card-highlight-list,
  body.caster-v2 .summary-container,
  body.caster-v2 .detail-highlight-list .highlight-row {
    padding: 10px;
    border-radius: 10px;
  }

  body.caster-v2 .card-highlight-list .highlight-row {
    gap: 8px;
  }

  body.caster-v2 .card-highlight-list .highlight-value {
    font-size: 11px;
  }
}

/* Force bright color for phone numbers in dark footer */
@media screen {
  body.caster-v2 .site-footer .cs-phone,
  body.caster-v2 .site-footer .cs-phone a,
  body.caster-v2 .site-footer .cs-center strong a,
  body.caster-v2 .site-footer a[href^="tel:"] {
    color: #ffffff !important;
    text-decoration: none !important;
  }
}

/* --- Responsive Header & Filter Overrides --- */
@media (max-width: 1200px) {
  body.caster-v2 .header-inner {
    grid-template-columns: auto 1fr auto !important;
    gap: 15px !important;
  }
  body.caster-v2 .search-container {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin-top: 10px !important;
  }
  body.caster-v2 .gnb-inner {
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding-bottom: 5px !important;
    -webkit-overflow-scrolling: touch;
    height: auto !important;
  }
  body.caster-v2 .gnb-item {
    display: inline-block !important;
  }
}

@media (max-width: 1200px) {
  body.caster-v2 .catalog-layout {
    display: block !important;
  }
  body.caster-v2 .filter-panel {
    display: none !important;
    position: fixed !important;
    inset: 0 0 0 auto !important;
    width: min(90vw, 360px) !important;
    max-height: 100dvh !important;
    overflow-y: auto !important;
    background: #fff !important;
    z-index: 2000 !important;
    border: none !important;
    box-shadow: -4px 0 16px rgba(0,0,0,0.15) !important;
    padding: 24px !important;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  body.caster-v2 .catalog-layout .filter-panel.is-open {
    display: block !important;
    transform: translateX(0) !important;
  }
  body.caster-v2 .pc-hidden {
    display: inline-flex !important;
  }
}

/* --- Language Toggle Flag UI --- */
body.caster-v2 .lang-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #fff;
  opacity: 1.0;
  text-decoration: none;
  transition: all 0.2s;
}
body.caster-v2 .lang-btn:hover {
  opacity: 1;
  font-weight: 800;
}
body.caster-v2 .lang-flag {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 6px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
}

/* --- Final Mobile Safeties --- */
@media (max-width: 860px) {
  body.caster-v2 .product-header,
  body.caster-v2 .catalog-layout {
    display: flex !important;
    flex-direction: column !important;
  }
  body.caster-v2 .gnb-bar, 
  body.caster-v2 .gnb-inner {
    display: none !important;
  }
  /* Footer fixes for awkward alignment */
  body.caster-v2 .footer-inner {
    flex-direction: column !important;
    gap: 32px !important;
    align-items: flex-start !important;
  }
  body.caster-v2 .footer-info,
  body.caster-v2 .cs-center {
    width: 100% !important;
    text-align: left !important;
  }
  body.caster-v2 .cs-center {
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }
  body.caster-v2 .cs-center .btn {
    margin-left: 0 !important;
    margin-top: 10px !important;
  }
  body.caster-v2 .footer-nav {
    flex-wrap: wrap !important;
    gap: 12px 16px !important;
  }
}

/* 2026-03-29 site page completion */
body.caster-v2 .notice-item-link,
body.caster-v2 .notice-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

body.caster-v2 .info-stack {
  display: grid;
  gap: 28px;
}

body.caster-v2 .info-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

body.caster-v2 .info-card,
body.caster-v2 .content-card,
body.caster-v2 .notice-detail,
body.caster-v2 .policy-sheet {
  background: #fff;
  border: 1px solid #eee;
}

body.caster-v2 .info-card {
  padding: 28px;
}

body.caster-v2 .info-card.compact {
  padding: 24px;
}

body.caster-v2 .info-card-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

body.caster-v2 .info-card-value {
  display: block;
  margin-top: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #111;
}

body.caster-v2 .info-card-subject {
  display: block;
  margin-top: 12px;
  font-size: 1.2rem;
  line-height: 1.35;
  color: #111;
}

body.caster-v2 .info-card-caption {
  margin: 12px 0 0;
  color: #666;
  line-height: 1.6;
}

body.caster-v2 .about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 28px;
}

body.caster-v2 .content-card,
body.caster-v2 .notice-detail,
body.caster-v2 .policy-sheet {
  padding: 36px;
}

body.caster-v2 .content-card h2,
body.caster-v2 .policy-sheet h2,
body.caster-v2 .notice-detail h2 {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.25;
  color: #111;
}

body.caster-v2 .rich-copy p,
body.caster-v2 .notice-body p,
body.caster-v2 .policy-section p {
  margin: 0 0 16px;
  color: #4b5563;
  line-height: 1.8;
}

body.caster-v2 .value-list,
body.caster-v2 .timeline-list {
  display: grid;
  gap: 16px;
}

body.caster-v2 .value-item {
  padding-top: 16px;
  border-top: 1px solid #f1f1f1;
}

body.caster-v2 .value-item:first-child {
  padding-top: 0;
  border-top: 0;
}

body.caster-v2 .value-item h3,
body.caster-v2 .timeline-copy h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #111;
}

body.caster-v2 .value-item p,
body.caster-v2 .timeline-copy p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}

body.caster-v2 .timeline-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid #f1f1f1;
}

body.caster-v2 .timeline-item:first-child {
  padding-top: 0;
  border-top: 0;
}

body.caster-v2 .timeline-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

body.caster-v2 .policy-meta {
  margin-bottom: 22px;
  color: #888;
  font-size: 13px;
}

body.caster-v2 .policy-section {
  padding: 22px 0;
  border-top: 1px solid #f1f1f1;
}

body.caster-v2 .policy-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

body.caster-v2 .policy-section h2 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}

body.caster-v2 .policy-section ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #4b5563;
  line-height: 1.8;
}

body.caster-v2 .policy-side-note {
  margin-top: 24px;
  border: 1px solid #eee;
  background: #fff;
  padding: 28px;
}

body.caster-v2 .policy-side-note h3 {
  margin: 10px 0 0;
  font-size: 1.3rem;
}

body.caster-v2 .page-actions,
body.caster-v2 .location-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

body.caster-v2 .map-card {
  min-height: 220px;
  padding: 32px;
  border: 1px solid #eee;
  background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

body.caster-v2 .map-card-inline {
  min-height: 0;
  padding: 28px;
  margin-top: 12px;
}

body.caster-v2 .map-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

body.caster-v2 .map-card strong {
  display: block;
  font-size: 1.3rem;
  color: #111;
}

body.caster-v2 .map-card p {
  margin: 12px 0 0;
  color: #666;
  line-height: 1.7;
}

body.caster-v2 .contact-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

body.caster-v2 .contact-mini-grid article {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.9);
  padding: 16px 18px;
}

body.caster-v2 .contact-mini-grid span {
  display: block;
  font-size: 12px;
  color: #777;
}

body.caster-v2 .contact-mini-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #111;
}

body.caster-v2 .notice-detail {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

body.caster-v2 .notice-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

body.caster-v2 .notice-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f5f5f5;
  font-size: 13px;
  color: #555;
}

@media (max-width: 992px) {
  body.caster-v2 .about-story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body.caster-v2 .content-card,
  body.caster-v2 .notice-detail,
  body.caster-v2 .policy-sheet {
    padding: 28px;
  }

  body.caster-v2 .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.caster-v2 .info-card-value {
    font-size: 1.55rem;
  }

  body.caster-v2 .page-actions,
  body.caster-v2 .location-link-grid {
    flex-direction: column;
  }
}
