/* AI CASTER Renewal v2 - production ecommerce overrides on mock2 base */

body.caster-v2 {
  min-height: 100%;
  --page-max: 1320px;
  --page-gutter: 20px;
  --bg: #f1f3f6;
  --canvas: #f7f8fa;
  --surface: #ffffff;
  --surface-soft: #f5f5f5;
  --surface-muted: #eeeeee;
  --line: #dedede;
  --line-strong: #bdbdbd;
  --text: #111111;
  --text-soft: #333333;
  --text-muted: #707070;
  --accent: #111111;
  --accent-soft: #f4f4f4;
  background:
    radial-gradient(1200px 600px at 50% -220px, rgba(80, 98, 125, 0.14) 0%, rgba(80, 98, 125, 0) 60%),
    linear-gradient(180deg, var(--canvas) 0%, var(--bg) 100%);
}

body.caster-v2 .mock-page {
  width: 100%;
  margin: 0;
  padding: 0 0 44px;
  grid-template-columns: 1fr;
  gap: 0;
}

body.caster-v2 .site-shell {
  min-height: 100vh;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

body.caster-v2 .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
}

body.caster-v2 .topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #121212;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  padding: 8px 0;
}

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

body.caster-v2 .topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

body.caster-v2 .topbar-links a,
body.caster-v2 .drawer-links a,
body.caster-v2 .drawer-chips a,
body.caster-v2 .product-link,
body.caster-v2 .preview-link,
body.caster-v2 .inquiry-button,
body.caster-v2 .masthead-links a,
body.caster-v2 .category-bar a {
  color: inherit;
  text-decoration: none;
}

body.caster-v2 .topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

body.caster-v2 .topbar-lang {
  font-size: 11px;
  font-weight: 700;
}

body.caster-v2 .menu-toggle,
body.caster-v2 .menu-close {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  cursor: pointer;
}

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

body.caster-v2 .masthead-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: auto auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 12px;
}

body.caster-v2 .masthead-links {
  justify-content: flex-start;
  gap: 8px;
  margin-left: 8px;
}

body.caster-v2 .masthead-links a {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
}

body.caster-v2 .masthead-links a.is-active {
  border-color: var(--text);
  background: var(--accent-soft);
  color: var(--text);
}

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

body.caster-v2 .header-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-size: 12px;
  padding: 9px 14px;
}

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

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

body.caster-v2 .category-bar {
  padding: 10px 0;
  display: block;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
}

body.caster-v2 .category-bar-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: flex;
  flex-wrap: nowrap;
  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: 6px 11px;
}

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

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

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

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

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

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

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

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

body.caster-v2 .drawer-section p {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
}

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

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 {
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 12px;
  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 h2,
body.caster-v2 .filter-panel h2,
body.caster-v2 .detail-panel h2,
body.caster-v2 .panel h3,
body.caster-v2 .product-card h3 {
  text-transform: none;
  letter-spacing: -0.02em;
}

body.caster-v2 .hero-copy h2 {
  font-size: clamp(46px, 5vw, 76px);
  line-height: 0.92;
  max-width: 12ch;
}

body.caster-v2 .filter-panel h2 {
  font-size: clamp(42px, 4.1vw, 60px);
  line-height: 0.95;
}

body.caster-v2 .detail-panel h2 {
  font-size: clamp(42px, 4vw, 58px);
  line-height: 0.95;
}

body.caster-v2 .panel h3 {
  font-size: clamp(36px, 3.2vw, 48px);
  line-height: 0.94;
}

body.caster-v2 .product-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

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

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

body.caster-v2 .home-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

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 .reel-strip,
body.caster-v2 .popular-section,
body.caster-v2 .notice-board,
body.caster-v2 .related-section {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(18, 23, 34, 0.05);
}

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

body.caster-v2 .hero-copy::after {
  content: "";
}

body.caster-v2 .eyebrow {
  color: #75849a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

body.caster-v2 .hero-copy p,
body.caster-v2 .filter-panel p,
body.caster-v2 .summary,
body.caster-v2 .plain-list li {
  color: var(--text-soft);
}

body.caster-v2 .hero-cta {
  margin-top: 15px;
}

body.caster-v2 .btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 13px;
  text-decoration: none;
}

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

body.caster-v2 .hero-cta .btn:not(.btn-primary):hover {
  background: #ffffff !important;
  color: var(--text-soft) !important;
  border-color: var(--line-strong) !important;
  box-shadow: 0 10px 20px -16px rgba(18, 23, 34, 0.2) !important;
}

body.caster-v2 .utility-button {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

body.caster-v2 .utility-user-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(210, 33, 43, 0.08);
  color: #8d1420;
  font-weight: 700;
}

#auth-chat-root {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
}

.chatbot-launcher {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(18, 23, 34, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
  color: #101827;
  padding: 0;
  box-shadow: 0 18px 38px -22px rgba(16, 24, 39, 0.45);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.chatbot-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -20px rgba(16, 24, 39, 0.5);
}

.chatbot-launcher::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  right: 10px;
  top: 10px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #d2212b;
  box-shadow: 0 8px 16px -12px rgba(210, 33, 43, 0.9);
}

.chatbot-launcher-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #111827;
}

.chatbot-launcher-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.chatbot-panel {
  width: min(392px, calc(100vw - 24px));
  height: min(620px, calc(100vh - 112px));
  margin-bottom: 14px;
  border-radius: 26px;
  border: 1px solid rgba(18, 23, 34, 0.1);
  background: #fff;
  box-shadow: 0 28px 60px -32px rgba(18, 23, 34, 0.45);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  animation: chatbot-rise 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: bottom right;
}

@keyframes chatbot-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chatbot-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 15px;
  border-bottom: 1px solid rgba(18, 23, 34, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fff4f4 100%);
}

.chatbot-header strong {
  display: block;
  font-size: 17px;
}

.chatbot-header p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #6b7280;
}

.chatbot-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(18, 23, 34, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  cursor: pointer;
  color: #6b7280;
}

.chatbot-messages {
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 16px;
  overflow: auto;
  background:
    radial-gradient(circle at top right, rgba(210, 33, 43, 0.08), transparent 34%),
    #f7f8fb;
}

.chatbot-message {
  display: grid;
  gap: 6px;
}

.chatbot-message.is-user {
  justify-items: end;
}

.chatbot-role {
  font-size: 11px;
  font-weight: 700;
  color: #7b8190;
}

.chatbot-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(18, 23, 34, 0.08);
  box-shadow: 0 12px 24px -24px rgba(18, 23, 34, 0.4);
}

.chatbot-message.is-user .chatbot-bubble {
  background: #101827;
  color: #fff;
  border-color: #101827;
}

.chatbot-message.is-pending .chatbot-bubble {
  background: #fff6f5;
  border-style: dashed;
}

.chatbot-bubble p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.chatbot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.chatbot-links.is-notice-links {
  margin-top: 8px;
}

.chatbot-link-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(210, 33, 43, 0.08);
  color: #8d1420;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.chatbot-link-chip.is-notice {
  background: rgba(17, 24, 39, 0.06);
  color: #293243;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 14px calc(14px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(18, 23, 34, 0.08);
  background: #fff;
}

.chatbot-form input {
  min-width: 0;
  border: 1px solid rgba(18, 23, 34, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
}

.chatbot-form button {
  border: 0;
  border-radius: 14px;
  padding: 0 16px;
  background: #d2212b;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.chatbot-scroll-anchor {
  height: 1px;
}

.auth-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 24, 0.55);
}

.auth-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, calc(100vw - 32px));
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 70px -34px rgba(18, 23, 34, 0.55);
  padding: 24px;
  z-index: 1201;
}

.auth-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #6b7280;
}

.auth-modal-head strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.auth-modal-head p {
  margin: 8px 0 0;
  color: #6b7280;
  line-height: 1.5;
  font-size: 14px;
}

.auth-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.auth-form label {
  display: grid;
  gap: 8px;
}

.auth-form span {
  font-size: 13px;
  font-weight: 700;
}

.auth-form input {
  border: 1px solid rgba(18, 23, 34, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
}

.auth-error {
  margin: -2px 0 0;
  color: #c21f2b;
  font-size: 13px;
  font-weight: 700;
}

.auth-submit,
.auth-switch {
  border: 0;
  border-radius: 14px;
  padding: 13px 16px;
  font: inherit;
  cursor: pointer;
}

.auth-submit {
  background: #101827;
  color: #fff;
  font-weight: 800;
}

.auth-switch {
  width: 100%;
  margin-top: 14px;
  background: #f3f4f6;
  color: #111827;
  font-weight: 700;
}

@media (max-width: 640px) {
  #auth-chat-root {
    right: 12px;
    left: auto;
    bottom: 12px;
  }

  .chatbot-launcher {
    width: 58px;
    height: 58px;
  }

  .chatbot-panel {
    width: 100%;
    height: min(68vh, 540px);
  }

  .utility-user-pill {
    display: none;
  }
}

/* 2026-03-25: final utility bar overrides must stay last */
body.caster-v2 .utility-right a.utility-item {
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  text-decoration: none !important;
  text-underline-offset: 4px !important;
  text-decoration-thickness: 1px !important;
}

body.caster-v2 .utility-right a.utility-item:hover,
body.caster-v2 .utility-right a.utility-item:focus-visible {
  background: transparent !important;
  color: #ffffff !important;
  text-decoration: underline !important;
  text-decoration-color: currentColor !important;
  outline: none !important;
}

body.caster-v2 .utility-right .lang-btn {
  gap: 6px !important;
}

body.caster-v2 .utility-right .lang-btn .lang-flag {
  width: 16px !important;
  height: 12px !important;
  min-width: 16px !important;
  border-radius: 0 !important;
  margin-right: 0 !important;
  object-fit: cover !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) !important;
}

/* 2026-03-25: utility bar links use underline hover, not pill background */
body.caster-v2 .utility-right a.utility-item {
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  text-decoration: none !important;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

body.caster-v2 .utility-right a.utility-item:hover,
body.caster-v2 .utility-right a.utility-item:focus-visible {
  background: transparent !important;
  color: #ffffff !important;
  text-decoration: underline !important;
  text-decoration-color: currentColor;
  outline: none;
}

body.caster-v2 .utility-right .lang-btn {
  gap: 6px;
}

body.caster-v2 .utility-right .lang-btn .lang-flag {
  width: 16px !important;
  height: 12px !important;
  min-width: 16px;
  border-radius: 0 !important;
  margin-right: 0 !important;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

/* 2026-03-25: live static shell hover contrast uses utility-bar/gnb/footer selectors */
body.caster-v2 .utility-bar a.utility-item,
body.caster-v2 .gnb-item,
body.caster-v2 .footer-nav a,
body.caster-v2 .footer-info address a,
body.caster-v2 .footer-inner .cs-center .btn,
body.caster-v2 .action-btn {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

body.caster-v2 .utility-bar a.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
}

body.caster-v2 .utility-bar a.utility-item:hover,
body.caster-v2 .utility-bar a.utility-item:focus-visible {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none;
  outline: none;
}

body.caster-v2 .gnb-item:hover,
body.caster-v2 .gnb-item:focus-visible {
  color: var(--accent) !important;
  background: rgba(203, 100, 50, 0.08);
  border-bottom-color: var(--accent) !important;
  outline: none;
}

body.caster-v2 .action-btn:hover,
body.caster-v2 .action-btn:focus-visible {
  border-color: #a30000 !important;
  background: #a30000 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 22px -16px rgba(163, 0, 0, 0.45);
  outline: none;
}

body.caster-v2 .footer-nav a:hover,
body.caster-v2 .footer-nav a:focus-visible,
body.caster-v2 .footer-info address a:hover,
body.caster-v2 .footer-info address a:focus-visible {
  color: #ffffff !important;
  text-decoration: none;
  outline: none;
}

body.caster-v2 .footer-inner .cs-center .btn:hover,
body.caster-v2 .footer-inner .cs-center .btn:focus-visible {
  border-color: #ffffff !important;
  background: #ffffff;
  color: #111111 !important;
  outline: none;
}

/* 2026-03-25: strengthen static shell default contrast for live utility/footer */
body.caster-v2 .utility-bar {
  color: #cfd8e6 !important;
}

body.caster-v2 .utility-left .utility-item,
body.caster-v2 .utility-right .utility-item,
body.caster-v2 .utility-divider {
  color: #cfd8e6 !important;
}

body.caster-v2 .utility-left .utility-item b {
  color: #f3f6fb !important;
}

body.caster-v2 .utility-right .lang-btn {
  color: #f3f6fb !important;
}

body.caster-v2 .utility-bar a.utility-item:hover,
body.caster-v2 .utility-bar a.utility-item:focus-visible {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.16) !important;
}

body.caster-v2 .site-footer,
body.caster-v2 .footer-inner {
  color: #d2d8e2;
}

body.caster-v2 .footer-nav a,
body.caster-v2 .footer-info address a {
  color: #d8dee8 !important;
}

body.caster-v2 .footer-info address,
body.caster-v2 .footer-inner .cs-center p,
body.caster-v2 .footer-info .copyright {
  color: #aeb8c7 !important;
}

body.caster-v2 .footer-inner .cs-center strong,
body.caster-v2 .footer-logo,
body.caster-v2 .cs-phone,
body.caster-v2 .site-footer .cs-phone,
body.caster-v2 .site-footer a[href^="tel:"] {
  color: #f5f7fb !important;
}

body.caster-v2 .footer-inner .cs-center .btn {
  border-color: rgba(255, 255, 255, 0.3) !important;
  background: rgba(255, 255, 255, 0.04);
  color: #eef2f8 !important;
}

/* 2026-03-23: keep product thumbnails on the same white card plane */
body.caster-v2 .popular-card .preview-link,
body.caster-v2 .product-card .preview-link,
body.caster-v2 .related-card .preview-link {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

/* 2026-03-23: keep catalog filter closed by default on tablet/mobile */
@media (max-width: 1260px) {
  body.caster-v2 .catalog-layout .filter-panel {
    display: none !important;
    position: fixed !important;
    inset: 0 0 0 auto !important;
    width: min(92vw, 360px) !important;
    max-height: 100dvh !important;
    overflow-y: auto !important;
    align-self: auto !important;
    padding: 24px !important;
    background: #ffffff !important;
    border-radius: 0 !important;
    border-left: 1px solid #e0e0e0 !important;
    border-right: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    box-shadow: -18px 0 40px rgba(12, 25, 43, 0.2) !important;
    z-index: 2200 !important;
    transform: translateX(100%) !important;
    transition: transform 0.24s ease !important;
  }

  body.caster-v2 .catalog-layout .filter-panel.is-open {
    display: block !important;
    transform: translateX(0) !important;
  }

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

  body.caster-v2 .filter-toggle-btn,
  body.caster-v2 .close-filter {
    display: inline-flex !important;
  }
}

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

body.caster-v2 .stats-strip {
  margin-top: 16px;
  gap: 8px;
}

body.caster-v2 .stats-strip article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
}

body.caster-v2 .stats-strip span {
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: none;
}

body.caster-v2 .hero-video {
  padding: 12px;
  background: #10141c;
  color: #f1f4fa;
}

body.caster-v2 .hero-video video,
body.caster-v2 .main-player video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  background: #ffffff;
}

