: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;
}
