/* 하노이 김선생 — 공통 스타일 */
:root {
  --primary: #0B63E5;
  --primary-hover: #0A56C8;
  --primary-deep: #084EB8;
  --accent-warm: #F5A524;
  --accent-night: #1A2B4A;
  --text: #17233A;
  --text-secondary: #5A6B85;
  --text-muted: #7C8DA8;
  --text-light: #8AA1C0;
  --border: #E7EEF7;
  --bg-light: #F5F8FC;
  --bg-blue-light: #F1F6FD;
  --bg-blue-lighter: #E8F1FE;
  --footer-bg: #0F1B30;
  --footer-text: #B9C6DB;
  --footer-muted: #8FA1BC;
  --footer-border: #1D2C47;
  --footer-copy: #5E7292;
  --star: #F5A524;
  --max-width: 1180px;
  --header-h: 66px;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 2px 10px rgba(15, 40, 80, 0.05);
  --shadow-md: 0 8px 22px rgba(15, 40, 80, 0.10);
  --shadow-lg: 0 10px 26px rgba(15, 40, 80, 0.12);
  --shadow-float: 0 8px 24px rgba(11, 99, 229, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Pretendard Variable', Pretendard, 'Noto Sans KR', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #F3F7FD 0%, #FFFFFF 280px);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}

body.drawer-open { overflow: hidden; }

body.drawer-open #floating-cta {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }
::selection { background: #D8E8FF; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #E8EEF6;
  box-shadow: 0 1px 0 rgba(11, 99, 229, 0.04);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-decoration: none;
}

.logo--compact { gap: 0; }

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(11, 99, 229, 0.18);
}

.logo-img--footer {
  width: 36px;
  height: 36px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.logo-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.logo-sub {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1.2px;
}

/* PC: 네비 중앙 정렬 */
.site-nav--desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.nav-link {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  color: #3D4C66;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
  display: inline-block;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--bg-blue-lighter);
}

.nav-link.active {
  font-weight: 800;
  color: var(--primary);
  background: var(--bg-blue-lighter);
  box-shadow: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-header {
  flex-shrink: 0;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
}

.btn-header:hover {
  background: var(--primary-hover);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* 햄버거 메뉴 */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.menu-toggle__bar {
  display: block;
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  margin-left: -10px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
}

.menu-toggle__bar:nth-child(1) { top: 15px; }
.menu-toggle__bar:nth-child(2) { top: 21px; }
.menu-toggle__bar:nth-child(3) { top: 27px; }

body.drawer-open .menu-toggle__bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
body.drawer-open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}
body.drawer-open .menu-toggle__bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* 모바일 드로어 — body 직속, sticky 헤더 밖 */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 48, 0.55);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 86vw);
  height: 100%;
  height: 100dvh;
  background: #FFFFFF;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(15, 40, 80, 0.18);
  padding-top: env(safe-area-inset-top, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

body.drawer-open .drawer-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  min-height: 68px;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  flex: 1;
}

.drawer-brand__img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(11, 99, 229, 0.15);
}

.drawer-brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.drawer-brand__title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drawer-brand__sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.drawer-close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg-light);
  border-radius: 10px;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.drawer-close:active {
  background: var(--bg-blue-light);
}

.drawer-nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-link {
  display: block;
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  color: #3D4C66;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  background: transparent;
  font-family: inherit;
  text-align: left;
  box-sizing: border-box;
  transition: background 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.drawer-link:hover,
.drawer-link:active {
  background: var(--bg-light);
  color: var(--primary);
}

.drawer-link.active {
  background: var(--bg-blue-lighter);
  color: var(--primary);
  font-weight: 800;
  box-shadow: none;
}

.drawer-footer {
  flex-shrink: 0;
  padding: 16px 18px calc(20px + env(safe-area-inset-bottom, 0));
  border-top: 1px solid var(--border);
  background: #FFFFFF;
}

.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(11, 99, 229, 0.25);
  -webkit-tap-highlight-color: transparent;
}

.drawer-cta:active {
  opacity: 0.92;
}

/* ── Buttons ── */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #FFFFFF;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(11, 99, 229, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-deep) 100%);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(11, 99, 229, 0.3);
}

.btn-secondary {
  background: var(--bg-blue-light);
  color: var(--primary);
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  border: 1px solid #DCE9FB;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.btn-secondary:hover { background: #E4EEFB; }

.btn-sm {
  font-size: 14px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
}

.btn-white {
  background: #FFFFFF;
  color: var(--primary);
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.btn-white:hover {
  background: #EFF5FE;
  color: var(--primary-hover);
}

/* ── Cards ── */
.product-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.product-card__img {
  height: 180px;
  position: relative;
  background: #EAF1FA;
  overflow: hidden;
}

.product-card__img--sm { height: 150px; }

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__img img {
  transform: scale(1.04);
}

.product-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 27, 48, 0.15) 100%);
  pointer-events: none;
}

.product-card__placeholder {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--text-light);
  padding: 0 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 99, 229, 0.92);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 1;
}

.product-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-card__body--sm { padding: 15px 17px 17px; gap: 5px; }