body.caster-v2 .timeline div {
  border: 1px solid #232b37;
  border-radius: 8px;
  background: #161c27;
}

body.caster-v2 .timeline span {
  color: rgba(241, 244, 250, 0.64);
}

body.caster-v2 .timeline strong {
  color: rgba(241, 244, 250, 0.92);
}

body.caster-v2 .plain-list li {
  border-left: 2px solid #cad3e0;
}

body.caster-v2 .chip-row span,
body.caster-v2 .catalog-specs span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
}

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

body.caster-v2 .category-card-link {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  padding: 11px;
  display: grid;
  gap: 4px;
  color: inherit;
  text-decoration: none;
  transition: border-color 120ms ease, background 120ms ease;
}

body.caster-v2 .category-card-link:hover {
  border-color: var(--line-strong);
  background: #eef3fa;
}

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

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

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

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

body.caster-v2 .section-head h3 {
  margin: 0;
}

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

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

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

body.caster-v2 .popular-card .preview-link img,
body.caster-v2 .related-card .preview-link img,
body.caster-v2 .reel-grid img,
body.caster-v2 .media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

body.caster-v2 .related-card .preview-link div {
  padding: 9px;
  display: grid;
  gap: 4px;
}

body.caster-v2 .related-card .preview-link p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

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

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

body.caster-v2 .catalog-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

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

body.caster-v2 .mini-link,
body.caster-v2 .tool-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  padding: 5px 10px;
  cursor: pointer;
}

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

body.caster-v2 .notice-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  padding: 10px;
  display: grid;
  gap: 6px;
}

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

body.caster-v2 .notice-item p span {
  margin-right: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 7px;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 10px;
  background: var(--surface-soft);
}

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

body.caster-v2 .reel-strip {
  border-color: #202938;
  background: #131a24;
  color: #f0f4fa;
}

body.caster-v2 .reel-strip h3 {
  color: #ffffff;
}

body.caster-v2 .reel-strip p {
  color: rgba(240, 244, 250, 0.72);
}

body.caster-v2 .reel-grid article {
  border: 1px solid #2b3442;
  border-radius: 10px;
  overflow: hidden;
  background: #1a2431;
}

body.caster-v2 .reel-grid div {
  padding: 8px 9px;
}

body.caster-v2 .reel-grid p {
  margin: 0;
  color: #f5f7fb;
  font-size: 12px;
}

body.caster-v2 .reel-grid span {
  color: rgba(240, 244, 250, 0.7);
  font-size: 10px;
}

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

body.caster-v2 .catalog-layout .filter-panel {
  position: sticky;
  top: 122px;
  align-self: start;
  padding: 16px;
  display: block;
}

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

body.caster-v2 .filter-list .pill {
  display: block;
  text-decoration: none;
}

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

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

body.caster-v2 .category-filter-list {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}

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

body.caster-v2 .toolbar {
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.caster-v2 .toolbar input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 12px;
  padding: 9px 11px;
}

body.caster-v2 .toolbar select {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--text);
  font-size: 12px;
  padding: 8px;
}

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

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: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

body.caster-v2 .product-card:nth-child(2n) {
  margin-top: 0;
}

body.caster-v2 .product-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 12px 22px rgba(18, 23, 34, 0.1);
}

body.caster-v2 .product-card:hover .media img {
  transform: none;
}

body.caster-v2 .product-link,
body.caster-v2 .preview-link {
  color: inherit;
  display: block;
  background: #ffffff;
}

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

body.caster-v2 .media-badge {
  position: absolute;
  top: 7px;
  right: 7px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 7px;
}

body.caster-v2 .media-badge.is-photo {
  border-color: var(--line);
  background: var(--surface-soft);
  color: var(--text-muted);
}

body.caster-v2 .product-card .content {
  padding: 10px;
}

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

body.caster-v2 .meta-row {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 10px;
}

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

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

body.caster-v2 .detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 14px;
  margin-bottom: 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: 10px;
  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: 7px 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: 10px;
  background: var(--surface-soft);
  color: var(--text-muted);
  text-align: left;
  padding: 9px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  cursor: pointer;
}

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

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-radius: 6px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  object-fit: cover;
  display: block;
}

body.caster-v2 .playlist-thumb.is-empty {
  display: block;
}

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 {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  padding: 8px 10px;
}

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

body.caster-v2 .meta-grid strong {
  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: 10px;
  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;
  display: grid;
  gap: 5px;
  color: var(--text-soft);
  font-size: 12px;
}

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

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

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

body.caster-v2 .spec-box dt {
  color: var(--text-muted);
}

body.caster-v2 .spec-box dd {
  color: var(--text-soft);
}

body.caster-v2 img.is-placeholder {
  object-fit: contain;
  background: var(--surface-soft);
}

@media (max-width: 1260px) {

  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 .product-grid,
  body.caster-v2 .popular-grid,
  body.caster-v2 .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  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 .mock-page {
    padding-bottom: 30px;
  }

  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 {
    margin-left: 0;
    justify-content: flex-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;
    font-size: 11px;
    padding: 7px 12px;
  }

  body.caster-v2 .site-content-inner,
  body.caster-v2 .topbar-inner,
  body.caster-v2 .masthead-inner,
  body.caster-v2 .category-bar-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

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

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

  body.caster-v2 .filter-panel h2,
  body.caster-v2 .detail-panel h2 {
    font-size: clamp(36px, 10vw, 52px);
  }

  body.caster-v2 .hero-copy h2 {
    font-size: clamp(38px, 11vw, 56px);
    max-width: 10ch;
  }

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

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

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

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

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

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

  body.caster-v2 .toolbar select,
  body.caster-v2 .tool-btn,
  body.caster-v2 .counter {
    flex: 1 1 auto;
  }

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

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

/* UI Polish: Prevent chip text overflow */
.chip-row span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}

/* v24 final lock: catalog cards must stay compact across routes */
body.caster-v2 .product-card .media-badge,
body.caster-v2 .popular-card .media-badge {
  border: 1px solid #0f1520;
  border-radius: 999px;
  background: #0f1520;
  color: #ffffff;
  box-shadow: none;
}

body.caster-v2 .product-card .card-actions .btn,
body.caster-v2 .product-card .card-actions .btn.btn-sm,
body.caster-v2 .popular-card .popular-actions .mini-link {
  border-radius: 999px;
  min-height: 30px;
}

body.caster-v2 .product-card .card-actions .btn-primary,
body.caster-v2 .popular-card .popular-actions .mini-link.is-primary {
  border-color: #cc0000;
  background: #cc0000;
  color: #ffffff;
}

body.caster-v2 .product-card .card-actions .btn-primary:hover,
body.caster-v2 .popular-card .popular-actions .mini-link.is-primary:hover {
  border-color: #a30000;
  background: #a30000;
}

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

body.caster-v2 .popular-card .popular-actions .mini-link {
  width: 100%;
  justify-content: center;
}

body.caster-v2 .product-card .card-actions .btn:not(.btn-primary),
body.caster-v2 .popular-card .popular-actions .mini-link:not(.is-primary) {
  border-color: var(--line);
  background: #ffffff;
  color: var(--text-soft);
}

body.caster-v2 .product-card .card-highlight-list,
body.caster-v2 .popular-card .card-highlight-list {
  border: 1px solid #dfe6f0;
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
  box-shadow: none;
}

body.caster-v2 .card-highlight-list .highlight-row {
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  min-height: 20px;
}

body.caster-v2 .card-highlight-list .highlight-label {
  display: block;
  min-width: 0;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.3;
  padding-block: 1px;
  color: #7788a3;
}

body.caster-v2 .card-highlight-list .highlight-value {
  display: block;
  min-width: 0;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  overflow-wrap: normal;
  word-break: keep-all;
  line-height: 1.3;
  padding-block: 1px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* v30: card bodies must fill full width instead of shrinking to content width */
body.caster-v2 .popular-grid,
body.caster-v2 .product-grid,
body.caster-v2 .related-grid {
  align-items: start;
}

body.caster-v2 .popular-card,
body.caster-v2 .product-card,
body.caster-v2 .related-card {
  height: auto;
  align-self: start;
}

body.caster-v2 .popular-card-body,
body.caster-v2 .product-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-width: 0;
  padding: 10px;
}

body.caster-v2 .popular-card-main,
body.caster-v2 .product-card-main,
body.caster-v2 .card-meta,
body.caster-v2 .popular-card .card-highlight-list,
body.caster-v2 .product-card .card-highlight-list,
body.caster-v2 .popular-card .popular-actions,
body.caster-v2 .product-card .card-actions {
  width: 100%;
  min-width: 0;
}

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

body.caster-v2 .popular-card-main h4,
body.caster-v2 .product-card h4 {
  width: 100%;
}

body.caster-v2 .popular-card .preview-link,
body.caster-v2 .product-card .preview-link,
body.caster-v2 .related-card .preview-link {
  aspect-ratio: 16 / 10;
}

body.caster-v2 .popular-card .popular-actions,
body.caster-v2 .product-card .card-actions {
  margin-top: 0;
}

@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));
    gap: 8px;
  }

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

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

  body.caster-v2 .masthead-links a {
    padding: 6px 10px;
  }

  body.caster-v2 .product-card .preview-link,
  body.caster-v2 .popular-card .preview-link,
  body.caster-v2 .related-card .preview-link {
    aspect-ratio: 16 / 10;
  }

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

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

  body.caster-v2 .product-card h4,
  body.caster-v2 .popular-card-main h4 {
    font-size: 12px;
    line-height: 1.2;
  }

  body.caster-v2 .category-label {
    font-size: 9px;
  }

  body.caster-v2 .product-card .card-highlight-list,
  body.caster-v2 .popular-card .card-highlight-list {
    padding: 8px;
    border-radius: 10px;
    gap: 6px;
  }

  body.caster-v2 .card-highlight-list .highlight-row {
    gap: 5px;
    min-height: 16px;
    padding-bottom: 5px;
    grid-template-columns: 34px minmax(0, 1fr);
  }

  body.caster-v2 .card-highlight-list .highlight-label {
    font-size: 7px;
    line-height: 1.25;
  }

  body.caster-v2 .card-highlight-list .highlight-value {
    font-size: 8px;
    line-height: 1.25;
  }

  body.caster-v2 .product-card .card-actions .btn,
  body.caster-v2 .product-card .card-actions .btn.btn-sm,
  body.caster-v2 .popular-card .popular-actions .mini-link {
    min-height: 27px;
    padding: 4px 6px;
    font-size: 10px;
  }
}

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

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

  body.caster-v2 .product-card .preview-link,
  body.caster-v2 .popular-card .preview-link,
  body.caster-v2 .related-card .preview-link {
    aspect-ratio: 16 / 10;
  }

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

  body.caster-v2 .card-highlight-list {
    padding: 7px;
  }

  body.caster-v2 .card-highlight-list .highlight-label {
    font-size: 6px;
    line-height: 1.2;
  }

  body.caster-v2 .card-highlight-list .highlight-value {
    font-size: 7px;
    line-height: 1.2;
  }

  body.caster-v2 .product-card .card-actions .btn,
  body.caster-v2 .product-card .card-actions .btn.btn-sm,
  body.caster-v2 .popular-card .popular-actions .mini-link {
    min-height: 25px;
    padding: 4px 5px;
    font-size: 9px;
  }
}

/* Preview Thumbnails Added 2026-03-19 */
.media-thumb-strip { display: flex; gap: 10px; overflow-x: auto; margin-top: 15px; padding-bottom: 5px; }
.thumb-item { flex: 0 0 auto; width: 80px; height: 80px; border: 2px solid transparent; border-radius: 4px; overflow: hidden; cursor: pointer; background: #ffffff; padding: 4px; position: relative; }
.thumb-item.is-active { border-color: #000; }
.thumb-item img { width: 100%; height: 100%; object-fit: contain; display: block; mix-blend-mode: multiply; }
.thumb-play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; background: rgba(0,0,0,0.6); border-radius: 50%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; font-size: 12px; }


/* Update 2: Larger wrapping thumbnails */
.media-thumb-strip { flex-wrap: wrap; overflow-x: visible; }
.thumb-item { width: 96px !important; height: 96px !important; }

/* 2026-03-23: classic home polish */
body.caster-v2 .home-hero > article,
body.caster-v2 .home-panels .panel,
body.caster-v2 .popular-card,
body.caster-v2 .notice-item,
body.caster-v2 .category-card-link {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

body.caster-v2 .hero-copy {
  position: relative;
}

body.caster-v2 .hero-copy::before {
  content: "";
  position: absolute;
  inset: auto auto 18px 0;
  width: 64px;
  height: 2px;
  background: var(--accent);
  opacity: 0.9;
}

body.caster-v2 .popular-card .preview-link,
body.caster-v2 .category-card-link,
body.caster-v2 .notice-item {
  overflow: hidden;
}

body.caster-v2 .popular-card .preview-link img {
  transition: transform 0.5s ease;
  transform-origin: center center;
}

body.caster-v2 .category-card-link:hover,
body.caster-v2 .popular-card:hover,
body.caster-v2 .notice-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px -22px rgba(0, 0, 0, 0.35);
}

body.caster-v2 .popular-card:hover .preview-link img {
  transform: scale(1.03);
}

body.caster-v2 .home-hero .hero-photo-slideshow {
  box-shadow: 0 28px 48px -28px rgba(0, 0, 0, 0.22);
}

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

body.caster-v2 .notice-board .notice-item > p:last-of-type {
  color: var(--text-soft);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 2026-03-23: override legacy Phase 13 home expansion */
body.caster-v2 .home-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) !important;
  gap: 10px !important;
  max-width: none !important;
  width: auto !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  min-height: 0 !important;
  align-items: stretch !important;
}

