.h-main-nav.gap-50 {
  gap: clamp(22px, 2.2vw, 44px);
}

.nl-nav .nl-nav-link,
.nl-nav .nl-nav-text {
  white-space: nowrap;
}

/* Global Search Box styling for Shop Guide page */
.h-shop-guide-page .nl-search-box {
  position: relative !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 640px !important;
  margin: 24px auto 0 auto !important;
  border: none !important;
}

.h-shop-guide-page .mn-form-input {
  width: 100% !important;
  box-sizing: border-box !important;
}

.h-shop-guide-doc {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  height: auto;
  overflow: visible;
  position: relative;
}

.h-doc-shell {
  align-items: stretch;
  display: grid;
  gap: 40px;
  grid-template-columns: 300px minmax(0, 760px) 180px;
  height: auto;
  justify-content: center;
  max-width: 1440px;
  min-width: 0;
}

.h-doc-sidebar {
  background: #fff;
  border-right: 1px solid #e5e7eb;
  height: calc(100vh - 110px);
  overflow: auto;
  padding: 38px 30px 28px 0;
  scrollbar-gutter: stable;
  min-width: 0;
  position: sticky;
  top: 90px;
}

.h-doc-sidebar-title {
  color: #7a8495;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  margin: 0 0 24px;
}

.h-doc-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.h-doc-nav-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h-doc-nav-category {
  align-items: center;
  background: transparent;
  border: 0;
  color: #111827;
  cursor: pointer;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  justify-content: space-between;
  line-height: 1.45;
  padding: 0;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
  word-break: keep-all;
}

.h-doc-nav-category::after {
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  flex: 0 0 auto;
  height: 7px;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  width: 7px;
}

.h-doc-nav-group.active .h-doc-nav-category {
  color: var(--main-color);
}

.h-doc-nav-group.active .h-doc-nav-category::after {
  transform: rotate(225deg);
}

