: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 {
  display: flex;
  width: min(420px, 34vw);
  min-width: 260px;
  height: 44px;
  overflow: hidden;
  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;
}

.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,
.desktop-nav a:last-child {
  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;
}

.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: 560px;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 8vw, 150px) 78px;
  background: #f5f5f5;
}

.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-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;
  min-height: 410px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

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 span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #98a2b3;
}

.hero-indicator .is-active {
  background: #101828;
}

.hero-indicator button {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 0;
  color: #101828;
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}

.quick-category {
  padding: 34px clamp(18px, 8vw, 150px) 48px;
  background: #fff;
}

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

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

.event-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 28px;
  align-items: center;
  margin: 60px clamp(18px, 8vw, 150px) 0;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background: #172033;
}

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

.event-strip p {
  margin: 0;
  color: #d0d5dd;
  line-height: 1.7;
}

.badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  color: #172033;
  font-size: 13px;
  font-weight: 900;
  background: var(--gold);
}

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

.category-item {
  display: grid;
  min-height: 116px;
  align-content: center;
  justify-items: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  padding: 12px 8px;
  background: transparent;
  cursor: pointer;
}

.category-item span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 8px;
  color: #2189ff;
  font-size: 28px;
  background: #f4f6f8;
}

.category-item strong {
  font-size: 14px;
  text-align: center;
}

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

.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,
.detail-link {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  background: var(--ink);
  cursor: pointer;
}

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

.guide-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 32px;
  align-items: start;
  background: #fff;
}

.guide-copy p {
  color: #344054;
  line-height: 1.75;
}

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

.guide-list {
  display: grid;
  gap: 12px;
}

.guide-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.guide-list span {
  color: var(--coral);
  font-weight: 900;
}

.guide-list h3,
.guide-list p {
  margin: 0;
}

.guide-list p {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

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

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

.footer-admin-link {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

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

.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: #f4f6f8;
}

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

.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: 8px;
}

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

.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) 42px;
  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;
}

.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,
  .guide-section,
  .care-section,
  .consult-section,
  .commerce-detail {
    grid-template-columns: 1fr;
  }

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

  .quick-category-grid {
    grid-template-columns: repeat(3, 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;
  }

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

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

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

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

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

  section {
    padding: 54px 16px;
  }

  .event-strip {
    grid-template-columns: 1fr;
    margin: 44px 16px 0;
    padding: 24px;
  }

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

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