body.caster-v2 .home-panels {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  max-width: none !important;
  width: auto !important;
  justify-self: auto !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  align-items: stretch !important;
}

body.caster-v2 .hero-copy {
  padding: 22px !important;
}

body.caster-v2 .hero-photo-slideshow {
  min-height: 0 !important;
  height: auto !important;
}

body.caster-v2 .panel.inquiry-panel {
  padding: 32px !important;
}

body.caster-v2 .home-panels > article:not(.inquiry-panel) {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 8px 20px rgba(18, 23, 34, 0.05) !important;
  border-radius: 14px !important;
  padding: 32px !important;
}

body.caster-v2 .hero-title {
  gap: 14px !important;
}

body.caster-v2 .hero-line {
  font-size: clamp(30px, 3vw, 38px) !important;
  line-height: 1.08 !important;
}

body.caster-v2 .hero-line.muted {
  font-size: clamp(18px, 2vw, 24px) !important;
}

body.caster-v2 .hero-copy .hero-lede {
  font-size: 15px !important;
  margin-top: 0 !important;
  line-height: 1.55 !important;
  max-width: 48ch !important;
}

body.caster-v2 .hero-cta {
  margin-top: 24px !important;
}

body.caster-v2 .home-panels .panel h3 {
  font-size: clamp(30px, 3vw, 42px) !important;
  line-height: 0.98 !important;
}

body.caster-v2 .category-cards-ecom {
  margin-top: 12px !important;
}

body.caster-v2 .hero-copy::before {
  content: none !important;
  display: none !important;
}

body.caster-v2 .popular-card {
  position: relative;
}

body.caster-v2 .popular-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
  z-index: 2;
}

body.caster-v2 .popular-card:hover {
  border-color: rgba(210, 33, 43, 0.22);
  box-shadow: 0 18px 32px -24px rgba(18, 23, 34, 0.35);
}

body.caster-v2 .popular-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

body.caster-v2 .hero-cta .btn:not(.btn-primary):hover {
  background: #ffffff !important;
  color: var(--text-soft) !important;
  border-color: var(--line-strong) !important;
  box-shadow: 0 10px 20px -16px rgba(18, 23, 34, 0.2) !important;
}


/* ── Admin Page ── */
.admin-login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  padding: 40px 20px;
}

.admin-login-card {
  width: min(400px, 100%);
  background: #fff;
  border: 1px solid rgba(18, 23, 34, 0.1);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 20px 50px -24px rgba(18, 23, 34, 0.25);
  text-align: center;
}

.admin-login-card h2 {
  font-size: 22px;
  margin: 0 0 6px;
}

.admin-login-card p {
  color: #6b7280;
  font-size: 14px;
  margin: 0 0 20px;
}

.admin-auth-form {
  display: flex;
  gap: 10px;
}

.admin-auth-form input {
  flex: 1;
  border: 1px solid rgba(18, 23, 34, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
}

.admin-auth-form button {
  white-space: nowrap;
}

.admin-error {
  color: #c21f2b;
  font-size: 13px;
  font-weight: 700;
  margin-top: 12px;
}

.admin-dashboard {
  padding: 30px 0;
}

.admin-header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.admin-header-row h2 {
  font-size: 22px;
  margin: 0;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: #101827;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(18, 23, 34, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px -20px rgba(18, 23, 34, 0.15);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th {
  text-align: left;
  padding: 14px 16px;
  background: #f7f8fb;
  border-bottom: 2px solid rgba(18, 23, 34, 0.08);
  font-size: 13px;
  font-weight: 700;
  color: #4b5563;
  white-space: nowrap;
}

.admin-table th.sortable:hover {
  color: #101827;
  background: #eef0f5;
}

.admin-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(18, 23, 34, 0.06);
  vertical-align: middle;
}

.admin-table tbody tr:hover {
  background: #f9fafb;
}

.admin-table tbody tr:last-child td {
  border-bottom: 0;
}

.btn-admin-delete {
  border: 1px solid rgba(210, 33, 43, 0.2);
  border-radius: 8px;
  padding: 6px 12px;
  background: rgba(210, 33, 43, 0.06);
  color: #c21f2b;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 120ms;
}

.btn-admin-delete:hover {
  background: rgba(210, 33, 43, 0.14);
}

@media (max-width: 640px) {
  .admin-table { font-size: 13px; }
  .admin-table th, .admin-table td { padding: 10px 10px; }
  .admin-login-card { padding: 28px 20px; }
  .admin-auth-form { flex-direction: column; }
}

/* 2026-05-08: keep home category child labels folded until hover/focus */
body.caster-v2 .category-card-link {
  align-content: start;
}

body.caster-v2 .category-card-description {
  display: block;
  min-height: 18px;
}

body.caster-v2 .category-card-sublist {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transform: translateY(-3px);
  transition: max-height 180ms ease, opacity 160ms ease, transform 180ms ease;
}

body.caster-v2 .category-card-link:hover .category-card-sublist,
body.caster-v2 .category-card-link:focus-visible .category-card-sublist {
  max-height: 20px;
  opacity: 1;
  transform: translateY(0);
}

/* 2026-05-14: reference-led automation opening and product correction UI */
body.caster-v2 .automation-intro {
  position: relative;
  min-height: calc(100vh - 138px);
  margin: 0 calc(50% - 50vw) 10px;
  width: 100vw;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: #0b111c;
  color: #ffffff;
  isolation: isolate;
}

body.caster-v2 .automation-intro-media,
body.caster-v2 .automation-intro-shade {
  position: absolute;
  inset: 0;
}

body.caster-v2 .automation-intro-media {
  z-index: -3;
}

body.caster-v2 .automation-intro-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: automationHeroCycle 14s linear infinite;
}

body.caster-v2 .automation-intro-img.img-1 {
  animation-delay: 7s;
}

body.caster-v2 .automation-intro-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.94) 0%, rgba(5, 10, 18, 0.64) 42%, rgba(5, 10, 18, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.18) 0%, rgba(5, 10, 18, 0.82) 100%);
}

body.caster-v2 .automation-intro-inner {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(80px, 12vh, 136px) 0 clamp(76px, 10vh, 110px);
}

body.caster-v2 .automation-intro-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Barlow Condensed", "Noto Sans KR", sans-serif;
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 700;
  letter-spacing: 0.36em;
}

body.caster-v2 .automation-intro h2 {
  margin: 0;
  max-width: 930px;
  color: #ffffff;
  font-family: "Barlow Condensed", "Noto Sans KR", sans-serif;
  font-size: clamp(48px, 8vw, 108px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

body.caster-v2 .automation-intro h2 em {
  font-style: italic;
  font-weight: 400;
}

body.caster-v2 .automation-intro-inner > p:last-child {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.62;
  word-break: keep-all;
}

body.caster-v2 .automation-scroll-cue {
  position: absolute;
  left: max(28px, calc((100vw - 1180px) / 2));
  bottom: 28px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

@keyframes automationHeroCycle {
  0% { opacity: 0; transform: scale(1.04) translateX(0); }
  8% { opacity: 1; }
  48% { opacity: 1; }
  56% { opacity: 0; transform: scale(1.12) translateX(-2.5%); }
  100% { opacity: 0; transform: scale(1.12) translateX(-2.5%); }
}

/* 2026-05-14: self-built automation scene replaces example background images */
body.caster-v2 .automation-intro {
  min-height: 100vh;
  margin-bottom: 0;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(7, 13, 22, 0.18) 0%, rgba(7, 13, 22, 0.86) 100%),
    linear-gradient(120deg, #07101b 0%, #0e1825 52%, #07101b 100%);
}

body.caster-v2 .automation-intro::before,
body.caster-v2 .automation-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body.caster-v2 .automation-intro::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.92) 0%, rgba(5, 10, 18, 0.5) 42%, rgba(5, 10, 18, 0.14) 100%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.04) 0%, rgba(5, 10, 18, 0.78) 100%);
}

body.caster-v2 .automation-intro::after {
  z-index: -3;
  opacity: 0.46;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 104px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 88px);
  animation: automationGridDrift 18s linear infinite;
}

body.caster-v2 .automation-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

body.caster-v2 .automation-scene span {
  position: absolute;
  display: block;
}

body.caster-v2 .scene-grid {
  left: 39%;
  right: -8%;
  bottom: -8%;
  height: 58%;
  transform: skewY(-8deg);
  transform-origin: right bottom;
  background:
    repeating-linear-gradient(90deg, rgba(151, 181, 212, 0.13) 0 2px, transparent 2px 132px),
    repeating-linear-gradient(0deg, rgba(151, 181, 212, 0.12) 0 2px, transparent 2px 86px);
  border-top: 1px solid rgba(166, 202, 233, 0.18);
  opacity: 0.8;
}

body.caster-v2 .scene-rail {
  height: 2px;
  right: -12%;
  background: linear-gradient(90deg, transparent, rgba(204, 222, 239, 0.46), transparent);
  transform: rotate(-8deg);
}

body.caster-v2 .rail-a { top: 32%; width: 58%; animation: railPulse 3.6s ease-in-out infinite; }
body.caster-v2 .rail-b { top: 52%; width: 72%; animation: railPulse 4.2s ease-in-out infinite reverse; }
body.caster-v2 .rail-c { top: 73%; width: 68%; animation: railPulse 4.8s ease-in-out infinite; }

body.caster-v2 .scene-amr {
  width: 140px;
  height: 74px;
  border: 1px solid rgba(217, 231, 244, 0.38);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(235, 243, 250, 0.2), rgba(98, 123, 146, 0.14)),
    rgba(8, 19, 31, 0.68);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.42);
}

body.caster-v2 .scene-amr::before,
body.caster-v2 .scene-amr::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 4px solid rgba(229, 238, 247, 0.38);
  background: #08111d;
}

body.caster-v2 .scene-amr::before { left: 18px; }
body.caster-v2 .scene-amr::after { right: 18px; }

body.caster-v2 .scene-amr i {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 17px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d2212b, #f2f7ff 45%, #5cc8ff);
  box-shadow: 0 0 20px rgba(92, 200, 255, 0.36);
}

body.caster-v2 .amr-a {
  left: 52%;
  top: 57%;
  animation: amrMoveA 10s ease-in-out infinite;
}

body.caster-v2 .amr-b {
  left: 70%;
  top: 37%;
  width: 116px;
  height: 62px;
  transform: scale(0.8);
  opacity: 0.7;
  animation: amrMoveB 12s ease-in-out infinite;
}

body.caster-v2 .scene-payload {
  width: 84px;
  height: 54px;
  border: 1px solid rgba(217, 231, 244, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)),
    rgba(75, 94, 112, 0.44);
  transform: rotate(-8deg);
}

body.caster-v2 .payload-a {
  right: 14%;
  top: 22%;
  animation: payloadDrift 9s ease-in-out infinite;
}

body.caster-v2 .payload-b {
  right: 33%;
  bottom: 16%;
  opacity: 0.62;
  animation: payloadDrift 11s ease-in-out infinite reverse;
}

body.caster-v2 .scene-arm {
  right: 11%;
  top: 15%;
  width: 180px;
  height: 180px;
  border-left: 10px solid rgba(214, 229, 242, 0.24);
  border-bottom: 10px solid rgba(214, 229, 242, 0.24);
  transform: rotate(-18deg);
  transform-origin: 16px 164px;
  animation: armSweep 7s ease-in-out infinite;
}

body.caster-v2 .scene-arm i,
body.caster-v2 .scene-arm b {
  position: absolute;
  display: block;
  background: rgba(214, 229, 242, 0.4);
}

body.caster-v2 .scene-arm i {
  width: 118px;
  height: 10px;
  left: 24px;
  top: 24px;
  transform: rotate(24deg);
}

body.caster-v2 .scene-arm b {
  width: 42px;
  height: 36px;
  right: 8px;
  top: 42px;
  border-radius: 8px 8px 2px 2px;
}

body.caster-v2 .scene-scan {
  width: 1px;
  height: 46%;
  top: 22%;
  background: linear-gradient(180deg, transparent, rgba(92, 200, 255, 0.62), transparent);
  box-shadow: 0 0 18px rgba(92, 200, 255, 0.36);
  animation: scanSweep 5s linear infinite;
}

body.caster-v2 .scan-a { left: 58%; }
body.caster-v2 .scan-b { left: 78%; animation-delay: 2.4s; }

body.caster-v2 .automation-intro-inner {
  align-self: center;
  padding: 0;
}

@keyframes automationGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 104px 0, 0 88px; }
}

@keyframes railPulse {
  0%, 100% { opacity: 0.36; }
  50% { opacity: 0.8; }
}

@keyframes amrMoveA {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg); }
  50% { transform: translate3d(-13vw, -3vh, 0) rotate(-8deg); }
}

@keyframes amrMoveB {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg) scale(0.8); }
  50% { transform: translate3d(-16vw, 4vh, 0) rotate(-8deg) scale(0.8); }
}

@keyframes payloadDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg); }
  50% { transform: translate3d(-5vw, 1vh, 0) rotate(-8deg); }
}

@keyframes armSweep {
  0%, 100% { transform: rotate(-18deg); }
  50% { transform: rotate(-30deg); }
}

@keyframes scanSweep {
  0% { opacity: 0; transform: translateX(-10vw); }
  16% { opacity: 1; }
  72% { opacity: 0.8; }
  100% { opacity: 0; transform: translateX(11vw); }
}

body.caster-v2 .preview-link,
body.caster-v2 .main-player {
  position: relative;
}

body.caster-v2 .heat-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 4;
  display: inline-grid;
  min-width: 88px;
  padding: 9px 11px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: #c92525;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(18, 23, 34, 0.18);
  text-align: left;
  pointer-events: none;
}

body.caster-v2 .heat-badge span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

body.caster-v2 .heat-badge strong {
  color: #ffffff;
  font-family: "Barlow Condensed", "Noto Sans KR", sans-serif;
  font-size: 21px;
  line-height: 0.92;
}

