:root {
  --ink: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --panel: #ffffff;
  --soft: #f6f9fc;
  --blue: #1357d9;
  --green: #0f9f7a;
  --gold: #f4b400;
  --coral: #ec6b56;
  --shadow: 0 18px 50px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-bottom: 96px;
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  background: var(--soft);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #d9dde5;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.top-header,
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 8vw, 150px);
}

.nav-header {
  padding-top: 0;
  padding-bottom: 0;
  border-top: 1px solid #e5e7eb;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 330px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
  user-select: none;
}

.hs-logo-text {
  display: grid;
  gap: 3px;
}

.hs-logo-main {
  color: #101828;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.hs-logo-sub {
  color: #475467;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
}

.header-search {
  position: relative;
  display: flex;
  width: min(420px, 34vw);
  min-width: 260px;
  height: 44px;
  overflow: visible;
  border: 1.5px solid #2189ff;
  border-radius: 999px;
  background: #fff;
}

.header-search input {
  height: 100%;
  border: 0;
  padding-left: 22px;
}

.header-search button {
  width: 54px;
  border: 0;
  color: #667085;
  font-size: 25px;
  background: #fff;
  cursor: pointer;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 1000;
  overflow: hidden;
  border: 1px solid #d0d5dd;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.14);
}

.search-suggestions[hidden] {
  display: none;
}

.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid #eaecf0;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.search-suggestion-item:last-child {
  border-bottom: 0;
}

.search-suggestion-item:hover,
.search-suggestion-item:focus {
  background: #f5f9ff;
}

.search-suggestion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  background: #f2f4f7;
  color: #98a2b3;
  font-size: 14px;
}

.search-suggestion-item strong {
  display: block;
  flex: 1;
  color: #101828;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggestion-item small {
  display: block;
  margin-top: 3px;
  color: #667085;
  font-size: 12px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.social-links a:nth-child(1) {
  overflow: hidden;
  background: #fff;
}

.social-links a:nth-child(2) {
  background: #ff0000;
}

.social-links a:nth-child(3) {
  background: #13aa00;
}

.social-links img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  flex: 1;
  gap: 0;
  color: #344054;
  font-size: 16px;
  font-weight: 700;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
}

.desktop-nav a:hover {
  color: #2189ff;
}

.all-category {
  border-right: 1px solid #e5e7eb;
  border-left: 1px solid #e5e7eb;
}

.all-category span {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  background:
    linear-gradient(90deg, #2189ff 0 46%, transparent 46% 54%, #101828 54%),
    linear-gradient(#101828 0 46%, transparent 46% 54%, #2189ff 54%);
  background-blend-mode: normal;
}

.header-call,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
}

.header-call,
.primary-btn {
  color: #fff;
  background: #2189ff;
}

.header-call {
  min-width: 190px;
  min-height: 56px;
  border-radius: 0;
  font-size: 21px;
}

.secondary-btn {
  border: 1px solid var(--line);
  background: #fff;
}

.deploy-production-btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #0f9f7a;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  font-weight: 900;
  background: #0f9f7a;
  cursor: pointer;
  white-space: nowrap;
}

.deploy-production-btn:hover {
  background: #08765b;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  min-height: 640px;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 8vw, 150px) 78px;
  background: #f5f5f5;
  overflow-anchor: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(42px, 4.8vw, 66px);
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  min-height: 430px;
  opacity: 1;
  transition: opacity 0.24s ease;
}

.hero-copy.is-changing {
  opacity: 0.35;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: #344054;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(228, 231, 236, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.hero-stats dt {
  font-size: 25px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-media {
  position: relative;
  height: clamp(410px, 35vw, 520px);
  min-height: 410px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: none;
  background: #e4e7ec;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.24s ease;
}

.hero-media img.is-changing {
  opacity: 0.35;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.hero-indicator {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  transform: translateX(-50%);
}

.hero-indicator button {
  display: grid;
  place-items: center;
  border: 0;
  color: #101828;
  background: transparent;
  cursor: pointer;
}

.hero-play-toggle {
  width: 18px;
  height: 18px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #98a2b3;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 24px;
  background: #101828;
}

.hero-count {
  color: #101828;
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

section {
  padding: 74px clamp(18px, 8vw, 150px);
}

.section-heading h2,
.care-copy h2,
.consult-section h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-heading.split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: #344054;
  font-weight: 800;
  background: #fff;
  cursor: pointer;
}

.tab.is-active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

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

.product-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
}

.product-image {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.24s ease;
}

.product-image img.is-changing {
  opacity: 0.35;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-tag {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: 8px;
  color: #075e4c;
  font-size: 12px;
  font-weight: 900;
  background: #dff7ee;
}

.product-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.36;
}

.product-body p {
  margin: 6px 0 5px;
  color: var(--muted);
  line-height: 1.55;
}

.sku {
  margin: 0 0 16px;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.product-divider {
  width: 100%;
  height: 1px;
  margin: auto 0 16px;
  background: #e4e7ec;
}

.price {
  margin-top: 0;
  color: #101828;
  font-size: 22px;
}

.benefit-price {
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
}

.points {
  display: block;
  margin-top: 10px;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.product-card button,
.consult-link,
.detail-link {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  background: var(--ink);
  cursor: pointer;
}

.consult-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d0d5dd;
  color: #101828;
  background: #fff;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
}

.care-section {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.78fr);
  gap: 34px;
  align-items: center;
}

.care-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.care-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.care-copy ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.care-copy li {
  padding: 16px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  font-weight: 800;
  background: #fff;
}

.consult-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.78fr);
  gap: 34px;
  background: #172033;
  color: #fff;
}

.consult-section p {
  color: #d0d5dd;
  line-height: 1.7;
}

.consult-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.consult-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.full {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 12px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 960px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: #fff;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 8vw, 150px);
  color: #d0d5dd;
  background: #0d1422;
}

.floating-consult {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto auto minmax(150px, auto) minmax(120px, 1fr) minmax(150px, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: min(1000px, calc(100vw - 36px));
  min-height: 76px;
  padding: 14px 22px;
  border-radius: 999px;
  color: #fff;
  background: #2189ff;
  box-shadow: 0 18px 50px rgba(33, 137, 255, 0.34);
  transform: translateX(-50%);
}

.floating-consult strong,
.floating-consult a {
  font-size: 18px;
  font-weight: 900;
}

.floating-consult input[type="text"],
.floating-consult input[type="tel"] {
  min-height: 46px;
  border: 0;
}

.floating-consult button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  color: #101828;
  font-weight: 900;
  background: #fff;
  cursor: pointer;
}

.agree {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.privacy-consent-link {
  min-height: auto;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: transparent;
  cursor: pointer;
}

.privacy-consent-modal[hidden] {
  display: none;
}

.privacy-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 20px;
}

.privacy-consent-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 40, 0.55);
}

.privacy-consent-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  padding: 24px;
  border-radius: 8px;
  color: #101828;
  background: #fff;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.28);
}

.privacy-consent-dialog h2,
.privacy-consent-dialog h3,
.privacy-consent-dialog p {
  margin: 0;
}

.privacy-consent-dialog h2 {
  font-size: 21px;
  line-height: 1.35;
}

.privacy-consent-subtitle {
  color: #475467;
  font-size: 14px;
  font-weight: 800;
}

.privacy-consent-content {
  display: grid;
  gap: 12px;
  overflow: auto;
  max-height: min(520px, calc(100vh - 210px));
  padding-right: 4px;
  color: #344054;
  font-size: 14px;
  line-height: 1.7;
}

.privacy-consent-content h3 {
  margin-top: 4px;
  color: #101828;
  font-size: 16px;
  line-height: 1.45;
}

.privacy-consent-content a {
  color: #2189ff;
  word-break: break-all;
}

.privacy-consent-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.55;
}

.privacy-consent-content th,
.privacy-consent-content td {
  border: 1px solid #d0d5dd;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.privacy-consent-content th {
  color: #101828;
  background: #f2f4f7;
}

.privacy-consent-confirm {
  color: #101828;
  font-weight: 900;
}

.privacy-consent-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 6px;
}

.privacy-consent-actions button {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  cursor: pointer;
}

.privacy-consent-agree {
  border: 0;
  color: #fff;
  background: #2189ff;
}

.privacy-consent-close {
  border: 1px solid #d0d5dd;
  color: #344054;
  background: #fff;
}

body.privacy-consent-open {
  overflow: hidden;
}

.agree input {
  width: 18px;
  height: 18px;
  accent-color: #101828;
}

.site-footer strong {
  color: #fff;
}

.site-footer p,
.site-footer address {
  margin: 6px 0 0;
  font-style: normal;
  line-height: 1.7;
}

.footer-business p {
  margin: 0;
  line-height: 1.75;
}

.admin-page {
  padding-bottom: 0;
  background: #f6f9fc;
}

.detail-page {
  padding-bottom: 0;
  background: #fff;
}

.detail-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(18px, 8vw, 150px);
  border-bottom: 1px solid #e4e7ec;
  background: #fff;
}

.detail-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 18px 80px;
}

.inline-detail-shell[hidden] {
  display: none;
}

.inline-detail-shell {
  scroll-margin-top: 110px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: center;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  padding: clamp(22px, 4vw, 46px);
  background: #fff;
}

.detail-image {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
  border-radius: 8px;
  background: #f4f6f8;
}

.detail-image img {
  width: min(520px, 90%);
  max-height: 390px;
  object-fit: contain;
}

.detail-info h1 {
  margin: 14px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
}

.detail-info > p {
  margin: 0 0 22px;
  color: #667085;
  font-size: 18px;
  line-height: 1.7;
}

.detail-info dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid #e4e7ec;
}

.detail-info dl div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid #e4e7ec;
}

.detail-info dt,
.detail-info dd {
  margin: 0;
}

.detail-info dt {
  color: #667085;
  font-weight: 900;
}