.product-card__subcat {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

.product-card__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 0;
  line-height: 1.35;
}

.product-card__title--sm { font-size: 16px; }

.product-card__desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__desc--sm { font-size: 13px; }

.product-card__footer {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-card__price {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-deep);
  flex-shrink: 0;
}

.product-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  margin-left: auto;
}

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

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

/* Category card — 이미지 배경 */
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: #FFFFFF;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-sm);
}

.category-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.category-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}

.category-card:hover .category-card__bg {
  transform: scale(1.06);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 27, 48, 0.1) 0%, rgba(15, 27, 48, 0.78) 100%);
}

.category-card__content {
  position: relative;
  z-index: 1;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category-card__label {
  font-size: 16px;
  font-weight: 800;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.category-card__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* Review card */
.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.review-card--lg { padding: 24px; }

.review-card__stars {
  color: var(--star);
  font-size: 15px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 14.5px;
  color: #3D4C66;
  line-height: 1.65;
  margin: 0;
}

.review-card__text--lg { line-height: 1.7; }

.review-card__meta {
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
}

/* Section */
.section-title {
  margin: 0 0 22px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section-header .section-title { margin: 0; }

.section-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  background: none;
  font-family: inherit;
  padding: 0;
  text-decoration: none;
}

.section-link:hover { color: var(--primary-hover); }

.breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 12px;
}

.breadcrumb a {
  color: var(--text-light);
  cursor: pointer;
}

.breadcrumb a:hover { color: var(--primary); }

.page-title {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.page-desc {
  margin: 0;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 640px;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.chip {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
  background: var(--bg-blue-light);
  color: #3D4C66;
  border: 1px solid #E3ECF8;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  transition: all 0.15s;
}

.chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.chip.active {
  font-weight: 800;
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

.info-box {
  margin-top: 18px;
  background: var(--bg-blue-light);
  border: 1px solid #DCE9FB;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 13.5px;
  color: #3D4C66;
  line-height: 1.6;
}

.cta-inline {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-inline__text {
  font-size: 16px;
  font-weight: 700;
  color: #3D4C66;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--footer-bg) 0%, #0A1424 100%);
  color: var(--footer-text);
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 52px 24px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}

.footer-brand p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--footer-muted);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.footer-link {
  font-size: 13.5px;
  color: var(--footer-muted);
  cursor: pointer;
  display: block;
  margin-bottom: 6px;
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
  text-align: left;
  text-decoration: none;
}

.footer-link:hover { color: #FFFFFF; }

.footer-copy {
  border-top: 1px solid var(--footer-border);
}

.footer-copy-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  font-size: 12px;
  color: var(--footer-copy);
  line-height: 1.6;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-float);
  text-decoration: none;
  transition: transform 0.15s;
}

.floating-cta:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-deep) 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.badge-pill {
  align-self: flex-start;
  background: var(--bg-blue-lighter);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #D4E6FC;
}

main { flex: 1; min-width: 0; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid--popular {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .site-nav--desktop { display: none; }
  .btn-header--desktop { display: none; }
  .menu-toggle { display: flex; }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 0 16px;
    height: 68px;
  }

  .logo {
    gap: 10px;
    min-width: 0;
  }

  .logo-img {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    flex-shrink: 0;
  }

  .logo-text {
    display: flex;
    min-width: 0;
  }

  .logo-title {
    font-size: 18px;
    letter-spacing: -0.4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-sub {
    font-size: 9.5px;
    letter-spacing: 0.9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .card-grid,
  .card-grid--popular {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-card__title { font-size: 16px; }
  .product-card__desc {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
  .product-card__img { height: 200px; }
  .product-card__img--sm { height: 180px; }

  .product-card__footer {
    flex-wrap: nowrap;
  }

  .page-title { font-size: 26px; }
  .section-title { font-size: 22px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 16px 24px;
    text-align: center;
  }

  .footer-inner > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand .logo--footer {
    justify-content: center !important;
    margin-bottom: 14px !important;
  }

  .footer-brand p {
    text-align: center;
    max-width: 320px;
  }

  .footer-col-title {
    text-align: center;
  }

  .footer-link {
    text-align: center;
  }

  .footer-inner .btn-header {
    align-self: center !important;
    margin-top: 6px !important;
  }

  .footer-copy-inner {
    padding: 16px;
    font-size: 11px;
    text-align: center;
  }

  .cta-inline {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 18px;
  }

  .cta-inline .btn-primary,
  .cta-inline .btn-sm {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .cta-inline__text {
    font-size: 15px;
    line-height: 1.5;
  }

  .chips {
    gap: 6px;
  }

  .chip {
    padding: 8px 14px;
    font-size: 13px;
  }

  .listing-hero { padding-top: 28px; }
  .listing-cta-section { padding-bottom: 48px; }

  .floating-cta {
    right: 12px;
    bottom: 12px;
    font-size: 13px;
    padding: 12px 16px;
  }

  main {
    padding-bottom: 72px;
  }
}

@media (max-width: 480px) {
  .badge-pill {
    font-size: 12px;
    padding: 6px 12px;
  }

  .page-title { font-size: 24px; }
  .page-desc { font-size: 15px; }
}