body.caster-v2 .heat-badge em {
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

/* 2026-05-18: fixed panel, reveal only the three bottom cards */
@media (min-width: 761px) {
  body.caster-v2 .automation-intro-split .automation-intro-rail {
    display: none;
  }

  body.caster-v2 .automation-intro-split .automation-intro-inner {
    grid-template-columns: 1fr;
    align-items: center;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy {
    position: relative;
    left: auto;
    top: auto;
    width: min(980px, calc(100vw - 180px));
    max-width: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    animation: none;
    cursor: pointer;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy:hover,
  body.caster-v2 .automation-intro-split .automation-intro-copy:focus-within,
  body.caster-v2 .automation-intro-split.is-intro-reveal-open .automation-intro-copy {
    transform: none;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy > :not(.automation-intro-reveal) {
    opacity: 1;
    transform: none;
    animation: none;
  }

  body.caster-v2 .automation-intro-split .automation-intro-actions {
    opacity: 1;
    transform: none;
  }

  body.caster-v2 .automation-intro-split .automation-intro-reveal {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-42px);
    animation: none;
    transition: max-height 420ms cubic-bezier(0.16, 1, 0.3, 1), margin-top 260ms ease, opacity 220ms ease, clip-path 460ms cubic-bezier(0.16, 1, 0.3, 1), transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.caster-v2 .automation-intro-split .automation-intro-reveal :is(a, span) {
    opacity: 0;
    transform: translateX(-24px);
    animation: none;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy:hover .automation-intro-reveal,
  body.caster-v2 .automation-intro-split .automation-intro-copy:focus-within .automation-intro-reveal,
  body.caster-v2 .automation-intro-split.is-intro-reveal-open .automation-intro-reveal {
    max-height: 150px;
    margin-top: clamp(22px, 2.6vw, 34px);
    opacity: 1;
    pointer-events: auto;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy:hover .automation-intro-reveal :is(a, span),
  body.caster-v2 .automation-intro-split .automation-intro-copy:focus-within .automation-intro-reveal :is(a, span),
  body.caster-v2 .automation-intro-split.is-intro-reveal-open .automation-intro-reveal :is(a, span) {
    opacity: 1;
    transform: translateX(0);
  }

  body.caster-v2 .automation-intro-split.is-intro-reveal-open .automation-intro-copy {
    border-color: rgba(255, 255, 255, 0.26);
    border-left-color: #d30000;
    background: rgba(0, 0, 0, 0.58);
    box-shadow: 0 38px 110px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(211, 0, 0, 0.18);
  }
}

@media (max-width: 760px) {
  body.caster-v2 .automation-intro-split .automation-intro-reveal,
  body.caster-v2 .automation-intro-split .automation-intro-reveal :is(a, span) {
    opacity: 1 !important;
    pointer-events: auto !important;
    clip-path: none !important;
    transform: none !important;
    animation: none !important;
  }
}

body.caster-v2 .product-card .heat-badge,
body.caster-v2 .popular-card .heat-badge {
  left: 10px;
  bottom: 10px;
  min-width: 76px;
  padding: 7px 9px 8px;
  border-radius: 8px;
}

body.caster-v2 .product-card .heat-badge strong,
body.caster-v2 .popular-card .heat-badge strong {
  font-size: 18px;
}

body.caster-v2 .catalog-header.has-category-backdrop {
  position: relative !important;
  min-height: 176px;
  overflow: hidden;
  border: 1px solid var(--line) !important;
  border-radius: 16px !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 46%, rgba(244, 247, 251, 0.72) 100%) !important;
  padding: 26px 28px !important;
  box-shadow: 0 16px 36px -30px rgba(18, 23, 34, 0.34) !important;
}

body.caster-v2 .catalog-header.has-category-backdrop > *:not(.catalog-category-backdrop) {
  position: relative;
  z-index: 2;
}

body.caster-v2 .catalog-category-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

body.caster-v2 .catalog-backdrop-img {
  position: absolute;
  top: 50%;
  width: min(28vw, 310px);
  height: 78%;
  object-fit: contain;
  opacity: 0.16;
  filter: grayscale(0.15) saturate(0.9);
  transform: translateY(-50%);
}

body.caster-v2 .catalog-backdrop-0 { right: 3%; }
body.caster-v2 .catalog-backdrop-1 { right: 20%; opacity: 0.11; transform: translateY(-50%) scale(0.9); }
body.caster-v2 .catalog-backdrop-2 { right: 36%; opacity: 0.08; transform: translateY(-50%) scale(0.82); }
body.caster-v2 .catalog-backdrop-3,
body.caster-v2 .catalog-backdrop-4 { display: none; }

body.caster-v2 .catalog-header.has-category-backdrop .catalog-title h2 {
  font-size: clamp(34px, 4.8vw, 58px) !important;
  line-height: 0.96 !important;
}

body.caster-v2 .catalog-header.has-category-backdrop .catalog-snapshot,
body.caster-v2 .catalog-header.has-category-backdrop .catalog-tools {
  align-self: end;
}

@media (max-width: 720px) {
  body.caster-v2 .automation-intro {
    min-height: 100vh;
  }

  body.caster-v2 .automation-intro-inner {
    width: calc(100% - 36px);
    padding: 0;
  }

  body.caster-v2 .automation-intro-kicker {
    letter-spacing: 0.22em;
  }

  body.caster-v2 .automation-intro h2 {
    font-size: clamp(42px, 14vw, 68px);
    line-height: 0.98;
  }

  body.caster-v2 .catalog-header.has-category-backdrop {
    min-height: 156px;
    padding: 22px !important;
  }

  body.caster-v2 .catalog-backdrop-img {
    right: -18% !important;
    width: 68vw;
    opacity: 0.12;
  }

  body.caster-v2 .catalog-backdrop-1,
  body.caster-v2 .catalog-backdrop-2 {
    display: none;
  }
}

/* 2026-05-08: loosen large home typography for Korean readability */
body.caster-v2 .hero-title {
  gap: 22px !important;
}

body.caster-v2 .hero-line {
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
}

body.caster-v2 .hero-line.muted {
  line-height: 1.24 !important;
}

body.caster-v2 .hero-copy .hero-lede {
  margin-top: 24px !important;
  line-height: 1.75 !important;
}

body.caster-v2 .section-head > div {
  display: grid;
  gap: 8px;
}

body.caster-v2 .section-head .eyebrow {
  line-height: 1.35;
  margin: 0;
}

body.caster-v2 .section-head h3 {
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

/* 2026-05-09: redesign home category panel as a compact directory */
body.caster-v2 .home-panels > article:not(.inquiry-panel) {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

body.caster-v2 .home-panels > article:not(.inquiry-panel) > h3 {
  margin-bottom: 16px !important;
  font-size: clamp(38px, 3.2vw, 52px) !important;
  line-height: 1.04 !important;
}

body.caster-v2 .category-cards-ecom {
  margin-top: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  border-top: 1px solid #dbe3ee !important;
  border-bottom: 1px solid #dbe3ee !important;
}

body.caster-v2 .category-cards-ecom .category-card-link {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 40px minmax(0, 1fr) 30px !important;
  grid-template-rows: minmax(42px, auto) auto !important;
  align-items: center !important;
  min-height: 46px !important;
  padding: 0 2px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  gap: 0 8px !important;
  isolation: auto !important;
  overflow: hidden !important;
  transform: none !important;
}

body.caster-v2 .category-cards-ecom .category-card-link + .category-card-link {
  border-top: 1px solid #edf1f6 !important;
}

body.caster-v2 .category-cards-ecom .category-card-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  bottom: 11px;
  width: 3px;
  border-radius: 999px;
  background: #111827;
  border: 0;
  opacity: 0;
  transform: scaleY(0.4);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

body.caster-v2 .category-cards-ecom .category-card-link:hover,
body.caster-v2 .category-cards-ecom .category-card-link:focus-visible {
  background: #f7f9fc !important;
  box-shadow: none !important;
}

body.caster-v2 .category-cards-ecom .category-card-link:hover::before,
body.caster-v2 .category-cards-ecom .category-card-link:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

body.caster-v2 .category-card-index {
  grid-column: 1;
  grid-row: 1 / span 2;
  justify-self: center;
  color: #7b8798;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
}

body.caster-v2 .category-cards-ecom .category-head {
  grid-column: 2;
  grid-row: 1;
  display: block !important;
  min-width: 0 !important;
}

body.caster-v2 .category-cards-ecom .category-head strong {
  color: #111111 !important;
  font-family: var(--font-body) !important;
  font-size: clamp(14px, 0.95vw, 17px) !important;
  font-weight: 700 !important;
  line-height: 1.22 !important;
  letter-spacing: 0 !important;
  display: block !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

body.caster-v2 .category-cards-ecom .category-head em {
  display: none !important;
}

body.caster-v2 .category-card-detail {
  grid-column: 2 / 4;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  max-height: 0;
  padding: 0;
  background: transparent;
  color: #64748b;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 160ms ease, opacity 160ms ease, transform 160ms ease, padding-bottom 160ms ease;
  pointer-events: none;
}

body.caster-v2 .category-card-link:hover .category-card-detail,
body.caster-v2 .category-card-link:focus-visible .category-card-detail {
  max-height: 20px;
  padding-bottom: 6px;
  opacity: 1;
  transform: translateY(0);
}

body.caster-v2 .category-card-detail .category-card-description,
body.caster-v2 .category-card-detail .category-card-sublist {
  display: block;
  min-height: 0;
  max-height: none;
  color: inherit !important;
  font-size: 11px !important;
  line-height: 1.4 !important;
  opacity: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  transform: none;
  white-space: nowrap;
}

body.caster-v2 .category-card-detail .category-card-sublist {
  color: #94a3b8 !important;
  position: relative;
  padding-left: 10px;
}

body.caster-v2 .category-card-detail .category-card-sublist::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #94a3b8;
  transform: translateY(-50%);
}

body.caster-v2 .category-cards-ecom .category-card-link small {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center !important;
  justify-self: end !important;
  width: 24px !important;
  height: 24px !important;
  border: 1px solid #d7dfe9 !important;
  border-radius: 50% !important;
  display: inline-grid !important;
  place-items: center !important;
  color: #334155 !important;
  font-size: 0 !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  background: #ffffff !important;
}

body.caster-v2 .category-cards-ecom .category-card-link small::before {
  content: "→";
  font-size: 13px;
}

@media (max-width: 640px) {
  body.caster-v2 .home-panels {
    grid-template-columns: 1fr !important;
    width: auto !important;
    padding: 0 16px 40px !important;
    gap: 16px !important;
  }

  body.caster-v2 .home-panels > article:not(.inquiry-panel) {
    padding: 24px !important;
  }

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

  body.caster-v2 .category-cards-ecom .category-card-link {
    grid-template-columns: 34px minmax(0, 1fr) 28px !important;
    min-height: 46px !important;
  }

  body.caster-v2 .category-cards-ecom .category-head strong {
    font-size: clamp(14px, 3.8vw, 16px) !important;
  }
}

/* jp3_lite support page */
body.caster-v2 .support-layout {
  display: block !important;
}

body.caster-v2 .support-dashboard {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.22fr);
  grid-template-rows: auto minmax(180px, 1fr);
  align-items: stretch;
  gap: 22px;
}

body.caster-v2 .support-panel {
  min-width: 0;
  border: 1px solid #dce3ec;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  padding: clamp(24px, 2.2vw, 34px);
}

body.caster-v2 .support-panel-kicker {
  margin: 0 0 14px;
  color: #64748b;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
}

body.caster-v2 .support-panel h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

body.caster-v2 .support-panel-lede,
body.caster-v2 .support-inquiry-panel p {
  margin: 14px 0 0;
  color: #5d6b7e;
  font-size: 15px;
  line-height: 1.75;
}

body.caster-v2 .support-contact-panel {
  display: flex;
  flex-direction: column;
}

body.caster-v2 .support-contact-list {
  display: grid;
  margin-top: auto;
  padding-top: 24px;
}

body.caster-v2 .support-contact-row {
  display: grid;
  grid-template-columns: minmax(96px, 0.45fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid #eef2f7;
  color: inherit;
  text-decoration: none;
}

body.caster-v2 .support-contact-row span {
  color: #7b8798;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

body.caster-v2 .support-contact-row strong {
  min-width: 0;
  color: #111111;
  font-size: clamp(16px, 1.15vw, 19px);
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

body.caster-v2 .support-map-panel {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: 0;
  overflow: hidden;
}

body.caster-v2 .support-map-copy {
  padding: clamp(24px, 2.2vw, 34px) clamp(24px, 2.2vw, 34px) 18px;
}

body.caster-v2 .support-map-panel .address {
  margin: 14px 0 0;
  color: #5d6b7e;
  font-size: 15px;
  line-height: 1.65;
}

body.caster-v2 .support-map-frame {
  flex: 1 1 auto;
  min-height: 360px;
  margin: 0 clamp(18px, 1.7vw, 26px);
  border: 1px solid #dce3ec;
  border-radius: 12px;
  background: #eef2f7;
  overflow: hidden;
}

body.caster-v2 .support-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

body.caster-v2 .directions-map-frame {
  width: 100%;
  min-height: 280px;
  margin: 0;
}

body.caster-v2 .directions-map-frame iframe {
  min-height: 280px;
}

body.caster-v2 .support-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(24px, 2.2vw, 34px) clamp(24px, 2.2vw, 34px);
}

body.caster-v2 .support-inquiry-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

body.caster-v2 .support-inquiry-panel .support-panel-kicker {
  color: #aeb7c4;
}

body.caster-v2 .support-inquiry-panel h3,
body.caster-v2 .support-inquiry-panel p {
  color: #ffffff;
}

body.caster-v2 .support-inquiry-panel p {
  color: #cbd5e1;
}

body.caster-v2 .support-inquiry-panel .btn {
  margin-top: 22px;
}

body.caster-v2 .support-reply-note {
  display: block;
  margin-top: 12px;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 980px) {
  body.caster-v2 .support-dashboard {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  body.caster-v2 .support-map-panel {
    grid-column: auto;
    grid-row: auto;
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  body.caster-v2 .support-dashboard {
    gap: 16px;
  }

  body.caster-v2 .support-panel {
    border-radius: 12px;
    padding: 22px;
  }

  body.caster-v2 .support-contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body.caster-v2 .support-map-panel {
    min-height: 520px;
    padding: 0;
  }

  body.caster-v2 .support-map-copy {
    padding: 22px 22px 16px;
  }

  body.caster-v2 .support-map-frame {
    min-height: 300px;
    margin: 0 14px;
  }

  body.caster-v2 .support-map-frame iframe {
    min-height: 300px;
  }

body.caster-v2 .support-map-actions {
    flex-direction: column;
    padding: 16px 22px 22px;
  }
}

/* 2026-05-14: Studio SB reference correction for the first viewport */
body.caster-v2 .automation-intro {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 calc(50% - 50vw) 0;
  width: 100vw;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #050505;
  color: #ffffff;
  isolation: isolate;
}

body.caster-v2 .automation-intro::before,
body.caster-v2 .automation-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body.caster-v2 .automation-intro::before {
  z-index: 0;
  background:
    radial-gradient(920px 460px at 78% 22%, rgba(255, 255, 255, 0.09), transparent 62%),
    radial-gradient(680px 360px at 24% 78%, rgba(255, 255, 255, 0.05), transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0) 38%),
    #050505;
}

body.caster-v2 .automation-intro::after {
  z-index: 1;
  opacity: 0.18;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 124px);
  clip-path: polygon(0 66%, 100% 45%, 100% 48%, 0 69%);
  animation: studioLineDrift 8s ease-in-out infinite alternate;
}

body.caster-v2 .automation-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

body.caster-v2 .automation-scene span {
  position: absolute;
  display: block;
}

body.caster-v2 .scene-grid,
body.caster-v2 .scene-rail,
body.caster-v2 .scene-amr,
body.caster-v2 .scene-payload,
body.caster-v2 .scene-arm,
body.caster-v2 .scene-scan {
  display: none !important;
}

body.caster-v2 .studio-word {
  color: rgba(255, 255, 255, 0.038);
  font-family: "Barlow Condensed", "Noto Sans KR", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.82;
  white-space: nowrap;
  user-select: none;
}

body.caster-v2 .studio-word-a {
  top: 8vh;
  right: -7vw;
  font-size: clamp(112px, 20vw, 300px);
}

body.caster-v2 .studio-word-b {
  right: 6vw;
  bottom: 8vh;
  color: rgba(255, 255, 255, 0.052);
  font-size: clamp(66px, 11vw, 164px);
  font-style: italic;
  font-weight: 400;
}

body.caster-v2 .studio-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(-12deg);
  transform-origin: right center;
  opacity: 0.34;
}

body.caster-v2 .studio-line-a {
  top: 29%;
  right: -8%;
  width: 66%;
  animation: studioLinePulse 5.8s ease-in-out infinite;
}

body.caster-v2 .studio-line-b {
  top: 55%;
  right: -14%;
  width: 82%;
  opacity: 0.22;
  animation: studioLinePulse 7.2s ease-in-out infinite reverse;
}

body.caster-v2 .studio-line-c {
  bottom: 18%;
  left: 48%;
  width: 56%;
  opacity: 0.18;
  animation: studioLinePulse 8s ease-in-out infinite;
}

body.caster-v2 .automation-intro-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  padding: 0;
  transform: translateY(-1vh);
}

body.caster-v2 .automation-intro-kicker {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Barlow Condensed", "Noto Sans KR", sans-serif;
  font-size: clamp(13px, 1.35vw, 17px);
  font-weight: 600;
  letter-spacing: 0.34em;
  line-height: 1.25;
}

body.caster-v2 .automation-intro h2 {
  max-width: 1020px;
  margin: 0;
  color: #ffffff;
  font-family: "Barlow Condensed", "Noto Sans KR", sans-serif;
  font-size: clamp(60px, 9vw, 132px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
}

body.caster-v2 .automation-intro h2 span {
  display: block;
}

body.caster-v2 .automation-intro h2 em {
  color: rgba(255, 255, 255, 0.86);
  font-style: italic;
  font-weight: 400;
}

body.caster-v2 .automation-intro-inner > p:last-child {
  max-width: 760px;
  margin: 40px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(17px, 1.85vw, 23px);
  font-weight: 400;
  line-height: 1.68;
  word-break: keep-all;
}

body.caster-v2 .automation-intro-inner > p:last-child strong {
  display: inline-block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

body.caster-v2 .automation-scroll-cue {
  z-index: 2;
  left: max(32px, calc((100vw - 1180px) / 2));
  bottom: 30px;
  color: rgba(255, 255, 255, 0.42);
  font-family: "Barlow Condensed", "Noto Sans KR", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
}

@keyframes studioLineDrift {
  from { transform: translate3d(-3vw, 1vh, 0); opacity: 0.12; }
  to { transform: translate3d(2vw, -1vh, 0); opacity: 0.22; }
}

@keyframes studioLinePulse {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-12deg); opacity: 0.16; }
  50% { transform: translate3d(-4vw, 0, 0) rotate(-12deg); opacity: 0.38; }
}

@media (max-width: 720px) {
  body.caster-v2 .automation-intro-inner {
    width: calc(100% - 36px);
    transform: translateY(-2vh);
  }

  body.caster-v2 .automation-intro-kicker {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  body.caster-v2 .automation-intro h2 {
    font-size: clamp(48px, 16vw, 76px);
    line-height: 0.96;
  }

  body.caster-v2 .automation-intro-inner > p:last-child {
    margin-top: 28px;
    font-size: 15px;
    line-height: 1.72;
  }

  body.caster-v2 .studio-word-a {
    top: 11vh;
    right: -34vw;
    font-size: 112px;
  }

  body.caster-v2 .studio-word-b {
    right: -18vw;
    bottom: 11vh;
    font-size: 70px;
  }

  body.caster-v2 .studio-line-a,
  body.caster-v2 .studio-line-b,
  body.caster-v2 .studio-line-c {
    width: 120%;
    right: -44%;
  }
}

/* 2026-05-14: reference-style scroll chrome for the opening hero */
body.caster-v2 .site-wrapper.has-scroll-intro .utility-bar,
body.caster-v2 .site-wrapper.has-scroll-intro .site-header {
  position: fixed;
  left: 0;
  right: 0;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, -112%, 0);
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.2, 0.88, 0.18, 1),
    background-color 420ms ease,
    border-color 420ms ease,
    box-shadow 420ms ease;
}

body.caster-v2 .site-wrapper.has-scroll-intro .utility-bar {
  top: 0;
  z-index: 92;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px);
}

body.caster-v2 .site-wrapper.has-scroll-intro .site-header {
  top: 51px;
  z-index: 91;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 12, 12, 0.76);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-visible .utility-bar,
body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-visible .site-header {
  pointer-events: auto;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.caster-v2 .site-wrapper.has-scroll-intro .utility-inner,
body.caster-v2 .site-wrapper.has-scroll-intro .header-inner,
body.caster-v2 .site-wrapper.has-scroll-intro .gnb-inner {
  max-width: var(--page-max);
}

body.caster-v2 .site-wrapper.has-scroll-intro .site-content {
  padding-top: clamp(28px, 1.8vw, 32px);
}

body.caster-v2 .site-wrapper.has-scroll-intro .brand-text,
body.caster-v2 .site-wrapper.has-scroll-intro .inquiry-info .phone,
body.caster-v2 .site-wrapper.has-scroll-intro .gnb-item {
  color: #ffffff !important;
}

body.caster-v2 .site-wrapper.has-scroll-intro .brand-sub,
body.caster-v2 .site-wrapper.has-scroll-intro .inquiry-info .label,
body.caster-v2 .site-wrapper.has-scroll-intro .gnb-item:not(.active),
body.caster-v2 .site-wrapper.has-scroll-intro .search-form input::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

body.caster-v2 .site-wrapper.has-scroll-intro .search-form {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

body.caster-v2 .site-wrapper.has-scroll-intro .search-form input {
  color: #ffffff;
}

body.caster-v2 .site-wrapper.has-scroll-intro .gnb-bar {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-solid .utility-bar {
  border-bottom-color: #242424;
  background: #111111;
}

body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-solid .site-header {
  border-bottom-color: #dadfe8;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-solid .brand-text,
body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-solid .inquiry-info .phone,
body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-solid .gnb-item {
  color: #111111 !important;
}

body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-solid .brand-sub,
body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-solid .inquiry-info .label,
body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-solid .gnb-item:not(.active),
body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-solid .search-form input::placeholder {
  color: #6f7785 !important;
}

body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-solid .search-form {
  border-color: #d7dde6;
  background: #ffffff;
}

body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-solid .search-form input {
  color: #111111;
}

body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-solid .gnb-bar {
  border-color: #e2e6ec;
  background: rgba(248, 249, 251, 0.94);
}

@media (max-width: 760px) {
  body.caster-v2 .site-wrapper.has-scroll-intro .utility-bar {
    display: none;
  }

  body.caster-v2 .site-wrapper.has-scroll-intro .site-header {
    top: 0;
  }

  body.caster-v2 .site-wrapper.has-scroll-intro .site-content {
    padding-top: 24px;
  }

  body.caster-v2 .site-wrapper.has-scroll-intro .header-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  body.caster-v2 .site-wrapper.has-scroll-intro .search-container,
  body.caster-v2 .site-wrapper.has-scroll-intro .inquiry-info,
  body.caster-v2 .site-wrapper.has-scroll-intro .action-btn,
  body.caster-v2 .site-wrapper.has-scroll-intro .gnb-bar {
    display: none;
  }
}

/* 2026-05-14: AGV factory hero image and existing white header on scroll */
body.caster-v2 .automation-intro {
  background: #050505;
}

body.caster-v2 .automation-scene {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.66) 38%, rgba(0, 0, 0, 0.25) 72%, rgba(0, 0, 0, 0.36) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.78) 100%),
    url("./mock/hero-agv-factory-20260514.png") center center / cover no-repeat;
}

body.caster-v2 .automation-intro::before {
  z-index: 0;
  background:
    radial-gradient(780px 420px at 18% 38%, rgba(0, 0, 0, 0.12), transparent 66%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.48) 100%);
}

body.caster-v2 .automation-intro::after {
  opacity: 0.08;
}

body.caster-v2 .studio-word {
  color: rgba(255, 255, 255, 0.024);
}

body.caster-v2 .studio-word-b {
  color: rgba(255, 255, 255, 0.034);
}

body.caster-v2 .studio-line {
  opacity: 0.2;
}

body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-visible .utility-bar {
  border-bottom-color: #242424;
  background: #111111;
  backdrop-filter: none;
}

body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-visible .site-header {
  border-bottom-color: #dadfe8;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-visible .brand-text,
body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-visible .inquiry-info .phone {
  color: #111111 !important;
}

body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-visible .brand-sub,
body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-visible .inquiry-info .label,
body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-visible .search-form input::placeholder {
  color: #6f7785 !important;
}

body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-visible .search-form {
  border-color: #d7dde6;
  background: #ffffff;
}

body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-visible .search-form input {
  color: #111111;
}

body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-visible .gnb-bar {
  border-color: #e2e6ec;
  background: rgba(248, 249, 251, 0.96);
}

body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-visible .gnb-item {
  color: #666666 !important;
}

body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-visible .gnb-item:hover,
body.caster-v2 .site-wrapper.has-scroll-intro.is-scroll-chrome-visible .gnb-item.active {
  color: #111111 !important;
}

body.caster-v2 .site-wrapper.has-scroll-intro .home-hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 2026-05-18: redesigned first-viewport intro variants */
body.caster-v2 .automation-intro {
  position: relative;
  --intro-x: 68%;
  --intro-y: 48%;
}

body.caster-v2 .automation-intro .automation-scene {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.78) 36%, rgba(0, 0, 0, 0.34) 72%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.78) 100%),
    url("./mock/hero-agv-factory-20260514.png") 58% center / cover no-repeat;
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.caster-v2 .automation-intro::before {
  z-index: 1;
  background:
    radial-gradient(circle at var(--intro-x) var(--intro-y), rgba(211, 0, 0, 0.22), rgba(211, 0, 0, 0.06) 18%, transparent 34%),
    linear-gradient(90deg, rgba(211, 0, 0, 0.18) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 100%);
  background-size: auto, 128px 100%, 100% 128px;
  opacity: 0.2;
  transition: opacity 260ms ease;
}

body.caster-v2 .automation-intro::after {
  z-index: 1;
  opacity: 0.24;
  background:
    linear-gradient(90deg, transparent 0%, rgba(211, 0, 0, 0.9) 46%, rgba(255, 255, 255, 0.4) 50%, transparent 56%);
  clip-path: polygon(0 78%, 100% 54%, 100% 55%, 0 79%);
}

body.caster-v2 .automation-intro-inner {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 260px);
  align-items: center;
  gap: clamp(34px, 5vw, 88px);
  width: min(1220px, calc(100% - 96px));
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: 8vh 0 7vh;
  transform: none;
}

body.caster-v2 .automation-intro-copy {
  position: relative;
  max-width: 880px;
  padding-left: clamp(24px, 3vw, 42px);
}

body.caster-v2 .automation-intro-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 10px;
  width: 5px;
  background: #d30000;
  box-shadow: 0 0 28px rgba(211, 0, 0, 0.42);
}

body.caster-v2 .automation-intro-kicker {
  margin: 0 0 clamp(18px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.28em;
}

body.caster-v2 .automation-intro h2 {
  max-width: 900px;
  color: #ffffff;
  font-size: clamp(64px, 8vw, 122px);
  font-weight: 600;
  line-height: 0.88;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}

body.caster-v2 .automation-intro h2 em {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 400;
}

body.caster-v2 .automation-intro-lede {
  max-width: 650px;
  margin: clamp(28px, 3.2vw, 42px) 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 500;
  line-height: 1.72;
  word-break: keep-all;
}

body.caster-v2 .automation-intro-lede strong {
  display: inline-block;
  margin-bottom: 5px;
  color: #ffffff;
  font-weight: 800;
}

body.caster-v2 .automation-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(24px, 2.8vw, 38px);
}

body.caster-v2 .automation-intro-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

body.caster-v2 .automation-intro-actions a:first-child {
  border-color: #d30000;
  background: #d30000;
}

body.caster-v2 .automation-intro-actions a:hover {
  transform: translateY(-1px);
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

body.caster-v2 .automation-intro-actions a:first-child:hover {
  border-color: #a90000;
  background: #a90000;
}

body.caster-v2 .automation-intro-reveal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(22px, 2.6vw, 34px);
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-34px);
  transform-origin: left center;
  transition: clip-path 420ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.caster-v2 .automation-intro-reveal :is(a, span) {
  min-width: 0;
  padding: 14px 14px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: inherit;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 260ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1), border-color 180ms ease, background 180ms ease;
}