.detail-info dd {
  color: #101828;
  font-weight: 900;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.detail-empty {
  display: grid;
  gap: 14px;
  justify-items: start;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  padding: 44px;
  background: #fff;
}

.detail-empty h1,
.detail-empty p {
  margin: 0;
}

.commerce-detail {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(380px, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.detail-gallery {
  display: grid;
  gap: 16px;
}

.gallery-main {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  width: 100%;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #d0d5dd;
  border-radius: 50%;
  color: #101828;
  font-size: 28px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.08);
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-arrow.prev {
  left: 16px;
}

.gallery-arrow.next {
  right: 16px;
}

.gallery-count {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border-radius: 999px;
  padding: 6px 11px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: #101828;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
}

.gallery-thumbs button {
  display: grid;
  aspect-ratio: 1;
  flex: 1;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.gallery-thumbs button.is-active {
  border: 2px solid #2189ff;
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.gallery-thumbs .more-thumb {
  color: #101828;
  font-weight: 900;
}

.purchase-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #667085;
  font-size: 12px;
}

.breadcrumb strong {
  color: #101828;
}

.product-category-label {
  color: #2189ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-title-block h1 {
  margin: 10px 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
}

.product-title-block p {
  margin: 0;
  color: #667085;
  font-size: 13px;
}

.monthly-price-block {
  border-top: 1px solid #e4e7ec;
  padding-top: 24px;
}

.monthly-price-block p,
.monthly-price-block small {
  margin: 0;
  color: #667085;
  font-size: 12px;
}

.samsung-subscription-box {
  display: grid;
  gap: 18px;
  border: 1px solid #d9e8ff;
  border-radius: 8px;
  padding: 18px;
  background: #f7fbff;
}

.samsung-subscription-box p,
.samsung-subscription-box strong,
.samsung-subscription-box small,
.samsung-subscription-box span {
  margin: 0;
}

.samsung-subscription-box p {
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}

.samsung-subscription-box strong {
  color: #101828;
  font-size: 16px;
}

.samsung-subscription-box small {
  color: #667085;
  line-height: 1.5;
}

.samsung-subscription-inline,
.samsung-subscription-head {
  display: grid;
  gap: 6px;
}

.samsung-subscription-inline.is-muted {
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  padding: 13px 14px;
  background: #f8fafc;
}

.samsung-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
}

.samsung-choice-group {
  display: grid;
  gap: 8px;
}

.samsung-choice-group > span,
.samsung-status-row span,
.samsung-base-price span,
.samsung-selected-result span {
  color: #667085;
  font-size: 12px;
  font-weight: 900;
}

.samsung-choice-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.samsung-choice-buttons[data-samsung-options] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.samsung-choice-buttons button {
  display: grid;
  gap: 6px;
  min-height: 54px;
  border: 1px solid #cfd9e8;
  border-radius: 8px;
  padding: 12px 14px;
  color: #344054;
  font-weight: 900;
  text-align: left;
  background: #fff;
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.04);
  cursor: pointer;
}

.samsung-choice-buttons button small {
  display: block;
  color: #667085;
  font-weight: 700;
}

.samsung-choice-buttons button.is-selected {
  border-color: #2189ff;
  color: #2189ff;
  background: #eef6ff;
  box-shadow: inset 0 0 0 1px #2189ff, 0 8px 18px rgba(33, 137, 255, 0.12);
}

.samsung-choice-buttons button.is-selected small {
  color: #2189ff;
}

.samsung-base-price,
.samsung-selected-result {
  border-top: 1px solid #d9e8ff;
  padding-top: 14px;
}

.samsung-base-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.samsung-base-price strong {
  color: #101828;
}

.samsung-selected-result {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.samsung-selected-card {
  display: grid;
  gap: 4px;
  border: 1px solid #d9e8ff;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.05);
}

.samsung-selected-result strong {
  color: #192799;
  font-size: 18px;
}

.monthly-price-block div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: end;
  margin: 10px 0 8px;
}

.monthly-price-block span {
  padding-bottom: 8px;
  font-weight: 900;
}

.monthly-price-block strong {
  font-size: clamp(42px, 6vw, 56px);
  line-height: 1;
}

.compare-box {
  padding: 0;
}

.compare-box h2 {
  margin: 0;
  color: #192799;
  font-size: 24px;
}

.compare-box > p {
  margin: 6px 0 16px;
  color: #717171;
  font-size: 14px;
}

.benefit-callout {
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, #2189ff, #1529a6);
}

.benefit-callout span,
.benefit-callout small {
  display: block;
}

.benefit-callout span {
  font-size: 18px;
  font-weight: 900;
}

.benefit-callout strong {
  display: block;
  margin-top: 8px;
  font-size: 44px;
  line-height: 1;
}

.benefit-callout small {
  margin-top: 10px;
  opacity: 0.9;
}

.compare-box table,
.spec-table {
  width: 100%;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f5;
  border-collapse: collapse;
  border-radius: 14px;
  font-size: 14px;
}

.compare-box th,
.compare-box td,
.spec-table th,
.spec-table td {
  border-bottom: 1px solid #edf1f7;
  padding: 13px 14px;
  text-align: center;
}

.compare-box th,
.spec-table th {
  color: #3a4250;
  background: #f5f8fc;
}

.compare-box td:last-child {
  color: #1529a6;
  font-weight: 900;
  background: #f2f9ff;
}

.compare-note {
  margin: 12px 0 0 !important;
  color: #9aa1ad !important;
  font-size: 11px !important;
  line-height: 1.5;
}

.option-group {
  display: grid;
  gap: 10px;
  margin: 0;
  border: 0;
  padding: 0;
}

.option-grid,
.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.option-group legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 900;
}

.option-group legend small {
  margin-left: 8px;
  color: #667085;
  font-weight: 600;
}

.option-group button {
  min-height: 58px;
  border: 2px solid #d0d5dd;
  border-radius: 8px;
  padding: 12px;
  color: #101828;
  font-weight: 900;
  text-align: left;
  background: #fff;
  cursor: pointer;
}

.option-group button small {
  display: block;
  margin-top: 5px;
  color: #667085;
  font-weight: 600;
}

.option-group .is-selected {
  border-color: #2189ff;
  color: #2189ff;
}

.quantity-row,
.final-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.quantity-row > span {
  font-size: 14px;
  font-weight: 900;
}

.quantity-row div {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
}

.quantity-row button {
  width: 42px;
  height: 42px;
  border: 0;
  font-size: 20px;
  background: #fff;
  cursor: pointer;
}

.quantity-row button:disabled {
  opacity: 0.35;
  cursor: default;
}

.quantity-row strong {
  min-width: 44px;
  border-right: 1px solid #d0d5dd;
  border-left: 1px solid #d0d5dd;
  padding: 12px;
  text-align: center;
}

.final-price {
  align-items: end;
  border-top: 1px solid #e4e7ec;
  padding-top: 18px;
}

.final-price dl {
  display: grid;
  gap: 8px;
  margin: 0;
  color: #667085;
  font-size: 13px;
}

.final-price dl div {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.final-price dt,
.final-price dd {
  margin: 0;
}

.final-price dd {
  color: #101828;
  font-weight: 900;
}

.final-price span,
.final-price strong {
  display: block;
  text-align: right;
}

.final-price span {
  color: #667085;
  font-size: 12px;
}

.final-price strong {
  color: #2189ff;
  font-size: 30px;
}

.purchase-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.purchase-actions .black-btn {
  grid-column: 1 / -1;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  background: #101828;
}

.purchase-actions button {
  min-height: 56px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  color: #101828;
  font-weight: 900;
  background: #fff;
  cursor: pointer;
}

.delivery-notes {
  display: grid;
  gap: 8px;
  margin: 0;
  border-top: 1px solid #e4e7ec;
  padding: 18px 0 0;
  color: #667085;
  font-size: 12px;
  line-height: 1.65;
  list-style: none;
}

.delivery-notes li {
  display: flex;
  gap: 10px;
}

.delivery-notes strong {
  min-width: 38px;
  color: #101828;
}

.detail-tabs {
  margin-top: 70px;
  border-top: 1px solid #e4e7ec;
  background: #fff;
}

.tab-bar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid #e4e7ec;
  background: rgba(255, 255, 255, 0.96);
}

.tab-bar button {
  min-height: 64px;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 0 28px;
  color: #667085;
  font-size: 16px;
  font-weight: 900;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}

.tab-bar button.is-active {
  border-bottom-color: #2189ff;
  color: #2189ff;
}

.tab-panel {
  display: none;
  padding: 48px 0;
}

.tab-panel.is-active {
  display: block;
}

.promo-card {
  max-width: 680px;
  margin: 0 auto 34px;
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  background: #dcf0fb;
}

.promo-card h2 {
  margin: 0 0 22px;
  color: #192799;
  font-size: 34px;
}

.promo-card > div {
  border-radius: 22px;
  padding: 28px;
  background: #fff;
}

.promo-card img {
  width: 220px;
  height: 220px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.promo-card strong,
.promo-card span {
  display: block;
}

.promo-card strong {
  font-size: 22px;
}

.promo-card span {
  margin-top: 8px;
  color: #717171;
}

.promo-card dl {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.promo-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #192799;
  font-size: 20px;
  font-weight: 900;
}

.promo-card dt,
.promo-card dd {
  margin: 0;
}

.promo-card p {
  margin: 18px 0 0;
  color: #192799;
  font-size: 13px;
}

.detail-long-images {
  max-width: 860px;
  margin: 0 auto;
}

.detail-long-images img {
  width: 100%;
  background: #fff;
}

.detail-long-images .se-main-container {
  display: grid;
  gap: 0;
}

.detail-long-images .se-component-content,
.detail-long-images .se-module-image,
.detail-long-images .se-module-image-link {
  display: block;
}

.detail-long-images .se-image-resource {
  display: block;
  max-width: 100%;
  height: auto;
}

.spec-table {
  max-width: 860px;
  margin: 0 auto;
}

.spec-table th,
.spec-table td {
  text-align: left;
}

.empty-panel {
  display: none;
  min-height: 220px;
  place-items: center;
  border-radius: 8px;
  color: #667085;
  background: #f4f6f8;
}

.empty-panel.is-active {
  display: grid;
}

.related-section {
  padding-top: 64px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.related-card {
  display: grid;
  gap: 10px;
}

.related-card div {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 8px;
  background: #fff;
}

.related-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.related-card strong {
  font-size: 18px;
}

.related-card span {
  color: #667085;
  font-size: 12px;
}

.related-card b {
  color: #101828;
}

.related-card em {
  color: #2189ff;
  font-style: normal;
  font-weight: 900;
}

.detail-floating-consult {
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto auto minmax(110px, 1fr) minmax(150px, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  width: min(1020px, calc(100vw - 32px));
  min-height: 72px;
  padding: 12px 28px;
  border-radius: 999px;
  color: #fff;
  background: #2189ff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.18);
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.detail-floating-consult.is-scroll-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(18px);
}

.detail-floating-consult strong,
.detail-floating-consult a {
  font-size: 17px;
  font-weight: 900;
}

.detail-floating-consult input[type="text"],
.detail-floating-consult input[type="tel"] {
  min-height: 42px;
  border: 1px solid #b5b7bb;
  background: #f4f5f7;
}

.detail-floating-consult label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  white-space: nowrap;
}

.detail-floating-consult label input {
  width: 16px;
  height: 16px;
}

.detail-floating-consult button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  color: #101828;
  font-weight: 900;
  background: #fff;
  cursor: pointer;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 7vw, 120px);
  border-bottom: 1px solid #e4e7ec;
  background: #fff;
}

.admin-header h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
}

.admin-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-header-actions a,
.admin-header-actions button,
.admin-toolbar button,
.admin-form-actions button,
.admin-auth button,
.admin-product-actions button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 0 14px;
  color: #101828;
  font-weight: 900;
  background: #fff;
  cursor: pointer;
}

.admin-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 18px 70px;
}

.admin-auth,
.admin-workspace,
.json-panel {
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.admin-auth {
  display: grid;
  gap: 14px;
  max-width: 520px;
  margin: 40px auto;
}

.admin-auth h2 {
  margin: 0;
}

.admin-auth p {
  margin: 0;
  color: #667085;
  line-height: 1.6;
}

.admin-auth label,
.admin-form label,
.json-panel label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-weight: 900;
}

.is-hidden {
  display: none;
}

.admin-toolbar,
.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-toolbar {
  margin-bottom: 18px;
}

.admin-toolbar button:nth-child(2),
.admin-form-actions button:first-child,
.admin-auth button {
  border-color: #2189ff;
  color: #fff;
  background: #2189ff;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1.22fr);
  gap: 20px;
}

.admin-form {
  display: grid;
  gap: 14px;
  align-self: start;
}

.gallery-field-list {
  display: grid;
  gap: 8px;
}

.gallery-field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
}

.gallery-field-row input {
  min-width: 0;
}

.gallery-remove,
.gallery-add {
  min-height: 42px;
}

.gallery-remove {
  padding: 0;
  font-size: 18px;
  font-weight: 900;
}

.gallery-remove:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gallery-add {
  justify-self: start;
  padding: 0 14px;
  border-color: #2189ff;
  color: #2189ff;
  background: #fff;
}

.samsung-admin-actions {
  display: flex;
}

.samsung-admin-actions button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #2189ff;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  font-weight: 900;
  background: #2189ff;
  cursor: pointer;
}

.samsung-admin-actions button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.samsung-admin-panel {
  display: grid;
  gap: 14px;
  border: 1px solid #c9e0ff;
  border-radius: 8px;
  padding: 16px;
  background: #f7fbff;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

.samsung-admin-panel p {
  margin: 0;
  color: #475467;
  line-height: 1.5;
}

.samsung-admin-summary {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.samsung-admin-summary span,
.samsung-admin-plan span,
.samsung-admin-plan small {
  color: #667085;
  font-size: 13px;
}

.samsung-admin-summary span,
.samsung-admin-summary small {
  display: block;
}

.samsung-admin-summary strong {
  display: block;
  margin-top: 4px;
  color: #101828;
  font-size: 17px;
}

.samsung-admin-summary small {
  color: #667085;
}

.samsung-admin-summary-meta {
  display: grid;
  gap: 5px;
  text-align: right;
}

.samsung-admin-plans {
  display: grid;
  gap: 12px;
}

.samsung-admin-plan {
  display: grid;
  gap: 12px;
  border: 1px solid #d9e8ff;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.samsung-admin-plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.samsung-admin-plan h3 {
  margin: 0;
  color: #101828;
  font-size: 16px;
}

.samsung-admin-plan p,
.samsung-admin-plan li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
}

.samsung-admin-plan strong {
  color: #2189ff;
}

.samsung-admin-plan-base {
  border-radius: 8px;
  padding: 12px;
  background: #f4f8ff;
}

.samsung-admin-plan em {
  color: #475467;
  font-size: 13px;
  font-style: normal;
  text-align: right;
}

.samsung-admin-plan ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.samsung-admin-plan li {
  border-top: 1px solid #eef2f7;
  padding-top: 8px;
}

.samsung-admin-plan li:first-child {
  border-top: 0;
  padding-top: 0;
}

.samsung-admin-rate {
  min-width: 72px;
}

.admin-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  padding: 14px;
}