.h-doc-nav-group ul {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.h-doc-nav-group.active ul {
  display: flex;
}

.h-doc-nav-group li a {
  border-radius: 6px;
  color: #6b7280;
  display: block;
  font-size: 15px;
  line-height: 1.42;
  padding: 7px 10px;
  position: relative;
}

.h-doc-nav-group li a::after {
  background: var(--main-color);
  border-radius: 4px;
  bottom: 8px;
  content: "";
  display: none;
  left: 0;
  position: absolute;
  top: 8px;
  width: 3px;
}

.h-doc-nav-group li a:hover,
.h-doc-nav-group li.active a {
  background: rgba(63, 100, 237, 0.07);
  color: var(--main-color);
  font-weight: 700;
}

.h-doc-nav-group li.active a::after {
  display: block;
}

.h-doc-content {
  height: auto;
  min-width: 0;
  overflow: visible;
  padding: 38px 0 88px;
}

.h-doc-kicker {
  color: var(--main-color);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.h-doc-title {
  color: #202124;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 28px;
  overflow-wrap: anywhere;
}

.h-doc-body {
  color: #2f343d;
  font-size: 17px;
  line-height: 1.78;
  min-width: 0;
  overflow-wrap: anywhere;
}

.h-doc-body *,
.h-doc-content * {
  box-sizing: border-box;
  max-width: 100%;
}

.h-doc-body h1,
.h-doc-body h2,
.h-doc-body h3,
.h-doc-body h4,
.h-doc-body h5,
.h-doc-body h6 {
  color: #202124;
  line-height: 1.35;
  scroll-margin-top: 20px;
}

.h-doc-body h1 {
  font-size: 34px;
  margin: 0.9em 0 0.45em;
}

.h-doc-body h2 {
  border-top: 1px solid #edf0f5;
  font-size: 28px;
  margin: 42px 0 0.45em;
  padding-top: 30px;
}

.h-doc-body h3 {
  font-size: 23px;
  margin: 1em 0 0.45em;
}

.h-doc-body h4 {
  font-size: 21px;
  margin: 1em 0 0.45em;
}

.h-doc-body h5,
.h-doc-body h6 {
  font-size: 18px;
  margin: 1em 0 0.45em;
}

.h-doc-body p {
  margin: 0.72em 0;
}

.h-doc-body p:empty {
  margin: 0;
  min-height: 0;
}

.h-doc-body p:has(> br:only-child) {
  margin: 0.35em 0;
}

.h-doc-body a {
  color: var(--main-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.h-doc-body blockquote {
  background: rgba(63, 100, 237, 0.06);
  border-left: 4px solid var(--main-color);
  border-radius: 0 8px 8px 0;
  color: #4b5563;
  margin: 1em 0;
  padding: 0.7em 1em;
}

.h-doc-body pre {
  background: #f6f8fb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9em;
  line-height: 1.55;
  margin: 1em 0;
  overflow-x: auto;
  padding: 1em;
  white-space: pre-wrap;
  word-break: break-word;
}

.h-doc-body ul,
.h-doc-body ol {
  margin: 0.8em 0 0.8em 1.4em;
}

.h-doc-body table {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-collapse: collapse;
  border-radius: 8px;
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

.h-doc-body th,
.h-doc-body td {
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
}

.h-doc-body iframe,
.h-doc-body video,
.h-doc-body embed,
.h-doc-body object,
.h-doc-body audio,
.h-doc-body .note-video-clip {
  border-radius: 6px;
  display: block;
  margin: 1em 0;
  max-width: 100%;
}

.h-doc-body iframe,
.h-doc-body embed,
.h-doc-body object,
.h-doc-body .note-video-clip {
  aspect-ratio: 16 / 9;
  height: auto !important;
  width: 100% !important;
}

.h-doc-body video {
  background-color: #000;
  height: auto !important;
  max-height: 78vh;
  object-fit: contain !important;
}

.h-doc-body img {
  border-radius: 6px;
  display: block;
  height: auto !important;
  margin: 1em 0;
  max-height: 78vh;
  max-width: 100% !important;
  object-fit: contain !important;
}

.h-doc-body audio {
  width: 100% !important;
}

.h-doc-empty,
.h-doc-empty-state {
  color: #7a8495;
}

.h-doc-toc {
  border-left: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 13px;
  height: calc(100vh - 110px);
  overflow: auto;
  padding: 40px 0 28px 18px;
  scrollbar-gutter: stable;
  position: sticky;
  top: 90px;
}

.h-doc-toc p {
  color: #111827;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 12px;
}

.h-doc-toc-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.h-doc-toc-link {
  border-left: 2px solid transparent;
  color: #6b7280;
  display: block;
  line-height: 1.35;
  padding: 7px 0 7px 10px;
}

.h-doc-toc-link:hover,
.h-doc-toc-link.active {
  border-left-color: var(--main-color);
  color: var(--main-color);
}

.h-doc-toc-link.active {
  font-weight: 700;
}

/* Mobile Sticky Nav and Backdrop defaults */
.h-mobile-sticky-bar {
  display: none;
}

.h-mobile-nav-backdrop {
  display: none;
}

.h-drawer-header {
  display: none;
}

/* Pagination styles */
.h-doc-pagination {
  border-top: 1px solid #edf0f5;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  width: 100%;
}

.h-pagination-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.h-pagination-item:hover {
  border-color: var(--main-color);
  box-shadow: 0 4px 12px rgba(63, 100, 237, 0.08);
  transform: translateY(-2px);
}

.h-pagination-item.prev {
  align-items: flex-start;
  text-align: left;
}

.h-pagination-item.next {
  align-items: flex-end;
  text-align: right;
}

.h-pagination-label {
  align-items: center;
  color: #7a8495;
  display: flex;
  font-size: 13px;
  font-weight: 500;
  gap: 6px;
}

.h-pagination-item:hover .h-pagination-label {
  color: var(--main-color);
}

.h-pagination-title {
  color: #1f2937;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 2px;
}

.h-pagination-placeholder {
  flex: 1;
}

@media only screen and (max-width: 1280px) {
  .h-main-nav.gap-50 {
    gap: clamp(10px, 1.5vw, 22px);
  }

  .nl-nav .nl-nav-link,
  .nl-nav .nl-nav-text {
    font-size: clamp(12px, 1.1vw, 14px);
  }

  .h-doc-shell {
    gap: 30px;
    grid-template-columns: 260px minmax(0, 1fr) 160px;
  }
}

@media only screen and (max-width: 1100px) {
  .h-main-nav.gap-50 {
    gap: clamp(8px, 1vw, 14px);
  }

  .nl-nav .nl-nav-link,
  .nl-nav .nl-nav-text {
    font-size: 12px;
  }

  .nl-header .nl-btn.btn-primary {
    min-width: 80px;
    font-size: 11px;
    padding: 0 0.4em;
  }

  .nl-header .nl-languague {
    margin-left: 0.8em;
  }

  .h-doc-shell {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .h-doc-toc {
    display: none;
  }
}

@media only screen and (max-width: 900px) {
  .h-shop-guide-page .nl-page-banner {
    height: 390px;
    overflow: hidden;
  }

  .h-shop-guide-page .banner-faq-image {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .h-shop-guide-page .banner-faq-overlay {
    max-width: calc(100% - 32px);
    top: 58%;
    width: 100%;
  }

  .h-shop-guide-page .banner-faq-badge {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 7px 16px;
  }

  .h-shop-guide-page .banner-faq-title {
    font-size: 30px;
    line-height: 1.24;
    margin: 0 auto;
    max-width: 340px;
  }

  .h-shop-guide-page .nl-page-banner .nl-search-box {
    margin-top: 16px !important;
    width: min(100%, 340px) !important;
    max-width: 340px !important;
  }

  .h-shop-guide-page .nl-page-banner .mn-from-search .mn-form-input {
    font-size: 17px;
    height: 52px;
    padding-left: 20px;
    padding-right: 58px;
  }

  .h-shop-guide-page .nl-search-results-model {
    max-height: 210px;
    overflow-y: auto;
  }

  .h-mobile-sticky-bar {
    display: block;
    position: sticky;
    top: 70px;
    z-index: 180;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  }

  .h-mobile-sticky-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px;
    color: #1e293b;
    font-weight: 500;
  }

  .h-btn-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .h-sticky-icon {
    color: var(--main-color);
    flex-shrink: 0;
  }

  .h-sticky-title-path {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    min-width: 0;
  }

  .h-path-cat {
    color: #64748b;
    font-weight: 600;
  }

  .h-path-sep {
    color: #cbd5e1;
  }

  .h-path-doc {
    color: #1e293b;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .h-btn-right {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--main-color);
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
  }

  .h-menu-badge {
    background: rgba(63, 100, 237, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
  }

  /* Mobile Nav Backdrop */
  .h-mobile-nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 199;
  }

  .h-mobile-nav-backdrop.active {
    display: block;
  }

  /* Drawer Sidebar Layout */
  .h-doc-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 200;
    padding: 24px 20px;
    box-shadow: 4px 0 24px rgba(15, 23, 42, 0.15);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-right: 1px solid #e2e8f0;
    border-bottom: 0;
    max-height: none;
  }

  .h-doc-sidebar.open {
    left: 0;
  }

  .h-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 14px;
    margin-bottom: 18px;
  }

  .h-drawer-title {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .h-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
  }

  .h-drawer-close:hover {
    color: #0f172a;
  }

  .h-doc-sidebar-title {
    display: none;
  }

  .h-doc-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .h-doc-nav-group {
    gap: 8px;
  }

  .h-doc-nav-group ul {
    flex-direction: column;
    gap: 4px;
    overflow-x: visible;
    padding-bottom: 0;
    padding-left: 12px;
    margin-top: 4px;
  }

  .h-doc-nav-group li {
    flex: none;
    width: 100%;
  }

  .h-doc-nav-group li a {
    border: 0;
    border-radius: 6px;
    max-width: none;
    overflow: visible;
    padding: 8px 12px 8px 16px;
    text-overflow: clip;
    white-space: normal;
    background: transparent;
    color: #4b5563;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
  }

  .h-doc-nav-group li a::after,
  .h-doc-nav-group li.active a::after {
    display: none !important;
  }

  .h-doc-nav-group li.active a {
    background: rgba(63, 100, 237, 0.08);
    border-left: 3px solid var(--main-color);
    border-radius: 0 6px 6px 0;
    color: var(--main-color);
    font-weight: 700;
    padding-left: 13px;
  }

  .h-shop-guide-doc {
    height: auto;
    overflow: visible;
  }

  .h-doc-shell {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: auto;
  }

  .h-doc-content {
    height: auto;
    max-height: none;
    overflow: visible;
    padding: 24px 0 64px;
    width: 100%;
  }
}

@media only screen and (max-width: 700px) {
  .h-shop-guide-page .nl-page-banner {
    height: 360px;
  }

  .h-shop-guide-page .banner-faq-overlay {
    top: 59%;
  }

  .h-shop-guide-page .banner-faq-title {
    font-size: 25px;
    max-width: 310px;
  }

  .h-shop-guide-page .banner-faq-badge {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .h-shop-guide-page .nl-page-banner .nl-search-box {
    width: min(100%, 320px) !important;
    max-width: 320px !important;
  }

  .h-shop-guide-page .nl-page-banner .mn-from-search .mn-form-input {
    font-size: 16px;
    height: 48px;
    padding-left: 18px;
  }

  .h-doc-sidebar {
    max-height: none;
  }

  .h-doc-title {
    font-size: 30px;
    line-height: 1.25;
  }

  .h-doc-body {
    font-size: 16px;
    line-height: 1.68;
  }

  .h-doc-body h1 {
    font-size: 27px;
  }

  .h-doc-body h2 {
    font-size: 24px;
    margin-top: 34px;
    padding-top: 24px;
  }

  .h-doc-body h3 {
    font-size: 20px;
  }

  .h-doc-body h4,
  .h-doc-body h5,
  .h-doc-body h6 {
    font-size: 17px;
  }

  .h-doc-body img,
  .h-doc-body video {
    max-height: 70vh;
  }
}

.h-shop-guide-page .nl-page-banner .nl-search-box {
  position: relative !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 640px !important;
  margin: 24px auto 0 auto !important;
  border: none !important;
}

.h-shop-guide-page .nl-page-banner .mn-from-search .mn-form-input {
  width: 100% !important;
  box-sizing: border-box !important;
  height: 56px !important;
  border-radius: 80px !important;
  background-color: #fff !important;
  padding-left: 28px !important;
  padding-right: 56px !important;
  font-size: 24px !important;
}

.h-shop-guide-page .nl-page-banner .nl-btn-search {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 56px !important;
  bottom: 0 !important;
  border: 0 !important;
  background-color: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.h-shop-guide-page .nl-page-banner .nl-btn-close {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 56px !important;
  bottom: 0 !important;
  border: 0 !important;
  background-color: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@media only screen and (max-width: 900px) {
  .h-shop-guide-page .nl-page-banner .nl-search-box {
    margin-top: 16px !important;
    width: min(100%, 340px) !important;
    max-width: 340px !important;
  }

  .h-shop-guide-page .nl-page-banner .mn-from-search .mn-form-input {
    font-size: 17px !important;
    height: 52px !important;
    padding-left: 20px !important;
    padding-right: 58px !important;
  }
}

@media only screen and (max-width: 700px) {
  .h-shop-guide-page .nl-page-banner .nl-search-box {
    width: min(100%, 320px) !important;
    max-width: 320px !important;
  }

  .h-shop-guide-page .nl-page-banner .mn-from-search .mn-form-input {
    font-size: 16px !important;
    height: 48px !important;
    padding-left: 18px !important;
  }
}