body.caster-v2 .automation-intro-reveal :is(a, span):nth-child(2) {
  transition-delay: 50ms;
}

body.caster-v2 .automation-intro-reveal :is(a, span):nth-child(3) {
  transition-delay: 90ms;
}

body.caster-v2 .automation-intro-reveal a:hover,
body.caster-v2 .automation-intro-reveal a:focus-visible {
  border-color: rgba(211, 0, 0, 0.78);
  background: rgba(211, 0, 0, 0.16);
  outline: none;
}

body.caster-v2 .automation-intro-reveal b,
body.caster-v2 .automation-intro-reveal strong,
body.caster-v2 .automation-intro-reveal small {
  display: block;
}

body.caster-v2 .automation-intro-reveal b {
  color: #d30000;
  font-family: "Barlow Condensed", "Noto Sans KR", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

body.caster-v2 .automation-intro-reveal strong {
  margin-top: 7px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

body.caster-v2 .automation-intro-reveal small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

body.caster-v2 .automation-intro-specs {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  align-self: end;
  margin-bottom: 8vh;
}

body.caster-v2 .automation-intro-specs span {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid #d30000;
  background: rgba(0, 0, 0, 0.36);
  color: rgba(255, 255, 255, 0.82);
  font-family: "Barlow Condensed", "Noto Sans KR", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

body.caster-v2 .automation-intro-specs b {
  color: #d30000;
  font-size: 13px;
  letter-spacing: 0.04em;
}

body.caster-v2 .automation-scroll-cue {
  position: absolute;
  z-index: 3;
}

body.caster-v2 .automation-intro .studio-word-a {
  top: 6vh;
  right: -5vw;
  color: rgba(255, 255, 255, 0.03);
}

body.caster-v2 .automation-intro .studio-word-b {
  right: -1vw;
  bottom: 2vh;
  color: rgba(255, 255, 255, 0.04);
}

body.caster-v2 .automation-intro-split .automation-scene {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 48%, rgba(0, 0, 0, 0.22) 72%, rgba(0, 0, 0, 0.5) 100%),
    url("./mock/hero-agv-factory-20260514.png") 70% center / cover no-repeat;
}

body.caster-v2 .automation-intro-split:hover::before,
body.caster-v2 .automation-intro-split:focus-within::before {
  opacity: 0.38;
}

body.caster-v2 .automation-intro-split:hover .automation-scene,
body.caster-v2 .automation-intro-split:focus-within .automation-scene {
  transform: scale(1.025);
  filter: contrast(1.08) saturate(1.06);
}

body.caster-v2 .automation-intro-split .automation-intro-inner {
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 64px);
}

body.caster-v2 .automation-intro-split .automation-intro-rail {
  position: absolute;
  z-index: 4;
  left: 0;
  top: 50%;
  width: 96px;
  height: min(78vh, 780px);
  border-left: 12px solid #d30000;
  border-radius: 24px 0 0 24px;
  background: linear-gradient(90deg, rgba(211, 0, 0, 0.78) 0 12px, rgba(0, 0, 0, 0.12) 12px, transparent 100%);
  box-shadow: 0 0 34px rgba(211, 0, 0, 0.34);
  transform: translate(-10px, -50%);
  pointer-events: none;
  cursor: pointer;
  animation: introDoorRailOut 260ms ease 920ms both;
}

@keyframes introDoorRailOut {
  to {
    opacity: 0;
  }
}

body.caster-v2 .automation-intro-split .automation-intro-copy {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 50%;
  width: min(980px, calc(100vw - 180px));
  max-width: none;
  padding: clamp(34px, 4vw, 58px) clamp(34px, 4vw, 56px) clamp(34px, 4vw, 54px) clamp(74px, 6vw, 98px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 12px solid #d30000;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(10px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
  opacity: 0;
  overflow: hidden;
  pointer-events: auto;
  transform: translate(-120px, -50%);
  animation: introDoorPanelIn 820ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
  transition: opacity 240ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes introDoorPanelIn {
  from {
    opacity: 0;
    transform: translate(-120px, -50%);
  }

  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes introDoorContentIn {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

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

@keyframes introDoorRevealIn {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-34px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}

body.caster-v2 .automation-intro-split h2 {
  max-width: 760px;
  font-size: clamp(58px, 6vw, 96px);
  line-height: 0.96;
}

body.caster-v2 .automation-intro-split h2 span {
  white-space: nowrap;
}

body.caster-v2 .automation-intro-split .automation-intro-copy::before {
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  background: #d30000;
  box-shadow: 0 0 34px rgba(211, 0, 0, 0.52);
}

body.caster-v2 .automation-intro-split .automation-intro-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(211, 0, 0, 0.08) 42%, rgba(255, 255, 255, 0.18) 50%, transparent 58%);
  opacity: 0;
  transform: translateX(-110%);
  transition: opacity 260ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.caster-v2 .automation-intro-split .automation-intro-copy:hover,
body.caster-v2 .automation-intro-split .automation-intro-rail:hover + .automation-intro-copy,
body.caster-v2 .automation-intro-split .automation-intro-copy:focus-within {
  border-color: rgba(255, 255, 255, 0.26);
  border-left-color: #d30000;
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(211, 0, 0, 0.18);
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

body.caster-v2 .automation-intro-split .automation-intro-copy:hover::after,
body.caster-v2 .automation-intro-split .automation-intro-rail:hover + .automation-intro-copy::after,
body.caster-v2 .automation-intro-split .automation-intro-copy:focus-within::after {
  opacity: 1;
  transform: translateX(110%);
}

body.caster-v2 .automation-intro-split .automation-intro-actions {
  opacity: 0.78;
  transform: translateY(6px);
  transition: opacity 240ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.caster-v2 .automation-intro-split .automation-intro-copy > :not(.automation-intro-reveal) {
  opacity: 0;
  transform: translateX(-22px);
  animation: introDoorContentIn 480ms cubic-bezier(0.16, 1, 0.3, 1) 680ms both;
  transition: opacity 260ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.caster-v2 .automation-intro-split .automation-intro-copy:hover > :not(.automation-intro-reveal),
body.caster-v2 .automation-intro-split .automation-intro-rail:hover + .automation-intro-copy > :not(.automation-intro-reveal),
body.caster-v2 .automation-intro-split .automation-intro-copy:focus-within > :not(.automation-intro-reveal) {
  opacity: 1;
  transform: translateX(0);
}

body.caster-v2 .automation-intro-split .automation-intro-copy:hover .automation-intro-actions,
body.caster-v2 .automation-intro-split .automation-intro-rail:hover + .automation-intro-copy .automation-intro-actions,
body.caster-v2 .automation-intro-split .automation-intro-copy:focus-within .automation-intro-actions {
  opacity: 1;
  transform: translateY(0);
}

body.caster-v2 .automation-intro-split .automation-intro-copy:hover .automation-intro-reveal,
body.caster-v2 .automation-intro-split .automation-intro-rail:hover + .automation-intro-copy .automation-intro-reveal,
body.caster-v2 .automation-intro-split .automation-intro-copy:focus-within .automation-intro-reveal {
  opacity: 1;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
  transform: translateX(0);
}

body.caster-v2 .automation-intro-split .automation-intro-reveal {
  pointer-events: auto;
  animation: introDoorRevealIn 620ms cubic-bezier(0.16, 1, 0.3, 1) 860ms both;
}

body.caster-v2 .automation-intro-split .automation-intro-reveal :is(a, span) {
  animation: introDoorContentIn 420ms cubic-bezier(0.16, 1, 0.3, 1) 980ms both;
}

body.caster-v2 .automation-intro-split .automation-intro-reveal :is(a, span):nth-child(2) {
  animation-delay: 1060ms;
}

body.caster-v2 .automation-intro-split .automation-intro-reveal :is(a, span):nth-child(3) {
  animation-delay: 1140ms;
}

body.caster-v2 .automation-intro-split .automation-intro-copy:hover .automation-intro-reveal :is(a, span),
body.caster-v2 .automation-intro-split .automation-intro-rail:hover + .automation-intro-copy .automation-intro-reveal :is(a, span),
body.caster-v2 .automation-intro-split .automation-intro-copy:focus-within .automation-intro-reveal :is(a, span) {
  opacity: 1;
  transform: translateX(0);
}

body.caster-v2 .automation-intro-split .automation-intro-specs {
  align-self: center;
  margin-bottom: 0;
}

body.caster-v2 .automation-intro-split .automation-intro-specs span {
  opacity: 0.68;
  transform: translateX(16px);
  transition: opacity 260ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms ease, background 260ms ease;
}

body.caster-v2 .automation-intro-split .automation-intro-specs span:nth-child(2) {
  transition-delay: 40ms;
}

body.caster-v2 .automation-intro-split .automation-intro-specs span:nth-child(3) {
  transition-delay: 80ms;
}

body.caster-v2 .automation-intro-split .automation-intro-copy:hover ~ .automation-intro-specs span,
body.caster-v2 .automation-intro-split .automation-intro-copy:focus-within ~ .automation-intro-specs span {
  opacity: 1;
  transform: translateX(0);
  border-color: rgba(255, 255, 255, 0.24);
  border-left-color: #d30000;
  background: rgba(0, 0, 0, 0.5);
}

body.caster-v2 .automation-intro-rail .automation-scene {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.86)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 58%, rgba(0, 0, 0, 0.68) 100%),
    url("./mock/hero-agv-factory-20260514.png") center center / cover no-repeat;
}

body.caster-v2 .automation-intro-rail .automation-intro-inner {
  grid-template-columns: 1fr;
  align-items: end;
  padding-bottom: 13vh;
}

body.caster-v2 .automation-intro-rail .automation-intro-copy {
  max-width: 1040px;
  padding-left: 0;
}

body.caster-v2 .automation-intro-rail .automation-intro-copy::before {
  left: 0;
  top: auto;
  bottom: -26px;
  width: min(620px, 70vw);
  height: 5px;
}

body.caster-v2 .automation-intro-rail .automation-intro-specs {
  display: flex;
  flex-wrap: wrap;
  align-self: auto;
  margin: 34px 0 0;
}

body.caster-v2 .automation-intro-rail .automation-intro-specs span {
  min-width: 190px;
}

@media (max-width: 760px) {
  body.caster-v2 .automation-intro-inner,
  body.caster-v2 .automation-intro-split .automation-intro-inner,
  body.caster-v2 .automation-intro-rail .automation-intro-inner {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 24px;
    width: calc(100% - 40px);
    min-height: 100vh;
    min-height: 100svh;
    padding: 86px 0 74px;
    transform: none;
  }

  body.caster-v2 .automation-intro-copy,
  body.caster-v2 .automation-intro-rail .automation-intro-copy {
    max-width: none;
    padding-left: 18px;
  }

  body.caster-v2 .automation-intro-copy::before {
    top: 3px;
    bottom: 6px;
    width: 4px;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy {
    position: relative;
    left: auto;
    top: auto;
    opacity: 1;
    pointer-events: auto;
    width: auto;
    cursor: default;
    transform: none;
    animation: none;
    padding: 22px 20px;
    border-left-width: 6px;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy:hover,
  body.caster-v2 .automation-intro-split .automation-intro-rail:hover + .automation-intro-copy,
  body.caster-v2 .automation-intro-split .automation-intro-copy:focus-within {
    transform: none;
  }

  body.caster-v2 .automation-intro-split .automation-intro-rail {
    display: none;
  }

  body.caster-v2 .automation-intro-split h2 span {
    white-space: normal;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy::before {
    display: block;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy::after {
    display: none;
  }

  body.caster-v2 .automation-intro h2 {
    max-width: 100%;
    font-size: clamp(46px, 16vw, 72px);
    line-height: 0.95;
  }

  body.caster-v2 .automation-intro-kicker {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  body.caster-v2 .automation-intro-lede {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.7;
  }

  body.caster-v2 .automation-intro-actions {
    margin-top: 20px;
  }

  body.caster-v2 .automation-intro-split .automation-intro-actions {
    opacity: 1;
    transform: none;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy > :not(.automation-intro-reveal) {
    opacity: 1;
    transform: none;
    animation: none;
  }

  body.caster-v2 .automation-intro-actions a {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  body.caster-v2 .automation-intro-reveal,
  body.caster-v2 .automation-intro-split .automation-intro-copy:hover .automation-intro-reveal,
  body.caster-v2 .automation-intro-split .automation-intro-copy:focus-within .automation-intro-reveal {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
    opacity: 1;
    pointer-events: auto;
    clip-path: none;
    transform: none;
    animation: none;
  }

  body.caster-v2 .automation-intro-reveal :is(a, span) {
    padding: 12px;
    opacity: 1;
    transform: none;
    animation: none;
  }

  body.caster-v2 .automation-intro-specs,
  body.caster-v2 .automation-intro-split .automation-intro-specs,
  body.caster-v2 .automation-intro-rail .automation-intro-specs {
    display: grid;
    width: 100%;
    margin: 0;
    gap: 8px;
    align-self: auto;
  }

  body.caster-v2 .automation-intro-specs span,
  body.caster-v2 .automation-intro-rail .automation-intro-specs span {
    min-width: 0;
    min-height: 40px;
    grid-template-columns: 34px minmax(0, 1fr);
    font-size: 13px;
  }

  body.caster-v2 .automation-intro-split .automation-intro-specs span {
    opacity: 1;
    transform: none;
  }

  body.caster-v2 .automation-intro-rail .automation-intro-copy::before {
    bottom: -16px;
    width: min(260px, 72vw);
    height: 4px;
  }

  body.caster-v2 .automation-scroll-cue {
    left: 20px;
    bottom: 18px;
  }
}

body.caster-v2 .product-card .heat-badge,
body.caster-v2 .popular-card .heat-badge {
  top: 12px;
  bottom: auto;
  left: 12px;
  display: inline-grid;
  place-content: center;
  min-width: 0;
  width: 66px;
  height: 52px;
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(18, 23, 34, 0.14);
  text-align: center;
}

body.caster-v2 .product-card .heat-badge span,
body.caster-v2 .popular-card .heat-badge span {
  display: none;
}

body.caster-v2 .product-card .heat-badge strong,
body.caster-v2 .popular-card .heat-badge strong {
  font-size: 20px;
  line-height: 0.9;
}

body.caster-v2 .product-card .heat-badge em,
body.caster-v2 .popular-card .heat-badge em {
  margin-top: 2px;
  font-size: 11px;
  line-height: 1;
}

body.caster-v2 .model-spec-section {
  margin-top: 18px;
}

body.caster-v2 .model-spec-heading {
  margin-bottom: 10px;
}

body.caster-v2 .model-spec-heading h3 {
  margin: 0;
  color: #111111;
  font-family: "Barlow Condensed", "Noto Sans KR", sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  line-height: 1;
}

body.caster-v2 .model-spec-heading p {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.45;
  text-align: right;
}

body.caster-v2 .model-spec-table-wrap {
  overflow-x: auto;
  border: 1px solid #d7e0eb;
  border-radius: 6px;
  background: #ffffff;
}

body.caster-v2 .model-spec-table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

body.caster-v2 .model-spec-table th,
body.caster-v2 .model-spec-table td {
  min-width: 96px;
  padding: 11px 12px;
  border-right: 1px solid #e4e9f1;
  border-bottom: 1px solid #e4e9f1;
  color: #1f2937;
  line-height: 1.35;
  text-align: left;
  white-space: nowrap;
}

body.caster-v2 .model-spec-table thead th {
  background: #101828;
  color: #ffffff;
  font-weight: 800;
}

body.caster-v2 .model-spec-table tbody th {
  background: #f7f9fc;
  color: #111827;
  font-weight: 800;
}

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

body.caster-v2 .model-spec-table th:last-child,
body.caster-v2 .model-spec-table td:last-child {
  border-right: 0;
}

body.caster-v2 .wheel-type-panel {
  margin-top: 12px;
  border: 1px solid #d7e0eb;
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
}

body.caster-v2 .wheel-type-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 0 16px;
  background: #f8fafc;
  color: #111827;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

body.caster-v2 .wheel-type-panel summary::-webkit-details-marker {
  display: none;
}

body.caster-v2 .wheel-type-panel summary span {
  font-size: 13px;
  font-weight: 800;
}

body.caster-v2 .wheel-type-panel summary strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4b5870;
  font-size: 12px;
  font-weight: 800;
}

body.caster-v2 .wheel-type-panel summary strong::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid #c6d0dd;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-size: 15px;
  line-height: 1;
}

body.caster-v2 .wheel-type-panel[open] summary strong::after {
  content: "-";
}

body.caster-v2 .wheel-type-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
  padding: 14px;
  border-top: 1px solid #e4e9f1;
  background: #ffffff;
}

body.caster-v2 .wheel-type-list span {
  min-height: 38px;
  padding: 9px 11px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  background: #fbfdff;
  color: #1f2937;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

body.caster-v2 .btn:not(.btn-primary):hover,
body.caster-v2 .action-btn:not(.btn-primary):hover,
body.caster-v2 .mini-link:not(.is-primary):hover,
body.caster-v2 .support-map-actions .btn:not(.btn-primary):hover,
body.caster-v2 .location-link-grid .btn:not(.btn-primary):hover,
body.caster-v2 .page-actions .btn:not(.btn-primary):hover {
  border-color: #bdbdbd !important;
  background: #f7f7f7 !important;
  color: #111111 !important;
}

body.caster-v2 .btn-primary:hover,
body.caster-v2 .mini-link.is-primary:hover {
  color: #ffffff !important;
}

/* 2026-05-14: black / white / red home design variants */
body.caster-v2 .home-design {
  --home-black: #0b0b0b;
  --home-ink: #111111;
  --home-red: #d30000;
  --home-red-dark: #a90000;
  --home-line: #dedede;
  --home-muted: #6f6f6f;
}

body.caster-v2 .home-design .hero-copy,
body.caster-v2 .home-design .hero-photo-slideshow,
body.caster-v2 .home-design .panel,
body.caster-v2 .home-design .popular-section {
  border-color: var(--home-line) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06) !important;
}

body.caster-v2 .home-design .hero-line,
body.caster-v2 .home-design .panel h3,
body.caster-v2 .home-design .section-head h3,
body.caster-v2 .home-design .popular-card-main h4 a {
  color: var(--home-ink) !important;
}

body.caster-v2 .home-design .hero-line.muted,
body.caster-v2 .home-design .hero-lede,
body.caster-v2 .home-design .panel-desc,
body.caster-v2 .home-design .category-card-detail,
body.caster-v2 .home-design .card-highlight-list {
  color: var(--home-muted) !important;
}

body.caster-v2 .home-design .btn-primary,
body.caster-v2 .home-design .mini-link.is-primary {
  border-color: var(--home-red) !important;
  background: var(--home-red) !important;
  color: #ffffff !important;
}

body.caster-v2 .home-design .btn-primary:hover,
body.caster-v2 .home-design .mini-link.is-primary:hover {
  border-color: var(--home-red-dark) !important;
  background: var(--home-red-dark) !important;
}

body.caster-v2 .home-design .category-cards-ecom .category-card-link::before {
  background: var(--home-red) !important;
}

body.caster-v2 .home-design .category-cards-ecom .category-head strong {
  color: var(--home-ink) !important;
}

body.caster-v2 .home-design .media-badge {
  background: var(--home-ink) !important;
  color: #ffffff !important;
}

body.caster-v2 .home-design-balanced .home-hero {
  gap: 22px !important;
  margin-bottom: 22px !important;
}

body.caster-v2 .home-design-balanced .home-panels {
  gap: 22px !important;
  margin-bottom: 22px !important;
}

body.caster-v2 .home-design-balanced .hero-copy {
  padding: clamp(30px, 3vw, 48px) !important;
  border-left: 6px solid var(--home-red) !important;
  border-radius: 10px !important;
  background:
    linear-gradient(90deg, rgba(211, 0, 0, 0.045), transparent 34%),
    #ffffff !important;
}

body.caster-v2 .home-design-balanced .hero-copy::before {
  background: var(--home-red) !important;
}

body.caster-v2 .home-design-balanced .hero-photo-slideshow {
  border-radius: 10px !important;
  background: #ffffff !important;
}

body.caster-v2 .home-design-balanced .popular-section,
body.caster-v2 .home-design-balanced .panel {
  border-radius: 10px !important;
}

body.caster-v2 .home-design-catalog .home-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr) !important;
  gap: 18px !important;
  margin-bottom: 18px !important;
}

body.caster-v2 .home-design-catalog .hero-photo-slideshow {
  order: -1;
  min-height: clamp(360px, 34vw, 520px) !important;
  border-radius: 4px !important;
  background: #ffffff !important;
}

body.caster-v2 .home-design-catalog .hero-copy {
  min-height: clamp(360px, 34vw, 520px) !important;
  padding: clamp(28px, 3.2vw, 54px) !important;
  border-radius: 4px !important;
  background: var(--home-black) !important;
  color: #ffffff !important;
}

body.caster-v2 .home-design-catalog .hero-copy::before {
  left: 0;
  bottom: auto;
  top: 0;
  width: 100%;
  height: 5px;
  background: var(--home-red) !important;
}

body.caster-v2 .home-design-catalog .hero-copy .hero-line {
  color: #ffffff !important;
}

body.caster-v2 .home-design-catalog .hero-copy .hero-line.muted {
  color: #ff3b3b !important;
}

body.caster-v2 .home-design-catalog .hero-copy .hero-lede {
  color: rgba(255, 255, 255, 0.76) !important;
}

body.caster-v2 .home-design-catalog .home-panels {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
  gap: 18px !important;
  margin-bottom: 18px !important;
}

body.caster-v2 .home-design-catalog .panel,
body.caster-v2 .home-design-catalog .popular-section {
  border-radius: 4px !important;
}

body.caster-v2 .home-design-catalog .category-cards-ecom {
  border-top-color: #111111 !important;
  border-bottom-color: #111111 !important;
}

body.caster-v2 .home-design-factory {
  padding: clamp(14px, 1.6vw, 22px);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(211, 0, 0, 0.08), transparent 30%),
    #080808;
}

body.caster-v2 .home-design-factory .home-hero,
body.caster-v2 .home-design-factory .home-panels {
  gap: 18px !important;
  margin-bottom: 18px !important;
}

body.caster-v2 .home-design-factory .hero-copy,
body.caster-v2 .home-design-factory .panel,
body.caster-v2 .home-design-factory .popular-section {
  border-color: #292929 !important;
  border-radius: 8px !important;
  background: #111111 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

body.caster-v2 .home-design-factory .home-panels > article:not(.inquiry-panel) {
  border-color: #292929 !important;
  background: #111111 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

body.caster-v2 .home-design-factory .hero-photo-slideshow {
  border-color: #292929 !important;
  border-radius: 8px !important;
  background: #050505 !important;
  box-shadow: none !important;
}

body.caster-v2 .home-design-factory .hero-copy::before {
  width: 5px;
  height: 68px;
  left: 0;
  bottom: 32px;
  background: var(--home-red) !important;
}

body.caster-v2 .home-design-factory .hero-line,
body.caster-v2 .home-design-factory .panel h3,
body.caster-v2 .home-design-factory .section-head h3 {
  color: #ffffff !important;
}

body.caster-v2 .home-design-factory .hero-line.muted,
body.caster-v2 .home-design-factory .hero-lede,
body.caster-v2 .home-design-factory .panel-desc,
body.caster-v2 .home-design-factory .section-head .eyebrow {
  color: rgba(255, 255, 255, 0.68) !important;
}

body.caster-v2 .home-design-factory .panel-kicker,
body.caster-v2 .home-design-factory .section-head .eyebrow {
  color: #ff3b3b !important;
}

body.caster-v2 .home-design-factory .inquiry-metrics article {
  border-color: #333333 !important;
  background: #171717 !important;
}

body.caster-v2 .home-design-factory .inquiry-metrics span {
  color: rgba(255, 255, 255, 0.54) !important;
}

body.caster-v2 .home-design-factory .inquiry-metrics strong {
  color: #ffffff !important;
}

body.caster-v2 .home-design-factory .category-cards-ecom {
  border-color: #303030 !important;
}

body.caster-v2 .home-design-factory .category-cards-ecom .category-card-link + .category-card-link {
  border-top-color: #242424 !important;
}

body.caster-v2 .home-design-factory .category-cards-ecom .category-card-link:hover {
  background: #171717 !important;
}

body.caster-v2 .home-design-factory .category-card-index,
body.caster-v2 .home-design-factory .category-card-detail {
  color: rgba(255, 255, 255, 0.58) !important;
}

body.caster-v2 .home-design-factory .category-cards-ecom .category-head strong {
  color: #ffffff !important;
}

body.caster-v2 .home-design-factory .popular-grid {
  gap: 12px !important;
}

body.caster-v2 .home-design-factory .popular-card {
  border-color: #272727 !important;
  border-radius: 6px !important;
  background: #ffffff !important;
}

body.caster-v2 .home-design-factory .section-head .btn {
  border-color: #ffffff !important;
  background: #ffffff !important;
  color: #111111 !important;
}

@media (max-width: 760px) {
  body.caster-v2 .home-design-catalog .home-hero,
  body.caster-v2 .home-design-balanced .home-hero,
  body.caster-v2 .home-design-factory .home-hero,
  body.caster-v2 .home-design-catalog .home-panels,
  body.caster-v2 .home-design-balanced .home-panels,
  body.caster-v2 .home-design-factory .home-panels {
    grid-template-columns: 1fr !important;
  }

  body.caster-v2 .home-design-catalog .hero-photo-slideshow {
    order: 0;
  }
}

@media (max-width: 760px) {
  body.caster-v2 .automation-scene {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.66) 58%, rgba(0, 0, 0, 0.42) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.72) 100%),
      url("./mock/hero-agv-factory-20260514.png") 58% center / cover no-repeat;
  }

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

/* 2026-05-18 final intro behavior: panel fixed, only bottom cards reveal */
@media (min-width: 761px) {
  body.caster-v2 .automation-intro-split .automation-intro-rail {
    display: none !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-inner {
    grid-template-columns: 1fr !important;
    align-items: center !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: min(980px, calc(100vw - 180px)) !important;
    max-width: none !important;
    border-left: 0 !important;
    padding-left: clamp(74px, 6vw, 98px) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    animation: none !important;
    cursor: pointer !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy::before {
    display: block !important;
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 5px !important;
    border-radius: 24px 0 0 24px !important;
    background: #d30000 !important;
    box-shadow: 0 0 28px rgba(211, 0, 0, 0.42) !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy:hover,
  body.caster-v2 .automation-intro-split .automation-intro-copy:focus-within,
  body.caster-v2 .automation-intro-split.is-intro-reveal-open .automation-intro-copy {
    transform: none !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy > :not(.automation-intro-reveal) {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-actions {
    opacity: 1 !important;
    transform: none !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-reveal {
    max-height: 0 !important;
    margin-top: 0 !important;
    margin-left: calc(clamp(74px, 6vw, 98px) * -1) !important;
    padding-left: clamp(74px, 6vw, 98px) !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    clip-path: inset(0 100% 0 0) !important;
    transform: translateX(-70px) !important;
    transform-origin: 0 50% !important;
    animation: none !important;
    transition: max-height 420ms cubic-bezier(0.16, 1, 0.3, 1), margin-top 260ms ease, opacity 220ms ease, clip-path 460ms cubic-bezier(0.16, 1, 0.3, 1), transform 460ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-reveal :is(a, span) {
    opacity: 0 !important;
    transform: translateX(-24px) !important;
    animation: none !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy:hover .automation-intro-reveal,
  body.caster-v2 .automation-intro-split .automation-intro-copy:focus-within .automation-intro-reveal,
  body.caster-v2 .automation-intro-split.is-intro-reveal-open .automation-intro-reveal {
    max-height: 210px !important;
    margin-top: clamp(22px, 2.6vw, 34px) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    clip-path: inset(0 0 0 0) !important;
    transform: translateX(0) !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy:hover .automation-intro-reveal :is(a, span),
  body.caster-v2 .automation-intro-split .automation-intro-copy:focus-within .automation-intro-reveal :is(a, span),
  body.caster-v2 .automation-intro-split.is-intro-reveal-open .automation-intro-reveal :is(a, span) {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
}

/* 2026-05-25: light intro tone for jp3_lite */
body.caster-v2 .automation-intro {
  background: #f5f6f7 !important;
}

body.caster-v2 .automation-intro .automation-scene,
body.caster-v2 .automation-intro-split .automation-scene {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.74) 38%, rgba(255, 255, 255, 0.24) 72%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(244, 246, 248, 0.58) 100%),
    url("./mock/hero-agv-factory-20260514.png") 70% center / cover no-repeat !important;
  filter: saturate(0.86) contrast(1.04) brightness(1.06) !important;
}

body.caster-v2 .automation-intro::before {
  background:
    radial-gradient(circle at var(--intro-x) var(--intro-y), rgba(211, 0, 0, 0.12), rgba(211, 0, 0, 0.035) 18%, transparent 34%),
    linear-gradient(90deg, rgba(211, 0, 0, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(12, 17, 24, 0.055) 0 1px, transparent 1px 100%) !important;
  opacity: 0.38 !important;
}

body.caster-v2 .automation-intro::after {
  opacity: 0.2 !important;
  background:
    linear-gradient(90deg, transparent 0%, rgba(211, 0, 0, 0.5) 46%, rgba(255, 255, 255, 0.58) 50%, transparent 56%) !important;
}

body.caster-v2 .automation-intro .studio-word,
body.caster-v2 .automation-intro .studio-word-a,
body.caster-v2 .automation-intro .studio-word-b {
  color: rgba(9, 13, 20, 0.045) !important;
}

body.caster-v2 .automation-intro .studio-line {
  background: rgba(10, 14, 22, 0.18) !important;
}

body.caster-v2 .automation-intro-split:hover .automation-scene,
body.caster-v2 .automation-intro-split:focus-within .automation-scene {
  filter: saturate(0.88) contrast(1.05) brightness(1.12) !important;
}

body.caster-v2 .automation-intro-kicker {
  color: #53606f !important;
}

body.caster-v2 .automation-intro h2 {
  color: #080d14 !important;
  text-shadow: none !important;
}

body.caster-v2 .automation-intro h2 em {
  color: #4b535d !important;
}

body.caster-v2 .automation-intro-lede {
  color: #4d5968 !important;
}

body.caster-v2 .automation-intro-lede strong {
  color: #111111 !important;
}

body.caster-v2 .automation-intro-actions a {
  border-color: rgba(16, 22, 31, 0.22) !important;
  background: rgba(255, 255, 255, 0.76) !important;
  color: #111827 !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08) !important;
}

body.caster-v2 .automation-intro-actions a:first-child {
  border-color: #d30000 !important;
  background: #d30000 !important;
  color: #ffffff !important;
}

body.caster-v2 .automation-intro-actions a:hover,
body.caster-v2 .automation-intro-actions a:focus-visible {
  border-color: #111827 !important;
  background: #111827 !important;
  color: #ffffff !important;
}

body.caster-v2 .automation-intro-actions a:first-child:hover,
body.caster-v2 .automation-intro-actions a:first-child:focus-visible {
  border-color: #a90000 !important;
  background: #a90000 !important;
  color: #ffffff !important;
}

body.caster-v2 .automation-scroll-cue {
  color: rgba(16, 22, 31, 0.42) !important;
  text-shadow: none !important;
}

@media (min-width: 761px) {
  body.caster-v2 .automation-intro-split .automation-intro-inner {
    width: min(1280px, calc(100% - 108px)) !important;
    margin-left: clamp(54px, 6vw, 124px) !important;
    margin-right: auto !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy {
    width: min(930px, calc(100vw - 128px)) !important;
    border-color: rgba(12, 17, 24, 0.12) !important;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.32)) !important;
    box-shadow: 0 30px 82px rgba(15, 23, 42, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.54) !important;
    backdrop-filter: blur(7px) saturate(1.08) !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy::before {
    background: #d30000 !important;
    box-shadow: 0 0 22px rgba(211, 0, 0, 0.32) !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-reveal :is(a, span) {
    min-height: 120px !important;
    border-color: rgba(17, 24, 39, 0.14) !important;
    background: rgba(255, 255, 255, 0.82) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 10px 24px rgba(15, 23, 42, 0.08) !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-reveal a:hover,
  body.caster-v2 .automation-intro-split .automation-intro-reveal a:focus-visible {
    border-color: rgba(211, 0, 0, 0.72) !important;
    background: rgba(255, 255, 255, 0.94) !important;
  }

  body.caster-v2 .automation-intro-reveal strong {
    color: #111827 !important;
  }

  body.caster-v2 .automation-intro-reveal small {
    color: #5f6875 !important;
  }
}

@media (max-width: 760px) {
  body.caster-v2 .automation-scene,
  body.caster-v2 .automation-intro-split .automation-scene {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 246, 248, 0.78) 100%),
      url("./mock/hero-agv-factory-20260514.png") 58% center / cover no-repeat !important;
    filter: saturate(0.82) contrast(1.02) brightness(1.08) !important;
  }

  body.caster-v2 .automation-intro-copy {
    background: rgba(255, 255, 255, 0.86) !important;
    border-color: rgba(12, 17, 24, 0.12) !important;
    box-shadow: 0 20px 58px rgba(15, 23, 42, 0.13) !important;
  }

  body.caster-v2 .automation-intro-reveal :is(a, span) {
    border-color: rgba(17, 24, 39, 0.14) !important;
    background: rgba(255, 255, 255, 0.82) !important;
  }
}

/* 2026-06-01: Readdy-inspired logistics hero, rebuilt in AI CASTER black/white/red */
body.caster-v2 .automation-intro {
  background: #05070a !important;
}

body.caster-v2 .automation-intro .automation-scene,
body.caster-v2 .automation-intro-split .automation-scene {
  background: url("./mock/readdy-hero-logistics-20260601.jpg") center top / cover no-repeat !important;
  filter: none !important;
  transform: none !important;
}

body.caster-v2 .automation-intro::before {
  background: transparent !important;
  opacity: 0 !important;
}

body.caster-v2 .automation-intro::after {
  display: none !important;
}

body.caster-v2 .automation-intro .studio-word,
body.caster-v2 .automation-intro .studio-word-a,
body.caster-v2 .automation-intro .studio-word-b {
  display: none !important;
}

body.caster-v2 .automation-intro .studio-line {
  display: none !important;
}

body.caster-v2 .automation-intro-kicker {
  color: #d30000 !important;
  font-size: clamp(12px, 1.05vw, 15px) !important;
  font-weight: 900 !important;
  letter-spacing: 0.42em !important;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.5) !important;
}

body.caster-v2 .automation-intro h2 {
  width: 100% !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  color: #ffffff !important;
  font-size: clamp(56px, 5.9vw, 112px) !important;
  font-weight: 900 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.015em !important;
  text-align: center !important;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.62), 0 2px 8px rgba(0, 0, 0, 0.42) !important;
}

body.caster-v2 .automation-intro h2 em {
  color: #ffffff !important;
  font-style: normal !important;
  font-weight: 900 !important;
}

body.caster-v2 .automation-intro h2 em::first-letter {
  color: inherit;
}

body.caster-v2 .automation-intro h2 span:nth-child(2) em {
  text-shadow: 0 0 26px rgba(211, 0, 0, 0.26);
}

body.caster-v2 .automation-intro h2 span:nth-child(2) em::before {
  content: "";
}

body.caster-v2 .automation-intro-actions {
  justify-content: center !important;
  margin-top: clamp(28px, 3vw, 42px) !important;
}

body.caster-v2 .automation-intro-actions a {
  min-height: 48px !important;
  padding: 0 28px !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
  background: rgba(0, 0, 0, 0.18) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  backdrop-filter: blur(10px);
}

body.caster-v2 .automation-intro-actions a:first-child {
  border-color: #d30000 !important;
  background: #d30000 !important;
  box-shadow: 0 18px 45px rgba(211, 0, 0, 0.28) !important;
}

body.caster-v2 .automation-intro-actions a:hover,
body.caster-v2 .automation-intro-actions a:focus-visible {
  border-color: #ffffff !important;
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
}

body.caster-v2 .automation-intro-actions a:first-child:hover,
body.caster-v2 .automation-intro-actions a:first-child:focus-visible {
  border-color: #a90000 !important;
  background: #a90000 !important;
}

body.caster-v2 .automation-intro-split:hover .automation-scene,
body.caster-v2 .automation-intro-split:focus-within .automation-scene {
  transform: none !important;
  filter: none !important;
}

body.caster-v2 .automation-scroll-cue {
  left: 50% !important;
  bottom: 26px !important;
  color: #d30000 !important;
  transform: translateX(-50%) !important;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.42) !important;
}

@media (min-width: 761px) {
  body.caster-v2 .automation-intro-split .automation-intro-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(1180px, calc(100% - 96px)) !important;
    margin: 0 auto !important;
    min-height: 100vh !important;
    padding: 8vh 0 9vh !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy {
    width: min(1080px, 100%) !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    text-align: center !important;
    overflow: visible !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy::before {
    display: none !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-reveal {
    width: min(860px, 100%) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-reveal :is(a, span) {
    min-height: 112px !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    background: rgba(0, 0, 0, 0.42) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 45px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    text-align: left !important;
  }

  body.caster-v2 .automation-intro-reveal strong {
    color: #ffffff !important;
  }

  body.caster-v2 .automation-intro-reveal small {
    color: rgba(255, 255, 255, 0.66) !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-reveal a:hover,
  body.caster-v2 .automation-intro-split .automation-intro-reveal a:focus-visible {
    border-color: rgba(211, 0, 0, 0.92) !important;
    background: rgba(211, 0, 0, 0.78) !important;
    color: #ffffff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 20px 46px rgba(211, 0, 0, 0.24) !important;
    outline: none !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-reveal a:hover b,
  body.caster-v2 .automation-intro-split .automation-intro-reveal a:focus-visible b,
  body.caster-v2 .automation-intro-split .automation-intro-reveal a:hover strong,
  body.caster-v2 .automation-intro-split .automation-intro-reveal a:focus-visible strong {
    color: #ffffff !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-reveal a:hover small,
  body.caster-v2 .automation-intro-split .automation-intro-reveal a:focus-visible small {
    color: rgba(255, 255, 255, 0.82) !important;
  }
}

@media (max-width: 760px) {
  body.caster-v2 .automation-intro .automation-scene,
  body.caster-v2 .automation-intro-split .automation-scene {
    background: url("./mock/readdy-hero-logistics-20260601.jpg") center top / cover no-repeat !important;
    filter: none !important;
  }

  body.caster-v2 .automation-intro-inner,
  body.caster-v2 .automation-intro-split .automation-intro-inner {
    width: calc(100% - 32px) !important;
    min-height: 100svh !important;
    padding: 54px 0 52px !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-copy {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    padding: 16px 18px !important;
    text-align: left !important;
  }

  body.caster-v2 .automation-intro-kicker {
    margin-bottom: 10px !important;
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
  }

  body.caster-v2 .automation-intro h2 {
    text-align: left !important;
    font-size: clamp(40px, 12vw, 54px) !important;
    line-height: 1 !important;
  }

  body.caster-v2 .automation-intro-actions {
    margin-top: 16px !important;
  }

  body.caster-v2 .automation-intro-reveal,
  body.caster-v2 .automation-intro-split .automation-intro-copy:hover .automation-intro-reveal,
  body.caster-v2 .automation-intro-split .automation-intro-copy:focus-within .automation-intro-reveal {
    gap: 7px !important;
    margin-top: 16px !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-reveal :is(a, span),
  body.caster-v2 .automation-intro-reveal :is(a, span) {
    min-height: 74px !important;
    padding: 10px 12px !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    background: rgba(0, 0, 0, 0.48) !important;
    color: #ffffff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 12px 32px rgba(0, 0, 0, 0.18) !important;
  }

  body.caster-v2 .automation-intro-reveal b {
    color: #d30000 !important;
    font-size: 10px !important;
  }

  body.caster-v2 .automation-intro-reveal strong {
    color: #ffffff !important;
    margin-top: 5px !important;
    font-size: 14px !important;
  }

  body.caster-v2 .automation-intro-reveal small {
    color: rgba(255, 255, 255, 0.72) !important;
    margin-top: 3px !important;
    font-size: 11px !important;
  }

  body.caster-v2 .automation-intro-split .automation-intro-reveal a:hover,
  body.caster-v2 .automation-intro-split .automation-intro-reveal a:focus-visible {
    border-color: rgba(211, 0, 0, 0.92) !important;
    background: rgba(211, 0, 0, 0.78) !important;
  }

  body.caster-v2 .automation-scroll-cue {
    bottom: 12px !important;
  }
}

/* 2026-06-01: product detail mobile ratio and overflow guard */
body.caster-v2 .product-detail-container,
body.caster-v2 .product-header,
body.caster-v2 .media-viewer,
body.caster-v2 .product-info-panel,
body.caster-v2 .tab-content,
body.caster-v2 .tab-panel {
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 860px) {
  body.caster-v2 .breadcrumb {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
  }

  body.caster-v2 .product-detail-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    gap: 14px !important;
    padding-bottom: 44px !important;
  }

  body.caster-v2 .product-header {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 10px !important;
    overflow: hidden !important;
  }

  body.caster-v2 .media-viewer,
  body.caster-v2 .product-info-panel {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  body.caster-v2 .main-player {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    max-height: min(58vh, 360px) !important;
  }

  body.caster-v2 .main-player video,
  body.caster-v2 .main-player img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  body.caster-v2 .media-thumb-strip {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 8px 2px 10px !important;
    margin-top: 8px !important;
    -webkit-overflow-scrolling: touch;
  }

  body.caster-v2 .thumb-item {
    flex: 0 0 74px !important;
    width: 74px !important;
    height: 74px !important;
  }

  body.caster-v2 .product-info-panel {
    padding: 12px !important;
  }

  body.caster-v2 .product-info-panel h1 {
    font-size: clamp(32px, 11vw, 44px) !important;
    line-height: 0.96 !important;
    overflow-wrap: anywhere !important;
  }

  body.caster-v2 .summary-container,
  body.caster-v2 .detail-highlight-list .highlight-row,
  body.caster-v2 .product-meta-grid > div {
    border-radius: 10px !important;
  }

  body.caster-v2 .pdp-tabs {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    gap: 8px !important;
    overflow-x: auto !important;
    padding-bottom: 4px !important;
    -webkit-overflow-scrolling: touch;
  }

  body.caster-v2 .tab-btn {
    flex: 0 0 auto !important;
    min-width: 142px !important;
    padding: 10px 12px !important;
    white-space: nowrap !important;
  }

  body.caster-v2 .tab-content,
  body.caster-v2 .tab-panel {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  body.caster-v2 .spec-table-container {
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  body.caster-v2 .spec-table {
    min-width: 620px;
  }
}

@media (max-width: 520px) {
  body.caster-v2 .product-header {
    padding: 8px !important;
  }

  body.caster-v2 .main-player {
    aspect-ratio: 1 / 1 !important;
    max-height: 340px !important;
  }

  body.caster-v2 .main-player figcaption {
    display: none !important;
  }

  body.caster-v2 .thumb-item {
    flex-basis: 68px !important;
    width: 68px !important;
    height: 68px !important;
  }
}