.admin-form legend {
  padding: 0 6px;
  font-weight: 900;
}

.admin-form fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.admin-form fieldset input {
  width: 16px;
  height: 16px;
}

.admin-list {
  display: grid;
  gap: 12px;
  align-self: start;
}

.admin-product {
  display: grid;
  grid-template-columns: 118px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  padding: 14px;
  background: #fbfdff;
}

.admin-product img {
  width: 118px;
  height: 92px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.admin-product strong,
.admin-product span,
.admin-product b {
  display: block;
}

.admin-product p {
  margin: 5px 0;
  color: #667085;
}

.admin-product span {
  color: #667085;
  font-size: 13px;
}

.admin-product b {
  margin-top: 8px;
  color: #2189ff;
}

.admin-product-actions {
  display: grid;
  gap: 8px;
  min-width: 132px;
}

.admin-product-actions button[data-action="image"] {
  border-color: #2189ff;
  color: #2189ff;
  background: #eff7ff;
}

.json-panel {
  margin-top: 20px;
}

.json-panel textarea {
  font-family: Consolas, "Courier New", monospace;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  background: var(--blue);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  transition: 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-section,
  .care-section,
  .consult-section,
  .commerce-detail {
    grid-template-columns: 1fr;
  }

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

  .section-heading.split {
    align-items: start;
    flex-direction: column;
  }

  .detail-floating-consult {
    grid-template-columns: auto auto 1fr 1fr;
    border-radius: 18px;
  }

  .detail-floating-consult label,
  .detail-floating-consult button {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 288px;
  }

  .desktop-nav {
    display: none;
  }

  .site-header {
    position: static;
  }

  .top-header,
  .nav-header {
    padding: 12px 14px;
  }

  .top-header {
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
  }

  .hs-logo-sub {
    font-size: 13px;
  }

  .hs-logo-main {
    font-size: 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .header-search {
    order: 3;
    width: 100%;
    min-width: 0;
  }

  .social-links {
    display: none;
  }

  .deploy-production-btn {
    order: 4;
    width: 100%;
  }

  .header-call {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-section {
    min-height: 860px;
    padding-top: 34px;
    background: #fff;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-copy {
    min-height: 462px;
  }

  .hero-stats,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    height: 300px;
    min-height: 300px;
  }

  section {
    padding: 54px 16px;
  }

  .site-footer {
    flex-direction: column;
  }

  .floating-consult {
    grid-template-columns: 1fr 1fr;
    border-radius: 18px;
  }

  .floating-consult strong,
  .floating-consult a,
  .agree {
    grid-column: span 2;
  }

  .floating-consult button {
    grid-column: span 2;
  }

  .privacy-consent-dialog {
    padding: 18px;
  }

  .privacy-consent-dialog h2 {
    font-size: 18px;
  }

  .privacy-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .admin-header,
  .admin-grid,
  .admin-product,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .admin-header,
  .detail-header {
    align-items: start;
    flex-direction: column;
  }

  .detail-info dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .detail-shell {
    padding: 24px 14px 280px;
  }

  .gallery-main img {
    padding: 22px;
  }

  .gallery-arrow {
    width: 38px;
    height: 38px;
  }

  .option-grid,
  .card-grid,
  .purchase-actions,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .final-price {
    align-items: start;
    flex-direction: column;
  }

  .final-price span,
  .final-price strong {
    text-align: left;
  }

  .promo-card {
    padding: 22px 16px;
  }

  .promo-card h2 {
    font-size: 28px;
  }

  .promo-card dl div {
    align-items: start;
    flex-direction: column;
    gap: 4px;
    text-align: left;
  }

  .detail-floating-consult {
    grid-template-columns: 1fr 1fr;
    bottom: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .detail-floating-consult strong,
  .detail-floating-consult a,
  .detail-floating-consult label,
  .detail-floating-consult button {
    grid-column: span 2;
  }

  .samsung-selected-result {
    grid-template-columns: 1fr;
  }

  .samsung-admin-summary,
  .samsung-admin-plan-head,
  .samsung-admin-plan p,
  .samsung-admin-plan li {
    align-items: start;
    flex-direction: column;
  }

  .samsung-admin-summary-meta {
    text-align: left;
  }
}


.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 20px;
  width: 100%;
  max-width: none;
  align-items: start;
}

.faq-list details {
  width: 100%;
}

@media (max-width: 1080px) {
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
}


.pdp-consult-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 5vh 18px 18px;
}

.pdp-consult-modal.is-open {
  display: flex;
}

body.is-pdp-consult-open {
  overflow: hidden;
}

.pdp-consult-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.42);
  cursor: pointer;
}

.pdp-consult-sheet {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(100%, 520px);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  border-radius: 20px;
  padding: 24px 20px 32px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
  animation: slideUpSheet 0.22s ease;
}

.pdp-consult-handle {
  width: 44px;
  height: 5px;
  margin: -12px auto 4px;
  border-radius: 999px;
  background: #e2e8f0;
}

.pdp-consult-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.pdp-consult-head h2 {
  margin: 2px 0 6px;
  color: #101828;
  font-size: 24px;
}

.pdp-consult-head p:last-child {
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.5;
}

.pdp-consult-close {
  width: 36px;
  height: 36px;
  border: 1px solid #d0d5dd;
  border-radius: 50%;
  color: #101828;
  font-size: 22px;
  line-height: 1;
  background: #fff;
  cursor: pointer;
}

.pdp-consult-summary {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  padding: 12px;
  background: #f8fafc;
}

.pdp-consult-summary img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.pdp-consult-summary strong,
.pdp-consult-summary span,
.pdp-consult-summary b {
  display: block;
}

.pdp-consult-summary strong {
  color: #101828;
  font-size: 16px;
}

.pdp-consult-summary span {
  margin-top: 5px;
  color: #667085;
  font-size: 12px;
}

.pdp-consult-summary b {
  margin-top: 8px;
  color: #2189ff;
}

.pdp-consult-sheet label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.pdp-consult-sheet label span {
  color: #98a2b3;
  font-size: 11px;
  font-weight: 500;
}

.pdp-consult-sheet input,
.pdp-consult-sheet textarea {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 12px 13px;
  color: #101828;
  font: inherit;
  background: #fff;
}

.pdp-consult-sheet textarea {
  resize: vertical;
}

.pdp-preferred-contact {
  display: grid;
  gap: 8px;
}

.pdp-preferred-contact[hidden] {
  display: none;
}

.pdp-preferred-label {
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.pdp-preferred-date {
  min-height: 44px;
}

.pdp-preferred-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.pdp-preferred-times label {
  display: block;
  cursor: pointer;
}

.pdp-preferred-times input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.pdp-consult-sheet .pdp-preferred-times span {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 0 10px;
  color: #344054;
  font-size: 12px;
  font-weight: 800;
  background: #fff;
}

.pdp-consult-sheet .pdp-preferred-times input:checked + span {
  border-color: #2189ff;
  color: #1428a0;
  background: #eef6ff;
}

.pdp-consult-agree {
  grid-template-columns: auto 1fr;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}

.pdp-consult-agree input {
  width: 18px;
  height: 18px;
  accent-color: #2189ff;
}

.pdp-consult-agree strong {
  color: #ef4444;
}

.pdp-consult-agree button {
  border: 0;
  padding: 0;
  color: #2189ff;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  background: transparent;
  cursor: pointer;
}

.pdp-consult-sheet .full {
  min-height: 52px;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

@keyframes slideUpSheet {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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


.gallery-upload,
.gallery-remove {
  min-height: 42px;
  padding: 0 12px;
  white-space: nowrap;
}

.gallery-remove {
  font-size: 14px;
  font-weight: 700;
}

.gallery-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.gallery-section-header span {
  font-weight: 700;
}

.gallery-clear {
  min-height: 34px;
  padding: 0 12px;
  white-space: nowrap;
}

/* DEV page white background test */
html,
body {
  background: #fff;
}

/* Quick consultation model selector */
.quick-consult-model-selector {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.42);
}

.quick-consult-model-panel {
  width: min(460px, 100%);
  max-height: 70vh;
  overflow-y: auto;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
}

.quick-consult-model-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.quick-consult-model-header > strong {
  font-size: 20px;
}

.quick-consult-model-header button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quick-consult-model-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.quick-consult-model-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 14px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.quick-consult-model-item:hover {
  border-color: #2189ff;
}

.quick-consult-model-item span {
  color: #667085;
  font-size: 13px;
}

/* Hide FAQ section */
.faq-section {
  display: none;
}

.product-card button.detail-link {
  border: 1px solid #d0d5dd;
  color: #101828;
  background: #fff;
}

.product-card button.detail-link {
  border: 1px solid #d0d5dd;
  color: #101828;
  background: #fff;
}

.desktop-nav a.is-active {
  color: #2189ff;
}

.pdp-preferred-times label:has(input:disabled) {
  background: #f2f4f7;
  border-color: #d0d5dd;
  color: #98a2b3;
  cursor: not-allowed;
}

.pdp-preferred-times label:has(input:disabled) span {
  color: #98a2b3;
}

.pdp-preferred-times label:has(input:disabled) input {
  cursor: not-allowed;
}

.header-search input {
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
}

.header-search input::-webkit-search-cancel-button,
.header-search input::-webkit-search-decoration {
  display: none;
  -webkit-appearance: none;
}

.search-suggestions {
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  padding: 8px 0;
  border: 1px solid #e5e7eb;
  border-radius: 0 0 14px 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 14px;
  border: 0;
  background: #fff;
}

.search-suggestion-item::before {
  content: "⌕";
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  flex: 0 0 26px;
  border-radius: 50%;
  color: #98a2b3;
  background: #f2f4f7;
  font-size: 14px;
}

.search-suggestion-item strong {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}

.search-suggestion-item small {
  margin: 0;
  color: #98a2b3;
  font-size: 11px;
}

.search-suggestion-item:hover {
  background: #f8fafc;
}

.header-search {
  position: relative;
  padding-right: 52px;
}

.header-search input {
  width: 100%;
  padding-right: 12px;
}


/* 검색 실행 버튼에만 absolute 적용 */
.header-search .search-suggestion-item {
  position: static;
  top: auto;
  right: auto;
  width: 100%;
  height: auto;
  padding: 14px 16px;
  transform: none;
}

#clearSearch {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  outline: 0;
  transform: translateY(-50%);
  background: transparent;
}

.search-suggestion-item::before {
  content: none;
  display: none;
}

.header-phone-small {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: #475467;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.header-phone-small:hover {
  color: #2189ff;
}

.header-phone-small span {
  font-size: 12px;
  font-weight: 500;
}

.header-phone-small strong {
  font-size: 14px;
  font-weight: 700;
}

.header-phone-small span {
  font-size: 12px;
  font-weight: 500;
}

.header-phone-small strong {
  font-size: 14px;
  font-weight: 700;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
  font-weight: 700;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 520px;
  padding: 18px;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.nav-dropdown-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-dropdown-group strong {
  margin-bottom: 6px;
  color: #101828;
  font-size: 15px;
}

.nav-dropdown-group a {
  padding: 8px 10px;
  border-radius: 8px;
  color: #475467;
  font-size: 14px;
  white-space: nowrap;
}

.nav-dropdown-group a:hover {
  background: #f5f9ff;
  color: #2189ff;
}

.nav-dropdown-menu {
  display: none;
  grid-template-columns: 180px 320px;
  min-width: 500px;
  padding: 0;
  overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}

.nav-category-list {
  padding: 10px;
  border-right: 1px solid #eaecf0;
  background: #f9fafb;
}

.nav-category-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #344054;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.nav-category-item:hover,
.nav-category-item.is-active {
  background: #eef6ff;
  color: #2189ff;
}

.nav-category-item::after {
  content: "›";
  font-size: 18px;
}

.nav-product-panels {
  padding: 12px;
  background: #fff;
}

.nav-product-panel {
  display: none;
}

.nav-product-panel.is-active {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-product-panel a {
  padding: 11px 12px;
  border-radius: 8px;
  color: #475467;
  font-size: 14px;
  font-weight: 500;
}

.nav-product-panel a:hover {
  background: #f5f9ff;
  color: #2189ff;
}

.nav-chevron {
  display: inline-block;
  margin-left: 2px;
  font-size: 13px;
  color: #667085;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
  color: #2189ff;
}

.nav-chevron {
  font-size: 16px;
}

.quick-model-select-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 12px;
  color: #344054;
  font-size: 14px;
  font-weight: 700;
}

.quick-model-select-label span {
  font-size: 11px;
  color: #667085;
}

.quick-model-mega-menu {
  display: grid;
  grid-template-columns: 170px minmax(280px, 1fr);
  overflow: hidden;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  background: #fff;
}

.quick-model-categories {
  padding: 10px;
  border-right: 1px solid #eaecf0;
  background: #f9fafb;
}

.quick-model-category {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #344054;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.quick-model-category:hover,
.quick-model-category.is-active {
  background: #eef6ff;
  color: #2189ff;
}

.quick-model-category-arrow {
  font-size: 18px;
}

.quick-model-products {
  min-height: 190px;
  padding: 10px;
}

.quick-model-panel {
  display: none;
}

.quick-model-panel.is-active {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quick-model-panel .quick-consult-model-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 12px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.quick-model-panel .quick-consult-model-item:hover {
  background: #f5f9ff;
}

.quick-model-panel .quick-consult-model-item strong {
  color: #101828;
  font-size: 14px;
}

.quick-model-panel .quick-consult-model-item span {
  color: #667085;
  font-size: 12px;
}

.quick-model-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 16px;
}

.quick-model-actions button {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.quick-model-none {
  border: 1px solid #d0d5dd;
  color: #344054;
  background: #fff;
}

.quick-model-none:hover,
.quick-model-none.is-selected {
  border-color: #2189ff;
  color: #2189ff;
  background: #f5f9ff;
}

.quick-model-submit {
  border: 1px solid #2189ff;
  color: #fff;
  background: #2189ff;
}

.quick-model-submit:hover {
  background: #1478e8;
}

.quick-consult-model-item.is-selected {
  background: #eef6ff !important;
  color: #2189ff;
}

/* 상세페이지 하단 빠른문의 - 메인페이지와 동일하게 */
.detail-floating-consult {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 40;
  display: grid;
  grid-template-columns:
    auto
    auto
    minmax(150px, auto)
    minmax(120px, 1fr)
    minmax(150px, 1fr)
    auto;
  gap: 12px;
  align-items: center;
  width: min(1000px, calc(100vw - 36px));
  min-height: 76px;
  padding: 14px 22px;
  border-radius: 999px;
  color: #fff;
  background: #2189ff;
  box-shadow: 0 18px 50px rgba(33, 137, 255, 0.34);
}

.detail-floating-consult strong,
.detail-floating-consult a {
  font-size: 18px;
  font-weight: 900;
}

.detail-floating-consult input[type="text"],
.detail-floating-consult input[type="tel"] {
  min-height: 46px;
  border: 0;
}

.detail-floating-consult .agree {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
}

.detail-floating-consult > button[type="submit"] {
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #101828;
  font-weight: 900;
  background: #fff;
  cursor: pointer;
}

/* 상단 카테고리 드롭다운 버튼 UI */
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #101828;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.nav-dropdown-trigger:hover,
.nav-dropdown:focus-within .nav-dropdown-trigger {
  color: #2189ff;
  background: #f5f9ff;
}

.nav-category-only-menu {
  grid-template-columns: 1fr;
  min-width: 220px;
  padding: 10px;
  gap: 6px;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.12);
}

.nav-category-filter-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #344054;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.nav-category-filter-item:hover {
  background: #eef6ff;
  color: #2189ff;
}

.nav-category-only-menu {
  display: flex !important;
  flex-direction: column;
  min-width: 220px;
  gap: 6px;
}

.nav-category-filter-item {
  width: 100%;
  white-space: nowrap;
  word-break: keep-all;
}

.nav-category-only-menu {
  gap: 2px;
  padding: 8px;
}

.nav-category-filter-item {
  min-height: 36px;
  padding: 0 12px;
}

/* 카테고리 드롭다운: 기본 닫힘 */
.nav-category-only-menu {
  display: none !important;
  flex-direction: column;
  min-width: 220px;
  gap: 2px;
  padding: 8px;
}

/* 전체 메뉴에 마우스를 올렸을 때만 표시 */
.nav-dropdown:hover .nav-category-only-menu,
.nav-dropdown:focus-within .nav-category-only-menu {
  display: flex !important;
}

/* 카테고리 버튼 간격 고정 */
.nav-category-filter-item {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  margin: 0;
  border: 0;
  border-radius: 8px;
  white-space: nowrap;
  line-height: 1.2;
}

/* 선택/hover 상태에서도 높이 변화 방지 */
.nav-category-filter-item:hover,
.nav-category-filter-item:focus,
.nav-category-filter-item.is-active {
  min-height: 38px;
  padding: 0 12px;
  margin: 0;
}

/* ===== 카테고리 드롭다운 최종 정리 ===== */

.nav-category-only-menu {
  position: absolute;
  top: 100%;
  left: 0;

  display: none !important;
  flex-direction: column !important;

  width: 190px;
  min-width: 190px !important;
  height: auto !important;

  padding: 6px !important;
  margin: 0 !important;
  gap: 0 !important;

  border: 1px solid #e4e7ec;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.12);

  overflow: hidden;
}

/* 마우스를 올렸을 때만 열림 */
.nav-dropdown:hover .nav-category-only-menu {
  display: flex !important;
}

/* focus 때문에 계속 열려있는 현상 제거 */
.nav-dropdown:focus-within .nav-category-only-menu {
  display: none !important;
}

/* 단, 전체 버튼 자체를 hover 중이면 정상 표시 */
.nav-dropdown:hover:focus-within .nav-category-only-menu {
  display: flex !important;
}

.nav-category-filter-item {
  display: flex !important;
  width: 100% !important;
  height: 38px !important;
  min-height: 38px !important;

  align-items: center;
  justify-content: flex-start;

  margin: 0 !important;
  padding: 0 12px !important;

  border: 0;
  border-radius: 8px;

  color: #344054;
  background: #fff;

  font-size: 14px;
  font-weight: 600;
  line-height: 1 !important;
  white-space: nowrap;

  cursor: pointer;
}

.nav-category-filter-item + .nav-category-filter-item {
  margin-top: 2px !important;
}

.nav-category-filter-item:hover {
  color: #2189ff;
  background: #eef6ff;
}

.nav-category-filter-item:focus {
  outline: none;
}

/* 상단 네비게이션 정렬 통일 */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-dropdown-trigger,
.nav-direct-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0;
  line-height: 1;
  vertical-align: middle;
  text-decoration: none;
}

.nav-dropdown {
  display: flex;
  align-items: center;
}

/* 제휴카드 상세페이지 */
.card-page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 100px;
}

.card-detail-section {
  width: 100%;
}

.card-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0 32px;
}

.card-tab {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid #d0d5dd;
  border-radius: 999px;
  background: #fff;
  color: #344054;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.card-tab:hover,
.card-tab.is-active {
  border-color: #2189ff;
  color: #2189ff;
  background: #eef6ff;
}

.card-content-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-summary {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 36px;
  border: 1px solid #eaecf0;
  border-radius: 24px;
  background: #fff;
}

.card-visual-placeholder {
  display: flex;
  min-height: 200px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #f2f4f7;
  font-size: 24px;
  font-weight: 800;
}

.card-company {
  margin: 0 0 8px;
  color: #667085;
  font-size: 14px;
  font-weight: 700;
}

.card-summary-copy h2 {
  margin: 0 0 14px;
  color: #101828;
  font-size: 32px;
}

.card-max-benefit {
  display: block;
  margin-bottom: 20px;
  color: #2189ff;
  font-size: 24px;
}

.card-key-benefits {
  margin: 0 0 24px;
  padding-left: 20px;
  color: #475467;
  line-height: 1.8;
}

.card-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card-info-box {
  padding: 24px;
  border: 1px solid #eaecf0;
  border-radius: 18px;
  background: #fff;
}

.card-info-box span,
.card-info-box small {
  display: block;
}

.card-info-box span {
  margin-bottom: 8px;
  color: #667085;
  font-size: 14px;
}

.card-info-box strong {
  display: block;
  margin-bottom: 6px;
  color: #101828;
  font-size: 22px;
}

.card-info-box small {
  color: #98a2b3;
}

.card-benefit-table-wrap,
.card-notice-box {
  padding: 28px;
  border: 1px solid #eaecf0;
  border-radius: 20px;
  background: #fff;
}

.card-benefit-table-wrap h3,
.card-notice-box h3 {
  margin: 0 0 20px;
}

.card-table-scroll {
  overflow-x: auto;
}

.card-benefit-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.card-benefit-table th,
.card-benefit-table td {
  padding: 16px;
  border-bottom: 1px solid #eaecf0;
  text-align: center;
}

.card-benefit-table th {
  background: #f9fafb;
  color: #344054;
}

.card-benefit-table td {
  color: #475467;
}

.card-notice-box ul {
  margin: 0;
  padding-left: 20px;
  color: #667085;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .card-summary {
    grid-template-columns: 1fr;
  }

  .card-info-grid {
    grid-template-columns: 1fr;
  }
}

.card-product-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 230px;
  object-fit: contain;
}

.card-visual-placeholder:has(.card-product-image) {
  background: #fff;
}

/* 카드 이미지 영역 세로형 */
.card-visual-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 260px);
  aspect-ratio: 5 / 8;
  min-height: auto;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid #eaecf0;
  border-radius: 24px;
  background: #fff;
}

.card-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 제휴카드 이미지 규격 통일 */
.card-visual-placeholder {
  width: 286px;
  height: 458px;
  min-height: 458px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e4e7ec;
  border-radius: 24px;
  background: #fff;
  box-sizing: border-box;
}

.card-product-image {
  width: 160px;
  height: 210px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  display: block;
}

/* 제휴카드 최종 이미지 규격 */
.card-visual-placeholder {
  width: 286px;
  height: 458px;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* 제휴카드 이미지 영역 테두리 제거 */
.card-visual-placeholder {
  border: none;
}

/* 제휴카드 유의사항 */
.card-caution-box {
  margin-top: 24px;
}

.card-caution-section + .card-caution-section {
  margin-top: 28px;
}

.card-caution-section h4 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}

.card-caution-section ul {
  margin: 0;
  padding-left: 20px;
}

.card-caution-section li {
  margin: 0 0 10px;
  line-height: 1.75;
  word-break: keep-all;
}

.card-caution-section li:last-child {
  margin-bottom: 0;
}

/* PDP subscription option summary */
.purchase-panel .subscription-preview-box {
  display: grid;
  gap: 7px;
  border: 1px solid #d9e8ff;
  border-radius: 8px;
  padding: 16px;
  background: #eef6ff;
}

.purchase-panel .subscription-preview-box span,
.purchase-panel .subscription-preview-box small {
  color: #475467;
  font-size: 13px;
  line-height: 1.5;
}

.purchase-panel .subscription-preview-box strong {
  color: #1262c4;
  font-size: 18px;
  line-height: 1.35;
}

.purchase-panel .samsung-subscription-box {
  gap: 14px;
  border-color: #d9e1ec;
  background: #f8fafc;
}

.purchase-panel .subscription-option-section {
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.purchase-panel .subscription-option-section legend {
  margin-bottom: 10px;
}

.purchase-panel .samsung-choice-buttons[data-samsung-options] {
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
}

.purchase-panel .samsung-choice-buttons button {
  position: relative;
  min-height: 52px;
  border-width: 1px;
  box-shadow: none;
}

.purchase-panel .samsung-choice-buttons button.is-selected {
  border-color: #2189ff;
  background: #eef6ff;
  box-shadow: inset 0 0 0 1px #2189ff;
}

.purchase-panel .subscription-price-row {
  border-top: 0;
  border: 1px solid #edf1f7;
}

.purchase-panel .subscription-selected-result {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 0;
  padding-top: 0;
}

.purchase-panel .samsung-selected-card.is-card-benefit {
  border-color: #b9dcff;
  background: #f5fbff;
}

.purchase-panel .affiliate-card-panel {
  border: 1px solid #d9e1ec;
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.purchase-panel .affiliate-card-select-wrap {
  display: grid;
  gap: 8px;
}

.purchase-panel .affiliate-card-select-wrap > span {
  color: #546179;
  font-size: 13px;
  font-weight: 800;
}

.purchase-panel .affiliate-card-select-wrap select {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfd8e6;
  border-radius: 8px;
  padding: 0 42px 0 14px;
  background: #fff;
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.purchase-panel .final-price {
  align-items: stretch;
  border: 1px solid #d9e1ec;
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.purchase-panel .final-price dl {
  min-width: 0;
  flex: 1;
}

.purchase-panel .final-price dl div {
  min-width: 0;
}

.purchase-panel .final-price > div {
  min-width: 180px;
  border-left: 1px solid #edf1f7;
  padding-left: 18px;
}

.purchase-panel .final-price [data-final-card-line],
.purchase-panel .final-price [data-final-card-applied-line] {
  color: #1262c4;
}

.purchase-panel .final-price strong[data-final-total] {
  font-size: 34px;
}

@media (max-width: 900px) {
  .purchase-panel .subscription-selected-result {
    grid-template-columns: 1fr;
  }

  .purchase-panel .final-price {
    align-items: start;
  }

  .purchase-panel .final-price > div {
    border-left: 0;
    padding-left: 0;
  }
}

/* 제휴카드 선택 상세정보 */
.affiliate-card-selected-info {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fafafa;
}

.affiliate-card-selected-info > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.affiliate-card-selected-info span {
  font-size: 13px;
}

.affiliate-card-selected-info strong {
  font-size: 14px;
  white-space: nowrap;
}

/* 최종 금액 영역 줄바꿈 방지 */
.final-price dl > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.final-price dt,
.final-price dd {
  white-space: nowrap;
}

.final-price dd {
  text-align: right;
  margin-left: auto;
}

.final-price > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.final-price > div span,
.final-price > div strong {
  white-space: nowrap;
}

/* 제휴카드 아래 선택 구독료 결과 */
.subscription-selected-result-mount {
  margin-top: 12px;
}

.subscription-selected-result {
  width: 100%;
}

.subscription-selected-result .samsung-selected-card {
  min-width: 0;
}

.subscription-selected-result .samsung-selected-card span,
.subscription-selected-result .samsung-selected-card strong {
  white-space: nowrap;
  word-break: keep-all;
}

/* 최종 금액 영역 열 정렬 */
.final-price dl {
  display: grid;
  grid-template-columns: 110px minmax(120px, 1fr);
  column-gap: 18px;
  row-gap: 8px;
}

.final-price dl > div {
  display: contents;
}

.final-price dt {
  white-space: nowrap;
  text-align: left;
}

.final-price dd {
  white-space: nowrap;
  text-align: left;
  margin: 0;
}

/* 최종 금액 영역 세로 구분선 제거 */
.final-price > div {
  border-left: 0 !important;
}

/* 구독 결제 요약 */
.subscription-payment-summary {
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid #dfe5ef;
  border-radius: 12px;
  background: #fff;
}

.subscription-payment-summary dl {
  display: grid;
  grid-template-columns: 110px minmax(120px, 1fr);
  column-gap: 18px;
  row-gap: 8px;
  margin: 0;
}

.subscription-payment-summary dl > div {
  display: contents;
}

.subscription-payment-summary dt,
.subscription-payment-summary dd {
  white-space: nowrap;
}

.subscription-payment-summary dd {
  margin: 0;
  text-align: left;
}

/* 최종 월 납입액 */
.final-price {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid #dfe5ef;
  border-radius: 12px;
}

.final-price span {
  white-space: nowrap;
}

.final-price strong {
  white-space: nowrap;
}

/* 선납금 선택에 따른 할인 내역 */
.subscription-discount-summary {
  display: grid;
  gap: 0;
  margin-top: 14px;
  padding: 14px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
}

.subscription-discount-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 38px;
}

.subscription-discount-row + .subscription-discount-row {
  border-top: 1px solid #eeeeee;
}

.subscription-discount-row span,
.subscription-discount-row strong {
  white-space: nowrap;
}

.subscription-discount-row span {
  font-size: 14px;
}

.subscription-discount-row strong {
  font-size: 14px;
}

.header-phone-small {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 상품 상세 좌측 갤러리 - commerce-detail 영역 안에서만 스크롤 고정 */
.commerce-detail {
  align-items: flex-start;
}

.commerce-detail .detail-gallery {
  position: sticky;
  top: 24px;
  align-self: flex-start;
}

.commerce-detail .detail-gallery {
  position: sticky;
  top: 96px;
  align-self: flex-start;
  height: fit-content;
}

/* 구독 결제 요약 - 엑셀형 전체 테두리 */
.subscription-payment-summary {
  padding: 0;
  overflow: hidden;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #fff;
}

.subscription-payment-summary dl {
  display: grid;
  grid-template-columns: 140px minmax(140px, 1fr);
  gap: 0;
  margin: 0;
}

.subscription-payment-summary dl > div {
  display: contents;
}

.subscription-payment-summary dt,
.subscription-payment-summary dd {
  margin: 0;
  padding: 11px 14px;
  border-bottom: 1px solid #d0d5dd;
  white-space: nowrap;
}

.subscription-payment-summary dt {
  border-right: 1px solid #d0d5dd;
  background: #f8f9fa;
  font-weight: 600;
}

.subscription-payment-summary dd {
  background: #fff;
  text-align: left;
}

.subscription-payment-summary dl > div:last-child dt,
.subscription-payment-summary dl > div:last-child dd {
  border-bottom: 0;
}

/* ==================================================
   MOBILE HOME TEST
   PC에서도 모바일 사이트처럼 보이도록 강제 적용
   ================================================== */

html {
  background: #f3f3f3;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: #f3f3f3;
}

/* 모바일 사이트 본체 */
.site-header,
main,
.site-footer {
  width: 600px !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  background: #fff !important;
}

/* ===== HEADER ===== */
.top-header {
  width: 100% !important;
  min-width: 0 !important;
  padding: 10px 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.brand {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.brand-mark {
  width: 38px !important;
  height: 38px !important;
  flex: 0 0 38px !important;
}

.hs-logo-main {
  font-size: 13px !important;
  white-space: nowrap !important;
}

.hs-logo-sub {
  font-size: 10px !important;
}

.header-search,
.social-links,
.header-phone-small,
.deploy-production-btn {
  display: none !important;
}

/* ===== NAV ===== */
.nav-header {
  width: 100% !important;
  min-width: 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  white-space: nowrap !important;
}

.nav-header nav {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  min-width: 100% !important;
  gap: 18px !important;
  padding: 12px 16px !important;
}

/* ===== HERO ===== */
.hero-section {
  display: block !important;
  grid-template-columns: none !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 24px 18px !important;
}

.hero-copy {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  display: block !important;
  margin: 0 !important;
}

.hero-copy .eyebrow {
  margin: 0 0 8px !important;
  font-size: 11px !important;
  line-height: 1.3 !important;
}

.hero-copy h1 {
  width: 100% !important;
  margin: 0 !important;
  font-size: 24px !important;
  line-height: 1.35 !important;
  white-space: normal !important;
  word-break: keep-all !important;
}

.hero-copy .hero-text {
  margin: 12px 0 0 !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  white-space: normal !important;
  word-break: keep-all !important;
}

.hero-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin-top: 16px !important;
}

.hero-actions a {
  width: 100% !important;
  min-width: 0 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.hero-stats {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
  width: 100% !important;
  margin-top: 18px !important;
}

.hero-stats > div {
  min-width: 0 !important;
  text-align: center !important;
}

.hero-stats dt {
  font-size: 17px !important;
}

.hero-stats dd {
  margin: 4px 0 0 !important;
  font-size: 10px !important;
  line-height: 1.4 !important;
  word-break: keep-all !important;
}

/* ===== 상품 영역 ===== */
.product-grid,
.products-grid,
.product-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.product-card {
  min-width: 0 !important;
  width: 100% !important;
}

/* ===== 일반 섹션 폭 ===== */
section,
.section-inner,
.container,
.content-inner {
  min-width: 0 !important;
  max-width: 100% !important;
}

/* ===== 상담/고정바 ===== */
.quick-consult,
.floating-consult,
.consult-bar {
  width: 600px !important;
  max-width: calc(100vw - 20px) !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}

/* ===== MOBILE 600 LAYOUT FIX ===== */

/* 추천상품 */
body.mobile-test-page .product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

body.mobile-test-page .product-card {
  padding: 12px !important;
  border-radius: 14px !important;
}

body.mobile-test-page .product-card img {
  width: 100% !important;
  height: 150px !important;
  object-fit: contain !important;
}

body.mobile-test-page .product-card h3,
body.mobile-test-page .product-card .product-name {
  font-size: 15px !important;
  line-height: 1.35 !important;
  word-break: keep-all !important;
}

body.mobile-test-page .product-card .product-price,
body.mobile-test-page .product-card strong {
  font-size: 18px !important;
  line-height: 1.3 !important;
}

body.mobile-test-page .product-card p,
body.mobile-test-page .product-card small {
  font-size: 12px !important;
  line-height: 1.45 !important;
}

/* 상품 버튼 */
body.mobile-test-page .product-card .product-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 6px !important;
}

body.mobile-test-page .product-card .product-actions a,
body.mobile-test-page .product-card .product-actions button {
  width: 100% !important;
  min-width: 0 !important;
  padding: 10px 6px !important;
  font-size: 12px !important;
  white-space: nowrap !important;
}

/* 메인 콘텐츠 */
body.mobile-test-page main {
  width: 600px !important;
  max-width: 100% !important;
  overflow: visible !important;
}

/* 각 섹션 */
body.mobile-test-page section {
  width: 100% !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
}

/* 하단 상담바 */
body.mobile-test-page .detail-floating-consult,
body.mobile-test-page .floating-consult,
body.mobile-test-page .quick-consult,
body.mobile-test-page .consult-bar {
  width: 560px !important;
  max-width: calc(100vw - 24px) !important;
  padding: 10px 12px !important;
  gap: 8px !important;
}

body.mobile-test-page .detail-floating-consult input,
body.mobile-test-page .floating-consult input,
body.mobile-test-page .quick-consult input,
body.mobile-test-page .consult-bar input {
  min-width: 0 !important;
  width: 100% !important;
}

/* 불필요한 가로 스크롤 방지 */
body.mobile-test-page {
  overflow-x: hidden !important;
}

/* 모바일 테스트 페이지 바깥 영역도 흰색 */
html,
body.mobile-test-page,
body.mobile-test-page main {
  background: #fff !important;
}

body.mobile-test-page {
  margin: 0 !important;
}

/* ===== MOBILE CONSULT BAR COMMON ===== */
body.mobile-test-page .detail-floating-consult,
body.mobile-test-page .floating-consult,
body.mobile-test-page .quick-consult,
body.mobile-test-page .consult-bar {
  width: 520px !important;
  max-width: calc(100vw - 32px) !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  padding: 8px 10px !important;
  gap: 6px !important;
  border-radius: 22px !important;
  box-sizing: border-box !important;
}

body.mobile-test-page .detail-floating-consult strong,
body.mobile-test-page .floating-consult strong,
body.mobile-test-page .quick-consult strong,
body.mobile-test-page .consult-bar strong {
  font-size: 11px !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
}

body.mobile-test-page .detail-floating-consult input,
body.mobile-test-page .floating-consult input,
body.mobile-test-page .quick-consult input,
body.mobile-test-page .consult-bar input {
  min-width: 0 !important;
  height: 38px !important;
  padding: 0 10px !important;
  font-size: 11px !important;
}

body.mobile-test-page .detail-floating-consult button,
body.mobile-test-page .floating-consult button,
body.mobile-test-page .quick-consult button,
body.mobile-test-page .consult-bar button {
  min-width: 62px !important;
  height: 38px !important;
  padding: 0 10px !important;
  font-size: 11px !important;
}

/* ===== MOBILE CONSULT BAR FINAL ===== */
body.mobile-test-page .detail-floating-consult,
body.mobile-test-page .floating-consult,
body.mobile-test-page .quick-consult,
body.mobile-test-page .consult-bar {
  width: 540px !important;
  max-width: calc(100vw - 24px) !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr 90px !important;
  gap: 6px !important;
  padding: 8px 10px !important;
  border-radius: 18px !important;
  box-sizing: border-box !important;
}

/* 전화번호 */
body.mobile-test-page .detail-floating-consult strong,
body.mobile-test-page .floating-consult strong,
body.mobile-test-page .quick-consult strong,
body.mobile-test-page .consult-bar strong {
  grid-column: 1 / 2 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

/* 개인정보 동의 */
body.mobile-test-page .detail-floating-consult .agree,
body.mobile-test-page .floating-consult .agree,
body.mobile-test-page .quick-consult .agree,
body.mobile-test-page .consult-bar .agree {
  grid-column: 2 / 4 !important;
  font-size: 10px !important;
  white-space: nowrap !important;
}

/* 일반 입력 */
body.mobile-test-page .detail-floating-consult input[type="text"],
body.mobile-test-page .detail-floating-consult input[type="tel"],
body.mobile-test-page .floating-consult input[type="text"],
body.mobile-test-page .floating-consult input[type="tel"],
body.mobile-test-page .quick-consult input[type="text"],
body.mobile-test-page .quick-consult input[type="tel"],
body.mobile-test-page .consult-bar input[type="text"],
body.mobile-test-page .consult-bar input[type="tel"] {
  width: 100% !important;
  min-width: 0 !important;
  height: 36px !important;
  padding: 0 10px !important;
  font-size: 11px !important;
  box-sizing: border-box !important;
}

/* 체크박스 크기 복구 */
body.mobile-test-page .detail-floating-consult input[type="checkbox"],
body.mobile-test-page .floating-consult input[type="checkbox"],
body.mobile-test-page .quick-consult input[type="checkbox"],
body.mobile-test-page .consult-bar input[type="checkbox"] {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  padding: 0 !important;
}

/* 신청 버튼 */
body.mobile-test-page .detail-floating-consult button,
body.mobile-test-page .floating-consult button,
body.mobile-test-page .quick-consult button,
body.mobile-test-page .consult-bar button {
  width: 90px !important;
  min-width: 90px !important;
  height: 36px !important;
  padding: 0 8px !important;
  font-size: 11px !important;
  white-space: nowrap !important;
}

/* ===== CONSULT BAR TWO ROW FINAL ===== */
body.mobile-test-page .detail-floating-consult,
body.mobile-test-page .floating-consult,
body.mobile-test-page .quick-consult,
body.mobile-test-page .consult-bar {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  grid-template-rows: auto 36px !important;
  column-gap: 8px !important;
  row-gap: 0 !important;
  align-items: center !important;

  width: 540px !important;
  max-width: calc(100vw - 24px) !important;
  padding: 6px 10px !important;
  box-sizing: border-box !important;
}

/* 구독문의 번호 */
body.mobile-test-page .detail-floating-consult strong,
body.mobile-test-page .floating-consult strong,
body.mobile-test-page .quick-consult strong,
body.mobile-test-page .consult-bar strong {
  grid-column: 1 !important;
  grid-row: 1 !important;
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

/* 개인정보 동의 */
body.mobile-test-page .detail-floating-consult .agree,
body.mobile-test-page .floating-consult .agree,
body.mobile-test-page .quick-consult .agree,
body.mobile-test-page .consult-bar .agree {
  grid-column: 2 !important;
  grid-row: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 10px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

/* 아래 입력줄 */
body.mobile-test-page .detail-floating-consult input[type="text"],
body.mobile-test-page .floating-consult input[type="text"],
body.mobile-test-page .quick-consult input[type="text"],
body.mobile-test-page .consult-bar input[type="text"] {
  grid-column: 1 !important;
  grid-row: 2 !important;
}

body.mobile-test-page .detail-floating-consult input[type="tel"],
body.mobile-test-page .floating-consult input[type="tel"],
body.mobile-test-page .quick-consult input[type="tel"],
body.mobile-test-page .consult-bar input[type="tel"] {
  grid-column: 1 / 2 !important;
  grid-row: 2 !important;
  margin-left: 43% !important;
  width: 57% !important;
}

body.mobile-test-page .detail-floating-consult button,
body.mobile-test-page .floating-consult button,
body.mobile-test-page .quick-consult button,
body.mobile-test-page .consult-bar button {
  grid-column: 2 !important;
  grid-row: 2 !important;
  margin: 0 !important;
}

/* ===== CONSULT BAR 2 ROW CLEAN ===== */
body.mobile-test-page .floating-consult {
  width: 540px !important;
  max-width: calc(100vw - 24px) !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;

  display: grid !important;
  grid-template-columns: auto auto 1fr auto !important;
  grid-template-rows: auto 36px !important;

  column-gap: 6px !important;
  row-gap: 0 !important;

  align-items: center !important;
  padding: 6px 10px !important;
  box-sizing: border-box !important;
}

/* 윗줄 */
body.mobile-test-page .floating-consult > strong {
  grid-column: 1 !important;
  grid-row: 1 !important;
  margin: 0 !important;
  white-space: nowrap !important;
  font-size: 11px !important;
}

body.mobile-test-page .floating-consult > a {
  grid-column: 2 !important;
  grid-row: 1 !important;
  margin: 0 !important;
  white-space: nowrap !important;
  font-size: 11px !important;
}

body.mobile-test-page .floating-consult > .agree {
  grid-column: 3 / 5 !important;
  grid-row: 1 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;

  gap: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

body.mobile-test-page .floating-consult > .agree input[type="checkbox"] {
  width: 13px !important;
  height: 13px !important;
  min-width: 13px !important;
  margin: 0 !important;
}

body.mobile-test-page .floating-consult .privacy-consent-link {
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 10px !important;
  line-height: 1 !important;
  background: transparent !important;
}

/* 아랫줄 */
body.mobile-test-page .floating-consult > input[type="text"] {
  grid-column: 1 / 3 !important;
  grid-row: 2 !important;
}

body.mobile-test-page .floating-consult > input[type="tel"] {
  grid-column: 3 !important;
  grid-row: 2 !important;
}

body.mobile-test-page .floating-consult > button[type="submit"] {
  grid-column: 4 !important;
  grid-row: 2 !important;
}

body.mobile-test-page .floating-consult > input[type="text"],
body.mobile-test-page .floating-consult > input[type="tel"] {
  width: 100% !important;
  min-width: 0 !important;
  height: 34px !important;
  padding: 0 9px !important;
  box-sizing: border-box !important;
  font-size: 11px !important;
}

body.mobile-test-page .floating-consult > button[type="submit"] {
  width: 74px !important;
  min-width: 74px !important;
  height: 34px !important;
  padding: 0 8px !important;
  font-size: 11px !important;
  white-space: nowrap !important;
}

body.mobile-test-page .floating-consult {
  grid-template-columns: auto auto 1fr auto !important;
  grid-template-rows: 20px 34px !important;
  row-gap: 2px !important;
}

body.mobile-test-page .floating-consult > input[type="text"] {
  grid-column: 1 / 3 !important;
  width: 100% !important;
}

body.mobile-test-page .floating-consult > input[type="tel"] {
  grid-column: 3 !important;
  width: 100% !important;
  margin: 0 !important;
}

body.mobile-test-page .floating-consult > button[type="submit"] {
  grid-column: 4 !important;
  width: 88px !important;
  min-width: 88px !important;
}

body.mobile-test-page .floating-consult > .agree {
  justify-self: end !important;
}

/* ===== CONSULT CALL BUTTON ===== */
body.mobile-test-page .floating-consult > .consult-call-btn {
  grid-column: 1 / 3 !important;
  grid-row: 1 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-self: start !important;
  gap: 5px !important;

  width: auto !important;
  height: 24px !important;
  padding: 0 8px !important;

  border: 1px solid rgba(255,255,255,.65) !important;
  border-radius: 6px !important;

  background: rgba(255,255,255,.14) !important;
  color: #fff !important;

  font-size: 10px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

body.mobile-test-page .floating-consult > .consult-call-btn svg {
  width: 13px !important;
  height: 13px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
}

body.mobile-test-page .floating-consult > .agree {
  grid-column: 3 / 5 !important;
  grid-row: 1 !important;
}

body.mobile-test-page .mobile-floating-call-btn {
  position: fixed !important;
  left: 50% !important;
  bottom: 82px !important;
  transform: translateX(-50%) !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  height: 30px !important;
  padding: 0 12px !important;

  border-radius: 8px !important;
  background: #111827 !important;
  color: #fff !important;

  font-size: 11px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  white-space: nowrap !important;

  z-index: 1001 !important;
}

body.mobile-test-page .mobile-floating-call-btn {
  position: fixed !important;
  right: calc((100vw - min(600px, 100vw)) / 2 + 18px) !important;
  bottom: 86px !important;

  width: 44px !important;
  height: 36px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 12px !important;
  background: #2189ff !important;
  box-shadow: 0 6px 16px rgba(33,137,255,.28) !important;

  color: #fff !important;
  text-decoration: none !important;
  z-index: 1002 !important;
}

body.mobile-test-page .mobile-floating-call-btn svg {
  width: 18px !important;
  height: 18px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
}

/* 전화 버튼: 상담 신청 버튼 우측 상단 */
body.mobile-test-page .mobile-floating-call-btn {
  left: auto !important;
  transform: none !important;

  right: calc((100vw - min(600px, 100vw)) / 2 + 18px) !important;
  bottom: 82px !important;

  width: 44px !important;
  height: 36px !important;
}

body.mobile-test-page .mobile-floating-call-btn {
  bottom: 102px !important;
}

body.mobile-test-page .floating-consult {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 82px !important;
}

body.mobile-test-page .floating-consult > input[type="text"],
body.mobile-test-page .floating-consult > input[type="tel"] {
  min-width: 0 !important;
  width: 100% !important;
  font-size: 10px !important;
  padding: 0 8px !important;
  box-sizing: border-box !important;
}

body.mobile-test-page .floating-consult > button[type="submit"] {
  width: 82px !important;
  min-width: 82px !important;
}

/* ===== CONSULT INPUT WIDTH BALANCE ===== */
body.mobile-test-page .floating-consult {
  grid-template-columns: 90px minmax(0, 1fr) 82px !important;
  grid-template-rows: 18px 36px !important;
  column-gap: 6px !important;
  row-gap: 2px !important;
}

/* 개인정보 동의: 이름 위쪽 */
body.mobile-test-page .floating-consult > .agree {
  grid-column: 1 / 4 !important;
  grid-row: 1 !important;
  justify-self: start !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 이름 좁게 */
body.mobile-test-page .floating-consult > input[type="text"] {
  grid-column: 1 !important;
  grid-row: 2 !important;
  width: 90px !important;
  min-width: 90px !important;
}

/* 전화번호 넓게 */
body.mobile-test-page .floating-consult > input[type="tel"] {
  grid-column: 2 !important;
  grid-row: 2 !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

/* 신청하기 */
body.mobile-test-page .floating-consult > button[type="submit"] {
  grid-column: 3 !important;
  grid-row: 2 !important;
  width: 82px !important;
  min-width: 82px !important;
}

body.mobile-test-page .floating-consult {
  grid-template-rows: 20px 36px !important;
  row-gap: 6px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

body.mobile-test-page .floating-consult > .agree {
  align-self: center !important;
}

/* ===== MOBILE PRODUCT HEADING ONE LINE ===== */
body.mobile-test-page .section-heading.split {
  display: block !important;
}

body.mobile-test-page .section-heading.split > div:first-child {
  width: 100% !important;
}

body.mobile-test-page .section-heading.split h2 {
  font-size: 28px !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
  margin: 0 !important;
}

/* 카테고리 탭 한 줄 */
body.mobile-test-page .section-heading.split .tabs {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 6px !important;
  width: 100% !important;
  margin-top: 12px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  white-space: nowrap !important;
  scrollbar-width: none !important;
}

body.mobile-test-page .section-heading.split .tabs::-webkit-scrollbar {
  display: none !important;
}

body.mobile-test-page .section-heading.split .tab {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  font-size: 12px !important;
  padding: 9px 12px !important;
}

/* ===== REAL MOBILE PRODUCT TEXT ===== */

/* 상품명 잘림 방지 */
body.mobile-test-page .product-card h3,
body.mobile-test-page .product-card h3 a,
body.mobile-test-page .product-card .product-name {
  width: 100% !important;
  max-width: 100% !important;

  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;

  word-break: keep-all !important;
  overflow-wrap: anywhere !important;

  height: auto !important;
  max-height: none !important;

  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
}

/* 실제 모바일 */
@media (max-width: 430px) {
  body.mobile-test-page .product-grid {
    gap: 8px !important;
  }

  body.mobile-test-page .product-card {
    padding: 9px !important;
  }

  body.mobile-test-page .product-card h3,
  body.mobile-test-page .product-card h3 a {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  body.mobile-test-page .product-card p,
  body.mobile-test-page .product-card .sku,
  body.mobile-test-page .product-card .points {
    font-size: 10px !important;
    line-height: 1.4 !important;
  }

  body.mobile-test-page .product-card .price {
    font-size: 16px !important;
  }
}

/* 작은 모바일 */
@media (max-width: 390px) {
  body.mobile-test-page .product-card h3,
  body.mobile-test-page .product-card h3 a {
    font-size: 12px !important;
  }

  body.mobile-test-page .product-card {
    padding: 8px !important;
  }
}

/* ===== MOBILE FOOTER HORIZONTAL TEXT ===== */
body.mobile-test-page .site-footer {
  display: block !important;
  width: 600px !important;
  max-width: 100% !important;
  padding: 24px 18px 120px !important;
  box-sizing: border-box !important;
}

body.mobile-test-page .site-footer > div,
body.mobile-test-page .site-footer .footer-business,
body.mobile-test-page .site-footer address {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  margin: 0 0 14px !important;
}

body.mobile-test-page .site-footer p,
body.mobile-test-page .site-footer address {
  font-size: 11px !important;
  line-height: 1.7 !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

body.mobile-test-page .site-footer p {
  margin: 0 0 3px !important;
}

/* 너무 좁은 칸 분할 제거 */
body.mobile-test-page .site-footer {
  grid-template-columns: none !important;
  column-gap: 0 !important;
}

/* 긴 사업자/주소 문구는 정상적인 문장 단위로만 줄바꿈 */
body.mobile-test-page .footer-business p,
body.mobile-test-page .site-footer address {
  white-space: normal !important;
}

/* ===== MOBILE FOOTER TEXT COLOR ===== */
body.mobile-test-page .site-footer,
body.mobile-test-page .site-footer p,
body.mobile-test-page .site-footer address,
body.mobile-test-page .site-footer a {
  color: #111 !important;
}

/* ===== MOBILE TEST: 상단 카테고리 드롭다운 잘림 수정 ===== */

body.mobile-test-page .site-header {
  position: relative !important;
  z-index: 1000 !important;
  overflow: visible !important;
}

body.mobile-test-page .nav-header {
  position: relative !important;
  z-index: 1100 !important;

  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
}

body.mobile-test-page .desktop-nav {
  position: relative !important;
  width: 100% !important;
  overflow: visible !important;
}

body.mobile-test-page .nav-dropdown {
  position: relative !important;
  z-index: 1200 !important;
  overflow: visible !important;
}

body.mobile-test-page .nav-category-only-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;

  z-index: 9999 !important;

  width: 190px !important;
  min-width: 190px !important;

  background: #fff !important;
}

/* ===== MOBILE TEST: 상담 모델 선택 이름 잘림 수정 ===== */

body.mobile-test-page .quick-consult-model-panel {
  width: min(520px, calc(100vw - 32px)) !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

body.mobile-test-page .quick-model-mega-menu {
  width: 100% !important;
  grid-template-columns: 115px minmax(0, 1fr) !important;
}

body.mobile-test-page .quick-model-products,
body.mobile-test-page .quick-model-panel {
  min-width: 0 !important;
}

body.mobile-test-page .quick-model-panel .quick-consult-model-item {
  min-width: 0 !important;
  width: 100% !important;
}

body.mobile-test-page .quick-model-panel .quick-consult-model-item strong {
  display: block !important;
  min-width: 0 !important;
  width: 100% !important;

  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;

  line-height: 1.4 !important;
}

/* ===== MOBILE TEST: 통신판매업 상세 조회 링크 버튼화 ===== */

body.mobile-test-page .footer-business a[href*="ftc.go.kr"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin-left: 6px !important;
  padding: 4px 8px !important;

  border-radius: 6px !important;
  background: #2189ff !important;
  color: #fff !important;

  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;

  cursor: pointer !important;
}

body.mobile-test-page .footer-business a[href*="ftc.go.kr"]:hover {
  background: #1478e8 !important;
}

/* ===== MOBILE TEST: 상세 조회 버튼 최소 크기 ===== */
body.mobile-test-page .footer-business a[href*="ftc.go.kr"] {
  padding: 2px 4px !important;
  margin-left: 4px !important;

  width: auto !important;
  min-width: 0 !important;
  height: auto !important;

  font-size: 10px !important;
  line-height: 1.1 !important;

  border-radius: 4px !important;
}



/* ===== DB 기반 이미지 전용 메인 배너 ===== */

.hero-section.managed-hero-section {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #fff !important;
}

.managed-hero-stage {
  width: 100%;
}

.managed-hero-link {
  display: block;
  width: 100%;
  text-decoration: none;
}

.managed-hero-link img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: cover;
}

.managed-hero-indicator {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 5;

  display: flex;
  align-items: center;
  gap: 7px;

  padding: 7px 10px;
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.45);
}

.managed-hero-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.managed-hero-dot.is-active {
  background: #fff;
}

.managed-hero-count {
  margin-left: 3px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

/* ===== MOBILE CONSULT PLACEHOLDER SIZE UPDATE ===== */

body.mobile-test-page .floating-consult > input[type="text"]::placeholder,
body.mobile-test-page .floating-consult > input[type="tel"]::placeholder {
  font-size: 15px !important;
}

/* ===== MOBILE CONSULT CONSENT + CALL SCROLL UPDATE ===== */

/* 모바일 개인정보 동의: 10px → 20px */
body.mobile-test-page .floating-consult > .agree,
body.mobile-test-page .floating-consult .privacy-consent-link {
  font-size: 20px !important;
}

/* 전화 버튼 숨김/표시 애니메이션 */
body.mobile-test-page .mobile-floating-call-btn {
  opacity: 1;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

body.mobile-test-page .mobile-floating-call-btn.is-scroll-hidden {
  pointer-events: none !important;
  opacity: 0 !important;
  transform: translateY(18px) !important;
}

/* ===== PC VIEW: 하단 상담바 개인정보 동의 크기 통일 ===== */
@media (min-width: 601px) {
  body.mobile-test-page .floating-consult > .agree,
  body.mobile-test-page .floating-consult .privacy-consent-link {
    font-size: 9px !important;
  }
}

/* ===== PC VIEW: MAIN CONSULT BAR EXACT UNIFY ===== */
@media (min-width: 601px) {
  body.mobile-test-page .floating-consult {
    width: 540px !important;
    max-width: calc(100vw - 24px) !important;
    grid-template-columns: 90px minmax(0, 1fr) 82px !important;
    grid-template-rows: 20px 36px !important;
    column-gap: 6px !important;
    row-gap: 6px !important;
    padding: 8px 10px !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
  }

  body.mobile-test-page .floating-consult > .agree {
    grid-column: 1 / 4 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 4px !important;
    font-size: 9px !important;
    line-height: 1 !important;
  }

  body.mobile-test-page .floating-consult .privacy-consent-link {
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
  }

  body.mobile-test-page .floating-consult > .agree input[type="checkbox"] {
    width: 13px !important;
    height: 13px !important;
    min-width: 13px !important;
    margin: 0 !important;
  }

  body.mobile-test-page .floating-consult > input[type="text"] {
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 90px !important;
    height: 36px !important;
  }

  body.mobile-test-page .floating-consult > input[type="tel"] {
    grid-column: 2 !important;
    grid-row: 2 !important;
    width: 100% !important;
    height: 36px !important;
    margin: 0 !important;
  }

  body.mobile-test-page .floating-consult > button[type="submit"] {
    grid-column: 3 !important;
    grid-row: 2 !important;
    width: 82px !important;
    min-width: 82px !important;
    height: 36px !important;
  }
}

/* ===== MAIN CONSULT BAR ABSOLUTE FINAL ===== */
@media (min-width: 601px) {
  body.mobile-test-page .floating-consult {
    width: 540px !important;
    height: 78px !important;
    min-height: 78px !important;

    display: grid !important;
    grid-template-columns: 90px minmax(0, 1fr) 82px !important;
    grid-template-rows: 20px 36px !important;

    column-gap: 6px !important;
    row-gap: 6px !important;

    padding: 8px 10px !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
  }

  body.mobile-test-page .floating-consult > .agree {
    grid-column: 1 / 4 !important;
    grid-row: 1 !important;
    justify-self: start !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 4px !important;

    font-size: 9px !important;
    line-height: 1 !important;
  }

  body.mobile-test-page .floating-consult .privacy-consent-link {
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    font-size: 9px !important;
    line-height: 1 !important;
  }

  body.mobile-test-page .floating-consult > input[type="text"],
  body.mobile-test-page .floating-consult > input[type="tel"] {
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 10px !important;
    font-size: 15px !important;
    box-sizing: border-box !important;
  }

  body.mobile-test-page .floating-consult > input[type="text"] {
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 90px !important;
  }

  body.mobile-test-page .floating-consult > input[type="tel"] {
    grid-column: 2 !important;
    grid-row: 2 !important;
    width: 100% !important;
    margin: 0 !important;
  }

  body.mobile-test-page .floating-consult > button[type="submit"] {
    grid-column: 3 !important;
    grid-row: 2 !important;

    width: 82px !important;
    min-width: 82px !important;
    height: 36px !important;
    min-height: 36px !important;

    padding: 0 !important;
    font-size: 11px !important;
    border-radius: 999px !important;
    box-sizing: border-box !important;
  }
}

/* 메인 상담바 스크롤 숨김 */
body.mobile-test-page .floating-consult {
  opacity: 1;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

body.mobile-test-page .floating-consult.is-scroll-hidden {
  pointer-events: none !important;
  opacity: 0 !important;
  transform: translateX(-50%) translateY(18px) !important;
}

/* PC VIEW: 개인정보 동의 1.5배 확대 */
@media (min-width: 601px) {
  body.mobile-test-page .floating-consult > .agree,
  body.mobile-test-page .floating-consult .privacy-consent-link {
    font-size: 14px !important;
  }
}

/* ===== MOBILE CONSULT FINAL SIZE ===== */
@media (max-width: 600px) {
  body.mobile-test-page .floating-consult > .agree,
  body.mobile-test-page .floating-consult .privacy-consent-link {
    font-size: 16px !important;
  }

  body.mobile-test-page .floating-consult > .agree input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
  }
}

/* ===== PC TEST: 개인정보 동의 팝업 상세페이지와 동일 ===== */
@media (min-width: 601px) {
  body.mobile-test-page .privacy-consent-modal > .privacy-consent-dialog {
    width: min(680px, 100%) !important;
    max-width: 680px !important;
    padding: 24px !important;
    box-sizing: border-box !important;
  }
}

/* ===== PC CARE SECTION -> YOUTUBE CARD ===== */
@media (min-width: 601px) {
  body.mobile-test-page .care-section {
    display: block !important;
  }

  body.mobile-test-page .care-section .sv-card {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;

    color: inherit;
    text-decoration: none;

    border-radius: 18px;
    overflow: hidden;
    background: #fff;

    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }

  body.mobile-test-page .care-section .sv-thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
  }

  body.mobile-test-page .care-section .sv-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  body.mobile-test-page .care-section .sv-yt-badge {
    position: absolute;
    top: 14px;
    left: 14px;

    padding: 6px 10px;
    border-radius: 999px;

    background: rgba(0,0,0,.72);
    color: #fff;

    font-size: 13px;
    font-weight: 700;
  }

  body.mobile-test-page .care-section .sv-play {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 64px;
    height: 64px;

    transform: translate(-50%, -50%);

    border-radius: 50%;
    background: rgba(0,0,0,.65);
  }

  body.mobile-test-page .care-section .sv-play::after {
    content: "";
    position: absolute;
    left: 26px;
    top: 20px;

    width: 0;
    height: 0;

    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #fff;
  }

  body.mobile-test-page .care-section .sv-meta {
    padding: 18px 20px 20px;
  }

  body.mobile-test-page .care-section .sv-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
  }

  body.mobile-test-page .care-section .sv-publisher {
    margin-top: 6px;
    font-size: 14px;
    color: #666;
  }
}

/* ===== YOUTUBE PUBLISHER LINK ===== */
body.mobile-test-page .care-section .sv-publisher {
  display: inline-block;
  color: #666;
  text-decoration: none;
}

body.mobile-test-page .care-section .sv-publisher:hover {
  text-decoration: underline;
}

/* ===== YOUTUBE CARD LINK STRUCTURE FIX ===== */
body.mobile-test-page .care-section .sv-video-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

body.mobile-test-page .care-section .sv-title {
  padding: 18px 20px 0;
}

body.mobile-test-page .care-section .sv-publisher {
  margin: 6px 20px 20px;
}

/* ===== MOBILE YOUTUBE HEIGHT 1.5X ===== */
@media (max-width: 600px) {
  body.mobile-test-page .care-section .sv-thumb {
    width: 100% !important;
    aspect-ratio: auto !important;
    height: calc((100vw - 36px) * 0.84375) !important;
    max-height: none !important;
  }

  body.mobile-test-page .care-section .sv-thumb img,
  body.mobile-test-page .care-section .sv-thumb iframe {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
}



/* ===== MAIN HERO FINAL : 1200x400 / 3:1 ===== */
body.mobile-test-page .managed-hero-stage {
  width: 100% !important;
  aspect-ratio: 3 / 1 !important;
  overflow: hidden !important;
  background: #fff !important;
}

body.mobile-test-page .managed-hero-link {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

body.mobile-test-page .managed-hero-link img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #fff !important;
}

/* ===== MAIN HERO FILL AREA ===== */
body.mobile-test-page .managed-hero-link img {
  object-fit: cover !important;
  background: #fff !important;
}

/* ===== MAIN HERO FINAL 16:9 ===== */
body.mobile-test-page .managed-hero-stage {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
}

body.mobile-test-page .managed-hero-link,
body.mobile-test-page .managed-hero-link img {
  width: 100% !important;
  height: 100% !important;
}

body.mobile-test-page .managed-hero-link img {
  object-fit: cover !important;
}

/* ===== MANAGED HERO HEIGHT RESET ===== */
body.mobile-test-page .hero-section.managed-hero-section {
  min-height: 0 !important;
  height: auto !important;
}

/* ===== MOBILE YOUTUBE TITLE FINAL ===== */
@media (max-width: 600px) {
  body.mobile-test-page .care-section .sv-title {
    padding: 14px 16px 0 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
  }

  body.mobile-test-page .care-section .sv-publisher {
    margin: 5px 16px 16px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
  }
}

/* ===== MANAGED HERO ARROWS ===== */
.managed-hero-section {
  position: relative !important;
}

.managed-hero-stage {
  position: relative;
}

.managed-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateY(-50%);

  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.94);
  color: #111;

  font-size: 28px;
  line-height: 1;

  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.managed-hero-prev {
  left: 8px;
}

.managed-hero-next {
  right: 8px;
}

.managed-hero-arrow:hover {
  background: #fff;
}

/* 기존 하단 dot/count 완전 숨김 */
.managed-hero-indicator,
.managed-hero-dot,
.managed-hero-count {
  display: none !important;
}

/* ===== MANAGED HERO SLIDE ANIMATION ===== */
.managed-hero-stage {
  position: relative;
  overflow: hidden;
}

.managed-hero-slide {
  width: 100%;
  transition: transform 0.42s ease, opacity 0.42s ease;
}

.managed-hero-slide.is-active {
  position: relative;
  transform: translateX(0);
  opacity: 1;
}

.managed-hero-slide.is-entering-right {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  opacity: 1;
}

.managed-hero-slide.is-entering-left {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  opacity: 1;
}

.managed-hero-slide.is-leaving-left {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  opacity: 1;
}

.managed-hero-slide.is-leaving-right {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  opacity: 1;
}

.managed-hero-slide .managed-hero-link,
.managed-hero-slide img {
  display: block;
  width: 100%;
}
/* ===== PC YOUTUBE WIDTH MATCH HERO ===== */
@media (min-width: 601px) {
  body.mobile-test-page .care-section {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 12px !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  body.mobile-test-page .care-section .sv-card {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }
}
/* ===== MOBILE YOUTUBE FULL WIDTH ===== */
@media (max-width: 600px) {
  body.mobile-test-page .care-section {
    width: 100% !important;
    max-width: none !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    padding-left: 0 !important;
    padding-right: 0 !important;

    box-sizing: border-box !important;
  }

  body.mobile-test-page .care-section .sv-card {
    width: 100% !important;
    max-width: none !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    box-sizing: border-box !important;
  }
}
/* ===== PC HERO ARROW SMALLER ===== */
@media (min-width: 601px) {
  body.mobile-test-page .managed-hero-arrow {
    width: 28px !important;
    height: 28px !important;

    font-size: 20px !important;

    background: rgba(255, 255, 255, 0.30) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;

    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08) !important;
  }
}
/* ===== MOBILE HERO ARROW SAME AS PC ===== */
@media (max-width: 600px) {
  body.mobile-test-page .managed-hero-arrow {
    width: 28px !important;
    height: 28px !important;
    font-size: 20px !important;

    background: rgba(255, 255, 255, 0.30) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;

    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08) !important;
  }
}
/* ===== PC YOUTUBE TITLE ICON ===== */

/* 모바일에서는 아직 새 아이콘 숨김 */
body.mobile-test-page .sv-title-youtube-icon {
  display: none;
}

@media (min-width: 601px) {

  /* 기존 썸네일 좌측 상단 유튜브 배지 제거 */
  body.mobile-test-page .care-section .sv-yt-badge {
    display: none !important;
  }

  body.mobile-test-page .care-section .sv-title {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
  }

  /* YouTube 빨간 마크 */
  body.mobile-test-page .care-section .sv-title-youtube-icon {
    position: relative;
    display: inline-block !important;

    width: 26px;
    height: 18px;
    min-width: 26px;

    border-radius: 5px;
    background: #ff0000;
  }

  /* 흰색 재생 삼각형 */
  body.mobile-test-page .care-section .sv-title-youtube-icon::after {
    content: "";
    position: absolute;

    left: 10px;
    top: 5px;

    width: 0;
    height: 0;

    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 7px solid #fff;
  }

  body.mobile-test-page .care-section .sv-title-text {
    min-width: 0;
  }
}
/* ===== MOBILE YOUTUBE TITLE ICON ===== */
@media (max-width: 600px) {

  /* 기존 썸네일 좌측 상단 유튜브 배지 제거 */
  body.mobile-test-page .care-section .sv-yt-badge {
    display: none !important;
  }

  body.mobile-test-page .care-section .sv-title {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  body.mobile-test-page .care-section .sv-title-youtube-icon {
    position: relative;
    display: inline-block !important;

    width: 24px;
    height: 17px;
    min-width: 24px;

    border-radius: 5px;
    background: #ff0000;
  }

  body.mobile-test-page .care-section .sv-title-youtube-icon::after {
    content: "";
    position: absolute;

    left: 9px;
    top: 4.5px;

    width: 0;
    height: 0;

    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 7px solid #fff;
  }

  body.mobile-test-page .care-section .sv-title-text {
    min-width: 0;
  }
}
/* ===== MOBILE YOUTUBE TITLE ONE LINE ===== */
@media (max-width: 600px) {
  body.mobile-test-page .care-section .sv-title-text {
    min-width: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}
/* ===== MOBILE YOUTUBE TITLE SMALLER ===== */
@media (max-width: 600px) {
  body.mobile-test-page .care-section .sv-title {
    font-size: 14px !important;
  }

  body.mobile-test-page .care-section .sv-title-text {
    font-size: 14px !important;
    line-height: 1.3 !important;
  }
}
/* ===== PC NAV LEFT ALIGN ===== */
@media (min-width: 601px) {
  body.mobile-test-page .nav-header {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body.mobile-test-page .nav-header nav {
    padding-left: 0 !important;
    padding-right: 0 !important;
    justify-content: flex-start !important;
  }
}

/* ===== PC NAV COMPACT HEIGHT ===== */
@media (min-width: 601px) {
  body.mobile-test-page .nav-header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.mobile-test-page .nav-header nav {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.mobile-test-page .nav-dropdown-trigger,
  body.mobile-test-page .nav-direct-link {
    height: 44px !important;
    min-height: 44px !important;
  }
}
/* ===== PC NAV TO HERO GAP ===== */
@media (min-width: 601px) {
  body.mobile-test-page .hero-section {
    margin-top: 18px !important;
  }
}
/* ===== PC HEADER BOTTOM LINE REMOVE ===== */
@media (min-width: 601px) {
  body.mobile-test-page .site-header {
    border-bottom: none !important;
  }
}
/* ===== HOME HEADER STICKY RESTORE ===== */
body.mobile-test-page .site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 2000 !important;
  overflow: visible !important;
}
/* ===== PC NAV TOP/BOTTOM DIVIDER BALANCE ===== */
@media (min-width: 601px) {
  body.mobile-test-page .nav-header {
    padding-left: 16px !important;
    padding-right: 16px !important;

    padding-top: 10px !important;
    padding-bottom: 10px !important;

    border-bottom: 1px solid #d9dde5 !important;
    box-sizing: border-box !important;
  }

  body.mobile-test-page .nav-header nav {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;

    justify-content: flex-start !important;
    min-height: 0 !important;
  }

  body.mobile-test-page .nav-dropdown-trigger,
  body.mobile-test-page .nav-direct-link {
    height: auto !important;
    min-height: 0 !important;
    line-height: 1.2 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* ===== HOME MOBILE NAV MATCH DETAIL ===== */
@media (max-width: 600px) {

  body.mobile-test-page .nav-header {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
  }

  body.mobile-test-page .desktop-nav {
    display: flex !important;
    flex-wrap: nowrap !important;

    width: max-content !important;
    min-width: 100% !important;

    gap: 18px !important;
    padding: 12px 16px !important;

    overflow: visible !important;
  }
}

/* ===== HOME MOBILE TOP NAV EXACT DETAIL ===== */
@media (max-width: 600px) {
  body.mobile-test-page .desktop-nav {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;

    width: max-content !important;
    min-width: 100% !important;

    gap: 18px !important;
    padding: 12px 16px !important;
  }

  body.mobile-test-page .nav-dropdown {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
  }

  body.mobile-test-page .nav-dropdown-trigger {
    display: inline-flex !important;
    align-items: center !important;

    min-height: 42px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;

    font-family: Arial !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 18px !important;

    text-decoration: none !important;
  }

  body.mobile-test-page .nav-direct-link {
    align-self: center !important;
    margin: 0 !important;
  }
}

/* ===== MOBILE NAV VERTICAL GAP 16PX ===== */
@media (max-width: 600px) {
  body.mobile-test-page .desktop-nav {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}

/* ===== MOBILE NAV ITEM HEIGHT 42PX FINAL ===== */
@media (max-width: 600px) {
  body.mobile-test-page .nav-dropdown-trigger,
  body.mobile-test-page .nav-direct-link {
    height: 42px !important;
    min-height: 42px !important;
    box-sizing: border-box !important;
  }
}

/* ===== HOME PC ALL MENU VISUAL RESTORE ===== */
@media (min-width: 601px) {
  body.mobile-test-page .nav-dropdown-trigger {
    font-family: Arial !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 18px !important;
    color: #101828 !important;
    gap: 7px !important;
  }
}

/* ===== MOBILE NAV FINAL - HOME ===== */
@media (max-width: 600px) {
  body.mobile-test-page .nav-header {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  body.mobile-test-page .desktop-nav {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    min-width: 100% !important;
    gap: 18px !important;
    padding: 4px 16px !important;
    box-sizing: border-box !important;
  }

  body.mobile-test-page .nav-dropdown-trigger,
  body.mobile-test-page .nav-direct-link {
    height: 42px !important;
    min-height: 42px !important;
    box-sizing: border-box !important;
  }
}

/* ===== HOME MOBILE NAV PRECISE NORMALIZE ===== */
@media (max-width: 600px) {
  body.mobile-test-page .nav-header {
    padding: 0 !important;
    border-top: 1px solid #e5e7eb !important;
  }

  body.mobile-test-page .desktop-nav {
    padding: 4px 16px !important;
  }

  body.mobile-test-page .nav-dropdown-trigger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    height: 42px !important;
    min-height: 42px !important;

    margin: 0 !important;
    padding: 0 16px !important;

    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    appearance: none !important;

    font-family: Arial !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 18px !important;

    color: #101828 !important;
    box-sizing: border-box !important;
  }

  body.mobile-test-page .site-header {
    border-bottom: 1px solid #d9dde5 !important;
  }
}

/* ===== MOBILE HOME HORIZONTAL SHAKE TEST ===== */
@media (max-width: 600px) {
  html {
    overflow-x: hidden !important;
  }

  body.mobile-test-page {
    overflow-x: hidden !important;
  }

  body.mobile-test-page .nav-header {
    width: 100% !important;
    overflow-x: hidden !important;
  }

  body.mobile-test-page .desktop-nav {
    width: 100% !important;
    min-width: 100% !important;
  }
}

/* ===== HOME PC FINAL 600 / 16 LAYOUT STANDARD ===== */
@media (min-width: 601px) {

  body.mobile-test-page .site-header,
  body.mobile-test-page main {
    width: 600px !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  body.mobile-test-page .top-header,
  body.mobile-test-page .nav-header {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

}

/* ===== HOME PC SECTION WIDTH MATCH HEADER ===== */
@media (min-width: 601px) {
  body.mobile-test-page .care-section {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  body.mobile-test-page .care-section .sv-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }
}
