/* Header Base */
header.yh-premium-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 9999;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  background-color: var(--yh-background-color);
  backdrop-filter: blur(18px);
}

/* Scroll Progress Bar */
.yh-premium-header .yh-header-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: var(--yh-gradiant);
  box-shadow: 0 1px 10px rgba(242, 122, 26, 0.3);
  transition: width 0.25s ease-out;
}

/* Main Layout Container */
.yh-premium-header .yh-header-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Styling */
.yh-premium-header .yh-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.yh-premium-header .yh-logo-icon {
  width: 40px;
  height: 40px;

  fill: var(--yh-primary-color);
  transition: var(--yh-transition-ultra);
}

.yh-premium-header .yh-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--yh-primary-color);
  letter-spacing: 0;
  white-space: nowrap;
}

.yh-premium-header .yh-mobile-menu-toggle,
.yh-premium-header .yh-mobile-menu-close,
.yh-premium-header .yh-mobile-menu-backdrop {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.yh-premium-header .yh-mobile-menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--yh-primary-color);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex: 0 0 42px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.yh-premium-header .yh-mobile-menu-toggle:hover,
.yh-premium-header .yh-mobile-menu-toggle:focus-visible,
.yh-premium-header .yh-mobile-menu-close:hover,
.yh-premium-header .yh-mobile-menu-close:focus-visible {
  background: rgba(242, 122, 26, 0.08);
  border-color: rgba(242, 122, 26, 0.26);
  outline: 0;
}

.yh-premium-header .yh-mobile-menu-toggle:focus-visible,
.yh-premium-header .yh-mobile-menu-close:focus-visible {
  outline: 2px solid rgba(242, 122, 26, 0.6);
  outline-offset: 2px;
}

.yh-premium-header .yh-mobile-menu-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

.yh-premium-header .yh-mobile-sidebar-head {
  display: none;
}

.yh-premium-header .yh-mobile-menu-backdrop {
  display: none;
}

/* Navigation Links */
.yh-premium-header .yh-nav-center {
  display: flex;
  align-items: center;
  gap: 14px;
}

.yh-premium-header .yh-nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.yh-premium-header .yh-login-link{
	text-decoration: none;
	color: var(--yh-primary-color);
	font-weight:bold;
}
.yh-premium-header .yh-nav-parent {
  display: flex;
  align-items: center;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.yh-premium-header .yh-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--yh-primary-color);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1;
  opacity: 0.72;
  padding: 0 13px;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.yh-premium-header .yh-nav-parent .yh-nav-link {
  padding-right: 5px;
}

.yh-premium-header .yh-nav-center > .yh-nav-link:hover,
.yh-premium-header .yh-nav-center > .yh-nav-link:focus-visible,
.yh-premium-header .yh-nav-center > .yh-nav-link.yh-active {
  opacity: 1;
  background: rgba(242, 122, 26, 0.1);
  color: var(--yh-primary-color);
  outline: 0;
}

.yh-premium-header .yh-nav-item--has-children:hover > .yh-nav-parent,
.yh-premium-header .yh-nav-item--has-children:focus-within > .yh-nav-parent,
.yh-premium-header .yh-nav-item.is-open > .yh-nav-parent,
.yh-premium-header .yh-nav-item.is-active > .yh-nav-parent {
  background: rgba(242, 122, 26, 0.1);
}

.yh-premium-header .yh-nav-item--has-children:hover .yh-nav-link,
.yh-premium-header .yh-nav-item--has-children:focus-within .yh-nav-link,
.yh-premium-header .yh-nav-item.is-open .yh-nav-link,
.yh-premium-header .yh-nav-item.is-active .yh-nav-link,
.yh-premium-header .yh-nav-item--has-children:hover .yh-nav-toggle,
.yh-premium-header .yh-nav-item--has-children:focus-within .yh-nav-toggle,
.yh-premium-header .yh-nav-item.is-open .yh-nav-toggle,
.yh-premium-header .yh-nav-item.is-active .yh-nav-toggle {
  opacity: 1;
}

.yh-premium-header .yh-nav-link:focus-visible,
.yh-premium-header .yh-nav-toggle:focus-visible,
.yh-premium-header .yh-nav-submenu-link:focus-visible {
  outline: 2px solid rgba(242, 122, 26, 0.6);
  outline-offset: 2px;
}

.yh-premium-header .yh-nav-toggle {
  width: 26px;
  height: 34px;
  margin-left: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--yh-primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.72;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.yh-premium-header .yh-nav-toggle:hover,
.yh-premium-header .yh-nav-item.is-open .yh-nav-toggle,
.yh-premium-header .yh-nav-item--has-children:hover .yh-nav-toggle {
  opacity: 1;
  background: transparent;
}

.yh-premium-header .yh-nav-toggle-icon {
  transition: transform 0.18s ease;
}

.yh-premium-header .yh-nav-item.is-open .yh-nav-toggle-icon,
.yh-premium-header .yh-nav-item--has-children:hover .yh-nav-toggle-icon,
.yh-premium-header .yh-nav-item--has-children:focus-within .yh-nav-toggle-icon {
  transform: rotate(180deg);
}

.yh-nav-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.yh-premium-header .yh-nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.yh-premium-header .yh-nav-submenu::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 0;
  width: 100%;
  height: 11px;
}

.yh-premium-header .yh-nav-item.is-open .yh-nav-submenu,
.yh-premium-header .yh-nav-item--has-children:hover .yh-nav-submenu,
.yh-premium-header .yh-nav-item--has-children:focus-within .yh-nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.yh-premium-header .yh-nav-submenu li {
  margin: 0;
  padding: 0;
}

.yh-premium-header .yh-nav-submenu-link {
  display: flex;
  align-items: center;
  min-height: 38px;
  border-radius: 10px;
  padding: 0 12px;
  color: var(--yh-primary-color);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.78;
  white-space: nowrap;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.yh-premium-header .yh-nav-submenu-link:hover,
.yh-premium-header .yh-nav-submenu-link:focus-visible,
.yh-premium-header .yh-nav-submenu-link.is-active {
  opacity: 1;
  background: rgba(242, 122, 26, 0.1);
}

/* User Actions (Cart & Profile) */
.yh-premium-header .yh-actions-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.yh-premium-header .yh-cart-btn {
  position: relative;
  color: var(--yh-primary-color);
  display: flex;
  padding: 5px;
}

.yh-premium-header .yh-cart-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--yh-accent-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #fff;
}

.yh-premium-header .yh-tutor-header-notifications {
  --yh-tutor-surface-base: var(--tutor-surface-base, #fafafa);
  --yh-tutor-surface-l1: var(--tutor-surface-l1, #ffffff);
  --yh-tutor-surface-l1-hover: var(--tutor-surface-l1-hover, #f8fafc);
  --yh-tutor-surface-brand-tertiary: var(
    --tutor-surface-brand-tertiary,
    rgba(242, 122, 26, 0.08)
  );
  --yh-tutor-text-primary: var(--tutor-text-primary, #111827);
  --yh-tutor-text-secondary: var(--tutor-text-secondary, #475569);
  --yh-tutor-text-subdued: var(--tutor-text-subdued, #64748b);
  --yh-tutor-text-brand: var(--tutor-text-brand, var(--yh-accent-color, #f27a1a));
  --yh-tutor-border-idle: var(--tutor-border-idle, rgba(15, 23, 42, 0.08));
  --yh-tutor-border-hover: var(--tutor-border-hover, rgba(15, 23, 42, 0.16));
  --yh-tutor-icon-idle: var(--tutor-icon-idle, #64748b);
  --yh-tutor-icon-critical: var(--tutor-icon-critical, #ef4444);
  --yh-tutor-shadow-lg: var(
    --tutor-shadow-lg,
    0 12px 32px rgba(15, 23, 42, 0.08)
  );
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.yh-premium-header .yh-tutor-header-notifications > * {
  display: flex;
  align-items: center;
}

.yh-premium-header .yh-tutor-header-notifications [x-cloak] {
  display: none !important;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification,
.yh-premium-header .yh-tutor-header-notifications .tutor-sm-hidden,
.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-trigger-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-trigger-wrap[data-menu-trigger] {
  display: inline-flex;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-btn,
.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-trigger {
  appearance: none;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--yh-tutor-border-idle);
  border-radius: 999px;
  background: transparent;
  color: var(--yh-tutor-text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-btn:hover,
.yh-premium-header .yh-tutor-header-notifications .tutor-btn:focus-visible,
.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-trigger:hover,
.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-trigger:focus-visible {
  background: rgba(15, 23, 42, 0.04);
  border-color: var(--yh-tutor-border-hover);
  color: var(--yh-tutor-text-brand);
  outline: 0;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-btn:focus-visible,
.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-trigger:focus-visible {
  outline: 2px solid rgba(242, 122, 26, 0.6);
  outline-offset: 2px;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-btn svg,
.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-trigger svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--yh-tutor-surface-l1);
  border-radius: 999px;
  background: var(--yh-tutor-icon-critical);
}

.yh-premium-header .yh-tutor-header-notifications .tutor-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  width: min(360px, calc(100vw - 24px));
  max-width: min(360px, calc(100vw - 24px));
  max-height: min(512px, calc(100vh - 96px));
  padding: 0;
  overflow-y: auto;
  background: var(--yh-tutor-surface-l1);
  border: 1px solid var(--yh-tutor-border-idle);
  border-radius: 12px;
  box-shadow: var(--yh-tutor-shadow-lg);
  color: var(--yh-tutor-text-primary);
  scrollbar-width: thin;
  scrollbar-color: var(--yh-tutor-border-idle) transparent;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-popover::-webkit-scrollbar {
  width: 8px;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-popover::-webkit-scrollbar-track {
  background: transparent;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-popover::-webkit-scrollbar-thumb {
  background: var(--yh-tutor-border-idle);
  border-radius: 999px;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-flex {
  display: flex;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-flex-column {
  flex-direction: column;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-justify-between {
  justify-content: space-between;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-justify-center {
  justify-content: center;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-items-center {
  align-items: center;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-p-6 {
  padding: 24px;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-p-4 {
  padding: 16px;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-px-6 {
  padding-left: 24px;
  padding-right: 24px;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-p-0 {
  padding: 0;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-mb-3 {
  margin-bottom: 12px;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-mt-4 {
  margin-top: 16px;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-rounded-lg {
  border-radius: 8px;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-border {
  border: 1px solid var(--yh-tutor-border-idle);
}

.yh-premium-header .yh-tutor-header-notifications .tutor-border-b {
  border-bottom: 1px solid var(--yh-tutor-border-idle);
}

.yh-premium-header .yh-tutor-header-notifications .tutor-medium,
.yh-premium-header .yh-tutor-header-notifications .tutor-font-semibold {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-small {
  font-size: 0.8125rem;
  line-height: 1.25rem;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-tiny {
  font-size: 0.75rem;
  line-height: 1.125rem;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-text-subdued {
  color: var(--yh-tutor-text-subdued);
}

.yh-premium-header .yh-tutor-header-notifications .tutor-text-right {
  text-align: right;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-h4 {
  margin: 0;
  color: var(--yh-tutor-text-primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-tabs-nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px;
  border-radius: 8px;
  background: var(--yh-tutor-surface-base);
}

.yh-premium-header .yh-tutor-header-notifications .tutor-tabs-nav [role="tab"] {
  appearance: none;
  min-height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--yh-tutor-text-secondary);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-tabs-nav [role="tab"]:hover,
.yh-premium-header .yh-tutor-header-notifications .tutor-tabs-nav [role="tab"]:focus-visible {
  color: var(--yh-tutor-text-primary);
  outline: 0;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-tabs-nav [role="tab"][aria-selected="true"] {
  background: var(--yh-tutor-surface-l1);
  color: var(--yh-tutor-text-brand);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.yh-premium-header .yh-tutor-header-notifications .tutor-btn-link {
  width: auto;
  min-width: 0;
  height: auto;
  min-height: 0;
  border: 0;
  border-radius: 6px;
  padding: 4px 6px;
  background: transparent;
  color: var(--yh-tutor-text-brand);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25rem;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-btn-link:hover,
.yh-premium-header .yh-tutor-header-notifications .tutor-btn-link:focus-visible {
  background: rgba(242, 122, 26, 0.08);
  border-color: transparent;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-list {
  min-height: 120px;
  background: var(--yh-tutor-surface-l1);
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-loading {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-loading-spinner {
  width: 22px;
  height: 22px;
  border: 2px solid var(--yh-tutor-border-idle);
  border-top-color: var(--yh-tutor-text-brand);
  border-radius: 999px;
  animation: yh-tutor-notification-spin 0.8s linear infinite;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-item {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid var(--yh-tutor-border-idle);
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-item:last-child {
  border-bottom: 0;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-item:hover,
.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-item:focus-visible {
  background: var(--yh-tutor-surface-l1-hover);
  outline: 0;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-item.is-unread {
  background: var(--yh-tutor-surface-brand-tertiary);
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-unread-dot {
  position: absolute;
  top: 26px;
  left: 5px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--yh-tutor-icon-critical);
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-item-body {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-item-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid var(--yh-tutor-border-idle);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yh-tutor-icon-idle);
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-item-icon svg {
  width: 20px;
  height: 20px;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-item-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-item-content a,
.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-item-content strong {
  color: var(--yh-tutor-text-primary);
  font-weight: 600;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-thumbnail {
  width: 56px;
  height: 40px;
  flex: 0 0 56px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--yh-tutor-surface-base);
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-empty-state,
.yh-premium-header .yh-tutor-header-notifications .tutor-empty-state {
  min-height: 160px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  color: var(--yh-tutor-text-subdued);
}

.tutor-overflow-hidden {
  overflow: hidden;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-offcanvas {
  position: fixed;
  inset: 0;
  z-index: 100000;
  pointer-events: none;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-offcanvas.is-open {
  pointer-events: auto;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-offcanvas-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-offcanvas-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: var(--yh-tutor-surface-l1);
  color: var(--yh-tutor-text-primary);
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-offcanvas-header {
  min-height: 58px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--yh-tutor-border-idle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-offcanvas-title {
  flex: 1 1 auto;
  text-align: center;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-offcanvas-header-slot {
  width: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-offcanvas-header-slot:last-child {
  justify-content: flex-end;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-offcanvas-content {
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-list.is-offcanvas {
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-fade-enter,
.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-fade-leave {
  transition: opacity 0.22s ease;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-fade-enter-start,
.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-fade-leave-end {
  opacity: 0;
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-offcanvas-enter,
.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-offcanvas-leave {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-offcanvas-enter-start,
.yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-offcanvas-leave-end {
  transform: translateX(100%);
}

@keyframes yh-tutor-notification-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 576px) {

  .yh-premium-header .yh-tutor-header-notifications .tutor-dashboard-notification-trigger-wrap[data-menu-trigger] {
    display: none;
  }

}


@media (max-width: 575px) {

  .yh-premium-header .yh-tutor-header-notifications .tutor-sm-hidden {
    display: none;
  }

}


.yh-user-trigger {
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 5px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--yh-primary-color);
  transition: var(--yh-transition-ultra);
}

.yh-user-menu-container {
  position: relative;
  display: flex;
  align-items: center;
}

.yh-user-trigger:hover {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.16);
}

.yh-user-trigger:focus-visible {
  outline: 2px solid rgba(242, 122, 26, 0.6);
  outline-offset: 2px;
}

.yh-username {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.85;
  line-height: 1;
}

.yh-chevron {
  transition: transform 0.2s ease;
}

.yh-user-menu-container.is-active .yh-chevron {
  transform: rotate(180deg);
}

.yh-avatar-wrapper img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.yh-avatar-wrapper--lg img {
  width: 48px;
  height: 48px;
}

.yh-premium-header .yh-cta-btn {
  text-decoration: none;
  background: var(--yh-primary-color);
  color: #fff;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
}

/* Dropdown Menu */
.yh-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.yh-user-menu-container.is-active .yh-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Dropdown content */
.yh-dropdown-header {
  padding: 10px 10px 8px;
}

.yh-dropdown-header--tutor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yh-dropdown-header__meta {
  min-width: 0;
}

.yh-full-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--yh-primary-color);
  margin-bottom: 2px;
}

.yh-user-email {
  font-size: 0.85rem;
  opacity: 0.75;
  color: var(--yh-primary-color);
}

.yh-dropdown-divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
  margin: 6px 6px;
  list-style: none;
}

.yh-dropdown-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.yh-dropdown-links li {
  margin: 0;
  padding: 0;
}

.yh-dropdown-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--yh-primary-color);
  font-weight: 600;
  transition: var(--yh-transition-ultra);
}

.yh-dropdown-links a:hover {
  background: rgba(15, 23, 42, 0.04);
}

.yh-dropdown-links a:active {
  background: rgba(15, 23, 42, 0.06);
}

.yh-dropdown-links a:focus-visible {
  outline: 2px solid rgba(242, 122, 26, 0.6);
  outline-offset: 2px;
}

.yh-dropdown-links svg {
  flex: 0 0 auto;
  opacity: 0.85;
}

.yh-logout-link {
  color: #c2410c;
}

.yh-logout-link:hover {
  background: rgba(194, 65, 12, 0.08);
}

.yh-dropdown-menu--tutor {
  --yh-tutor-surface-base: var(--tutor-surface-base, #fafafa);
  --yh-tutor-surface-l1: var(--tutor-surface-l1, #ffffff);
  --yh-tutor-surface-brand-tertiary: var(--tutor-surface-brand-tertiary, #f6f8fe);
  --yh-tutor-text-primary: var(--tutor-text-primary, #0c111d);
  --yh-tutor-text-secondary: var(--tutor-text-secondary, #333741);
  --yh-tutor-text-subdued: var(--tutor-text-subdued, #85888e);
  --yh-tutor-text-brand: var(--tutor-text-brand, #3e64de);
  --yh-tutor-border-idle: var(--tutor-border-idle, #ececed);
  --yh-tutor-border-brand: var(--tutor-border-brand, #3e64de);
  --yh-tutor-tab-hover: var(--tutor-tab-sidebar-l2-hover, #ececed);
  --yh-tutor-tab-active: var(--tutor-tab-sidebar-l2-active, #e4ebfc);
  --yh-tutor-shadow-lg: var(
    --tutor-shadow-lg,
    0px 4px 6px -2px rgba(16, 24, 40, 0.03),
    0px 12px 16px -4px rgba(16, 24, 40, 0.08)
  );
  top: calc(100% + 8px);
  width: 230px;
  max-width: calc(100vw - 24px);
  padding: 8px;
  background: var(--yh-tutor-surface-l1);
  border: 1px solid var(--yh-tutor-border-idle);
  border-radius: 12px;
  box-shadow: var(--yh-tutor-shadow-lg);
}

.yh-user-menu-container--tutor .yh-dropdown-header--tutor {
  background-color: var(--yh-tutor-surface-brand-tertiary);
  border-radius: 6px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px 12px;
  margin-bottom: 12px;
  text-align: center;
}

.yh-user-menu-container--tutor .yh-avatar-wrapper--lg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.yh-user-menu-container--tutor .yh-dropdown-header__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 0;
}

.yh-user-menu-container--tutor .yh-full-name {
  margin: 0;
  color: var(--yh-tutor-text-primary);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.375rem;
}

.yh-user-menu-container--tutor .yh-user-email {
  margin: 0;
  color: var(--yh-tutor-text-secondary);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.25rem;
  overflow-wrap: anywhere;
}

.yh-user-menu-container--tutor .yh-dropdown-divider {
  background: var(--yh-tutor-border-idle);
  margin: 0;
}

.yh-user-menu-container--tutor .yh-dropdown-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}

.yh-user-menu-container--tutor .yh-dropdown-links li:last-of-type {
  border-top: 1px solid var(--yh-tutor-border-idle);
  padding-top: 4px;
}

.yh-user-menu-container--tutor .yh-tutor-popover__link {
  width: 100%;
  color: var(--yh-tutor-text-primary);
  border-radius: 6px;
  gap: 12px;
  padding: 8px 12px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.375rem;
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

.yh-user-menu-container--tutor .yh-tutor-popover__link:hover {
  background-color: var(--yh-tutor-tab-hover);
}

.yh-user-menu-container--tutor .yh-tutor-popover__link--active {
  background-color: var(--yh-tutor-tab-active);
  color: var(--yh-tutor-text-brand);
}

.yh-user-menu-container--tutor .yh-tutor-popover__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Responsive Design */

/* Tablet & Small Desktop */
@media (max-width: 1100px) {

  .yh-premium-header .yh-nav-center {
    gap: 8px;
  }
  .yh-premium-header .yh-logo-text {
    font-size: 20px;
  }
  .yh-premium-header .yh-header-container {
    padding: 0 15px;
  }

}


/* Mobile Devices */
@media (max-width: 768px) {

  .yh-username {
    display: none;
  }

  header.yh-premium-header {
    height: 60px;
  }

  .yh-premium-header .yh-header-container {
    gap: 10px;
    justify-content: space-between;
  }

  .yh-premium-header .yh-mobile-menu-toggle {
    display: inline-flex;
  }

  .yh-premium-header .yh-logo {
    display: none;
  }

  .yh-premium-header .yh-logo-icon {
    width: 32px;
    height: 32px;
  }
  .yh-premium-header .yh-logo-text {
    font-size: 18px;
  }
  .yh-premium-header .yh-actions-right {
    gap: 10px;
    margin-left: auto;
  }

  .yh-premium-header .yh-cart-btn {
    min-width: 34px;
    min-height: 34px;
    align-items: center;
    justify-content: center;
  }

  .yh-premium-header .yh-login-link {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 10px;
    padding: 0 8px;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .yh-premium-header .yh-cta-btn {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .yh-premium-header .yh-nav-center {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10002;
    width: min(84vw, 320px);
    height: 100dvh;
    padding: 18px 16px 24px;
    background: #fff;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 20px 0 44px rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(-105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease, visibility 0.25s ease;
  }

  .yh-premium-header.is-mobile-menu-open .yh-nav-center {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .yh-premium-header .yh-mobile-sidebar-head {
    min-height: 44px;
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .yh-premium-header .yh-mobile-sidebar-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--yh-primary-color);
    text-decoration: none;
  }

  .yh-premium-header .yh-mobile-sidebar-logo {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .yh-premium-header .yh-mobile-sidebar-logo svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .yh-premium-header .yh-mobile-sidebar-name {
    min-width: 0;
    color: var(--yh-primary-color);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .yh-premium-header .yh-mobile-menu-close {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    background: transparent;
    color: var(--yh-primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
  }

  .yh-premium-header .yh-mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10001;
    width: 100vw;
    height: 100dvh;
    padding: 0;
    background: rgba(15, 23, 42, 0.42);
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .yh-premium-header.is-mobile-menu-open .yh-mobile-menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .yh-premium-header .yh-nav-center > .yh-nav-link,
  .yh-premium-header .yh-nav-item,
  .yh-premium-header .yh-nav-parent {
    width: 100%;
  }

  .yh-premium-header .yh-nav-item,
  .yh-premium-header .yh-nav-parent {
    align-items: stretch;
  }

  .yh-premium-header .yh-nav-item {
    flex-direction: column;
  }

  .yh-premium-header .yh-nav-parent {
    min-width: 0;
  }

  .yh-premium-header .yh-nav-link {
    min-height: 46px;
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
    padding: 0 14px;
    font-size: 1rem;
    line-height: 1.2;
    opacity: 0.88;
  }

  .yh-premium-header .yh-nav-parent .yh-nav-link {
    padding-right: 10px;
  }

  .yh-premium-header .yh-nav-toggle {
    width: 44px;
    height: 46px;
    flex: 0 0 44px;
    border-radius: 12px;
  }

  .yh-premium-header .yh-nav-submenu {
    position: static;
    min-width: 0;
    width: 100%;
    margin: 4px 0 8px;
    padding: 6px;
    border: 1px solid rgba(242, 122, 26, 0.12);
    border-radius: 12px;
    box-shadow: none;
    background: rgba(242, 122, 26, 0.055);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
    display: none;
  }

  .yh-premium-header .yh-nav-submenu::before {
    content: none;
  }

  .yh-premium-header .yh-nav-item.is-open .yh-nav-submenu,
  .yh-premium-header .yh-nav-item.is-active .yh-nav-submenu {
    display: block;
  }

  .yh-premium-header .yh-nav-submenu-link {
    min-height: 40px;
    border-radius: 10px;
    padding: 0 10px;
    white-space: normal;
  }

  body.yh-mobile-menu-open {
    overflow: hidden;
  }

}


/* Extra Small Devices */
@media (max-width: 480px) {

  .yh-premium-header .yh-header-container {
    padding: 0 12px;
    gap: 8px;
  }

  .yh-premium-header .yh-actions-right {
    gap: 6px;
  }

  .yh-premium-header .yh-login-link {
    padding: 0 6px;
    font-size: 0.86rem;
  }

  .yh-premium-header .yh-cta-btn {
    padding: 0 9px;
    font-size: 0.8rem;
  }

}


.yh-footer {
  width: 100%;
  background-color: var(--yh-primary-color);
  color: var(--yh-text-main);
  padding: 80px 20px 40px;
  font-family: "Inter", system-ui, sans-serif;
}

.yh-footer .yh-container {
  max-width: 80%;
  margin: 0 auto;
}

/* Newsletter Section */
.yh-footer .yh-newsletter {
  text-align: center;
  margin-bottom: 60px;
}

.yh-footer .yh-newsletter h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.yh-footer .yh-newsletter p {
  color: var(--yh-text-muted);
}

.yh-footer .yh-subscribe-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 520px;
  margin: 30px auto 0;
  flex-wrap: wrap;
}

.yh-footer .yh-subscribe-form input {
  flex: 1;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: var(--yh-transition-ultra);
}

.yh-footer .yh-subscribe-form input:focus {
  outline: none;
  border-color: var(--yh-accent-secondary-color);
}

.yh-footer .yh-subscribe-form button {
  padding: 15px 30px;
  border-radius: 12px;
  border: none;
  background: var(--yh-text-main);
  color: #000;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--yh-transition-ultra);
}

.yh-footer .yh-subscribe-form button:hover {
  transform: scale(1.05);
  background: var(--yh-accent-secondary-color);
}

.yh-footer .yh-subscribe-status {
  width: 100%;
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--yh-text-muted);
}

.yh-footer .yh-subscribe-status.is-success {
  color: var(--yh-accent-secondary-color);
}

.yh-footer .yh-subscribe-status.is-error {
  color: #ffb4b4;
}

/* Layout Divider */
.yh-footer .yh-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 60px 0;
}

/* Grid System */
.yh-footer .yh-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.yh-footer .yh-footer-col h4 {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* List Items & Dot Animation (Fixed Text Movement) */
.yh-footer .yh-link-list {
  list-style: none;
  padding: 0;
}

.yh-footer .yh-link-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}

.yh-footer .yh-link-list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--yh-text-muted);
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    background-color 0.5s ease,
    box-shadow 0.5s ease;
}

.yh-footer .yh-link-list li a {
  color: var(--yh-text-muted);
  text-decoration: none;
  transition: var(--yh-transition-ultra);
}

.yh-footer .yh-link-list li:hover::before {
  background-color: var(--yh-accent-secondary-color);
  transform: scale(2);
  box-shadow: 0 0 12px var(--yh-accent-secondary-color);
}

.yh-footer .yh-link-list li:hover a {
  color: var(--yh-accent-secondary-color);
}

/* Social Buttons */
.yh-footer .yh-socials {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.yh-footer .yh-social-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.yh-footer .yh-social-btn i {
  transition: transform 0.3s ease;
}

.yh-footer .yh-social-btn:hover {
  background: var(--yh-accent-secondary-color);
  color: #000;
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.yh-footer .yh-social-btn:hover i {
  transform: scale(1.2);
}

/* Contact Info */
.yh-footer .yh-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
  color: var(--yh-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.yh-footer .yh-info-item i {
  color: var(--yh-text-main);
  margin-top: 4px;
  transition: var(--yh-transition-ultra);
}

.yh-footer .yh-info-item:hover i {
  color: var(--yh-accent-secondary-color);
  transform: scale(1.2);
}

/* Copyright Section */
.yh-footer .yh-copyright {
  margin-top: 80px;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--yh-text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1100px) {

    .yh-footer .yh-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 768px) {

    .yh-footer .yh-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

  .yh-footer .yh-subscribe-form {
    flex-direction: column;
    width: 100%;
  }

  .yh-footer .yh-subscribe-form input,
  .yh-footer .yh-subscribe-form button {
    width: 100%;
  }

  .yh-footer .yh-link-list li {
    justify-content: center;
    padding-left: 0;
  }

  .yh-footer .yh-link-list li::before {
    display: none;
  }

  .yh-footer .yh-socials {
    justify-content: center;
  }

}


/* Global primitives + tokens */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  /* Typography */
  font-family: "Inter", sans-serif;

  /* Brand */
  --yh-primary-color: #2c2c2c;
  --yh-accent-color: #f27a1a;
  --yh-accent-secondary-color: #ffa300;

  /* Surfaces */
  --yh-background-color: #f9f9f9;
  --yh-surface: rgb(251, 248, 245);
  --yh-surface-contrast: #ffffff;
  --yh-gradiant: linear-gradient(
    90deg,
    var(--yh-accent-color) 0%,
    var(--yh-accent-secondary-color) 100%
  );

.natm-icon {
    width: 1.25em;
    height: 1.25em;
    display: inline-block;
    vertical-align: -0.175em;
    fill: currentColor;
}
  /* Borders + motion */
  --yh-global-border: 1px solid rgba(15, 23, 42, 0.18);

  --yh-transition-ultra: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Text on dark */
  --yh-text-main: #ffffff;
  --yh-text-muted: rgba(255, 255, 255, 0.6);

  /* Borders + motion */
  --yh-global-border: 1px solid rgba(15, 23, 42, 0.18);

  --yh-transition-ultra: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Text on dark */
  --yh-text-main: #ffffff;
  --yh-text-muted: rgba(255, 255, 255, 0.6);

  /* Tutor token bridge */
  --tutor-color-primary: var(--yh-accent-color) !important;
  --tutor-color-primary-rgb: 242, 122, 26 !important;
  --tutor-color-primary-hover: #d95f0d !important;
  --tutor-body-color: #111827 !important;
  --tutor-border-color: rgba(15, 23, 42, 0.12) !important;
  --tutor-color-gray: #d1d5db !important;
  --tutor-color-muted: #64748b !important;
  --tutor-color-secondary: #475569 !important;
  --tutor-color-black: #111827 !important;
  /* 
  --tutor-surface-base: #fafafa !important;
  --tutor-surface-l1: #ffffff !important;
  --tutor-surface-l1-hover: #f8fafc !important;
  --tutor-surface-brand-primary: var(--yh-accent-color) !important;
  --tutor-surface-brand-secondary: #fff7ed !important;
  --tutor-surface-brand-tertiary: rgba(242, 122, 26, 0.08) !important;
  --tutor-border-idle: rgba(15, 23, 42, 0.08) !important;
  --tutor-border-hover: rgba(15, 23, 42, 0.16) !important;
  --tutor-border-brand: rgba(242, 122, 26, 0.45) !important;
  --tutor-border-brand-secondary: rgba(242, 122, 26, 0.22) !important;
  --tutor-text-primary: #111827 !important;
  --tutor-text-secondary: #475569 !important;
  --tutor-text-subdued: #64748b !important;
  --tutor-text-brand: var(--yh-accent-color) !important;
  --tutor-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04) !important;
  --tutor-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.04) !important;
  --tutor-shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.08) !important; */
}

html::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer and Edge */
  overscroll-behavior-y: none;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--yh-background-color, #f9f9f9);
  overflow-x: hidden;
  /* Extra safety to prevent horizontal scroll */
}

/* 1. Set main to full width without overflow */
.natm-companion-site-main {
  width: 100%;
}

.yh-section {
  padding-bottom: 5em;
  width: 80%;
  /* or 80dvw if you prefer */
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1100px) {

  .yh-section {
    padding-bottom: 4em;
    width: 95%;
  }

}


@media (max-width: 768px) {

  .yh-section {
    padding-bottom: 2em;
    width: 95%;
    flex-direction: column;
    align-items: center;
  }

}


@media (max-width: 480px) {

  .yh-section {
    width: 95%;
    flex-direction: column;
    align-items: center;
  }

}


* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.yh2-shell {
  --yhc-primary-color: var(--e-global-color-primary, #2c2c2c);
  --yhc-accent-color: var(--e-global-color-accent, #f27a1a);
  --yhc-accent2-color: var(--e-global-color-2c5befb, #ffa300);
  --yhc-font: "Inter", sans-serif;
  --yhc-gradiant: linear-gradient(
    90deg,
    var(--yhc-accent-color) 0%,
    var(--yhc-accent2-color) 100%
  );
  --yhc-radius: 8px;

  font-family: var(--yhc-font);
  width: min(92%, 1320px);
  max-width: 1320px;
  margin: 0 auto 28px;
  color: var(--yhc-primary-color);
}

.yh2-heading {
  margin: 18px 0 6px;
  text-align: center;
}

.yh2-heading--section {
  margin: 34px 0 10px;
}

.yh2 {
  width: 100%;
  min-width: 0;
  margin: 0;
  font-family: var(--yhc-font);
  color: var(--yhc-primary-color);
}

.yh2-heading + .yh2 {
  margin-top: 0;
}

.yh2 .yh2-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  padding: clamp(12px, 1.5vw, 18px);
}

@media (max-width: 1100px) {

  .yh2-shell {
    width: 95%;
  }

  .yh2 .yh2-top {
    grid-template-columns: 1fr;
  }

}


.yh2 .yh2-bottom {
  padding: 0 clamp(12px, 1.5vw, 18px) clamp(12px, 1.5vw, 18px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.yh2 .bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 1100px) {

  .yh2 .bottom-grid {
    grid-template-columns: 1fr;
  }

}


.yh2-shell .card {
  --card-bg: #fff;
  background: var(--yh-surface-contrast, #fff);
  border: var(--yh-global-border, 1px solid rgba(15, 23, 42, 0.12));
  border-radius: var(--yhc-radius);
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.055);
  padding: clamp(14px, 2vw, 18px);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.yh2-shell .card:focus-within {
  box-shadow:
    0 12px 34px rgba(2, 6, 23, 0.055),
    0 0 0 4px rgba(242, 122, 26, 0.12);
}

@media (hover: hover) and (pointer: fine) {

  .yh2-shell .card:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 42px rgba(2, 6, 23, 0.075);
  }

}


.yh2-blocks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.yh2-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--yhc-radius);
  overflow: hidden;
  background: #0f172a;
  border: var(--yh-global-border, 1px solid rgba(15, 23, 42, 0.14));
}

.yh2-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yh2-faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.yh2-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.yh2-faq-card__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--yhc-primary-color);
}

.yh2-faq-card__content > :first-child {
  margin-top: 0;
}

.yh2-faq-card__content > :last-child {
  margin-bottom: 0;
}

.yh2-faq-card__content p {
  margin: 0 0 10px;
  color: var(--yhc-primary-color);
  opacity: 0.82;
  font-size: 14.5px;
  line-height: 24px;
  letter-spacing: -0.01em;
}

.yh2-faq-card__content strong {
  font-weight: 950;
}

.yh2-faq-card__content ul {
  margin: 8px 0 12px 18px;
  padding: 0;
  display: grid;
  gap: 6px;
}

.yh2-faq-card__content li {
  margin: 0;
  color: var(--yhc-primary-color);
  opacity: 0.82;
  font-size: 14.5px;
  line-height: 24px;
}

.yh2-faq-card--wide {
  grid-column: 1 / -1;
}

.yh2 .head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.yh2 h2 {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: -0.2px;
  background: var(--yhc-gradiant);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.yh2 h3 {
  margin: 0;
  font-size: clamp(14px, 2vw, 16px);
  letter-spacing: -0.1px;
  color: var(--yhc-primary-color);
}

.yh2 .grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.yh2 .row {
  display: flex;
  flex-direction: column;
}

.yh2 .row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 480px) {

  .yh2 .row.two {
    grid-template-columns: 1fr;
  }

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

}


.yh2 label {
  margin-bottom: 6px;
  line-height: 1.15;
}

.yh2 .lbl-main {
  font-size: clamp(12px, 1.6vw, 13px);
  font-weight: 950;
  color: var(--yhc-primary-color);
}

.yh2 .lbl-sub {
  margin-left: 6px;
  font-size: clamp(11px, 1.5vw, 12px);
  font-weight: 750;
  color: #9aa6b2;
}

.yh2 input,
.yh2 select {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 8px;
  padding: 9px 11px;
  font-size: 14px;
  color: var(--yhc-primary-color);
  outline: none;
  background: #fff;
  min-height: 40px;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.yh2 select:focus,
.yh2 input:focus {
  border-color: rgba(242, 122, 26, 0.55);
  box-shadow: 0 0 0 4px rgba(242, 122, 26, 0.16);
}

.yh2 select:focus-visible,
.yh2 input:focus-visible {
  border-color: rgba(242, 122, 26, 0.7);
  box-shadow: 0 0 0 4px rgba(242, 122, 26, 0.2);
}

.yh2 .input-affix {
  position: relative;
}

.yh2 .input-affix input,
.yh2 .input-affix select {
  padding-right: 40px;
}

.yh2 .input-affix::after {
  content: attr(data-suffix);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  font-size: 12px;
  color: #94a3b8;
  pointer-events: none;
}


.yh2 .marketplace-rate-row.is-hidden {
  display: none;
}

.yh2 .marketplace-search {
  position: relative;
}

.yh2 .marketplace-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  display: none;
  max-height: 290px;
  overflow: auto;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
  z-index: 20;
}

.yh2 .marketplace-results.open {
  display: block;
}

.yh2 .marketplace-result {
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  color: var(--yhc-primary-color);
  text-align: left;
  cursor: pointer;
}

.yh2 .marketplace-result:last-child {
  border-bottom: 0;
}

.yh2 .marketplace-result:hover,
.yh2 .marketplace-result:focus-visible {
  background: rgba(242, 122, 26, 0.08);
  outline: none;
}

.yh2 .marketplace-result__label {
  font-size: 13px;
  font-weight: 520;
  line-height: 1.35;
  color: #475569;
}

.yh2 .marketplace-path-segment {
  font-weight: inherit;
}

.yh2 .marketplace-path-separator {
  display: inline-block;
  margin: 0 5px;
  color: #334155;
  font-weight: 850;
}

.yh2 .marketplace-result__meta,
.yh2 .marketplace-empty,
.yh2 .marketplace-selection,
.yh2 .commission-source {
  font-size: 11.5px;
  font-weight: 850;
  line-height: 1.35;
  color: #64748b;
}

.yh2 .marketplace-empty {
  padding: 11px 12px;
}

.yh2 .marketplace-selection,
.yh2 .commission-source {
  margin-top: 7px;
}

.yh2 .marketplace-selection.selected,
.yh2 .commission-source:not(.manual) {
  color: #14532d;
}

.yh2 .seller-levels {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  margin: 0 0 8px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: #f8fafc;
}

.yh2 .seller-levels.is-hidden {
  display: none;
}

.yh2 .seller-levels label {
  margin: 0;
  cursor: pointer;
}

.yh2 .seller-levels input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.yh2 .seller-levels span {
  display: grid;
  min-height: 32px;
  place-items: center;
  border-radius: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 950;
}

.yh2 .seller-levels input:checked + span {
  background: var(--yhc-accent-color);
  color: #fff;
  box-shadow: 0 6px 14px rgba(242, 122, 26, 0.22);
}

.yh2 .seller-levels input:focus-visible + span {
  outline: 2px solid rgba(242, 122, 26, 0.65);
  outline-offset: 2px;
}

.yh2 .hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #475569;
  font-size: 11px;
  font-weight: 900;
  position: relative;
  cursor: default;
  z-index: auto;
}

.yh2 .hint::after {
  content: attr(data-hint);
  position: absolute;
  left: 50%;
  bottom: 125%;
  transform: translateX(-50%) translateY(6px);
  background: #0f172a;
  color: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  min-width: 180px;
  max-width: 240px;
  font-size: 12px;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
  z-index: 10001;
  text-align: left;
}

.yh2 .hint:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.yh2 .inline {
  padding-top: 22px;
}

.yh2 .check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-weight: 900;
  font-size: 12.5px;
  margin: 0;
  color: var(--yhc-primary-color);
}

.yh2 .check input {
  width: 16px;
  height: 16px;
  padding: 0;
  appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.22);
  border-radius: 5px;
  background: transparent;
  display: inline-grid;
  place-content: center;
  position: relative;
}

.yh2 .check input:checked {
  background: var(--yhc-accent-color);
  border-color: rgba(242, 122, 26, 0.65);
}

.yh2 .check input:checked::after {
  content: "";
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--card-bg, #fff);
  border-bottom: 2px solid var(--card-bg, #fff);
  transform: rotate(45deg);
  margin-top: -1px;
}

.yh2 .link {
  margin-top: 8px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--yhc-accent-color);
  font-weight: 900;
  font-size: 12.5px;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.yh2 .link:hover {
  text-decoration: none;
}

.yh2 .link:focus-visible {
  outline: 2px solid rgba(242, 122, 26, 0.6);
  outline-offset: 3px;
  border-radius: 8px;
}

.yh2 .collapsible {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 0.22s ease,
    opacity 0.18s ease,
    transform 0.18s ease;
  will-change: max-height, opacity, transform;
}

.yh2 .collapsible.open {
  max-height: 260px;
  opacity: 1;
  transform: translateY(0);
}

.yh2 .inline-collapsible.open {
  max-height: 60px;
}

.yh2 .ghost {
  display: flex;
  align-items: flex-end;
}

.yh2 .vatpick {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.yh2 .vatpick.is-custom {
  gap: 0;
}

.yh2 .vatpick.is-custom .sale-vat-preset-wrap {
  display: none;
}

.yh2 .vatpick.is-custom .inline-collapsible {
  max-height: none;
  opacity: 1;
  transform: none;
}

.yh2 .sale-vat-preset-wrap select {
  padding-right: 66px;
}

.yh2 .sale-vat-preset-wrap::after {
  right: 34px;
}

.yh2 .inputs {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9)),
    var(--yh-surface-contrast, #fff);
}

.yh2 .inputs .head {
  margin-bottom: 14px;
}

.yh2 .inputs h2 {
  color: var(--yhc-primary-color);
  background: none;
  font-size: 19px;
  font-weight: 760;
  letter-spacing: 0;
}

.yh2 .inputs > .grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: 12px;
}

.yh2 .inputs .row.two {
  gap: 12px;
}

.yh2 .inputs > .grid > .row.two,
.yh2 .inputs > .grid > .collapsible,
.yh2 .inputs > .grid > .row:not(:first-child):not(.marketplace-rate-row) {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {

  .yh2 .inputs > .grid {
    grid-template-columns: 1fr;
  }

  .yh2 .inputs > .grid > .row,
  .yh2 .inputs > .grid > .collapsible {
    grid-column: 1;
  }

}


.yh2 .inputs label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}

.yh2 .inputs .lbl-main {
  font-size: 12.5px;
  font-weight: 680;
  letter-spacing: 0;
}

.yh2 .inputs .lbl-sub {
  margin-left: 2px;
  font-size: 11.5px;
  font-weight: 560;
  color: #94a3b8;
}

.yh2 .inputs input,
.yh2 .inputs select {
  border-color: rgba(15, 23, 42, 0.11);
  background: rgba(255, 255, 255, 0.92);
  color: #1f2937;
  font-weight: 520;
}

.yh2 .inputs input::placeholder {
  color: #9aa6b2;
}

.yh2 .inputs .hint {
  width: 15px;
  height: 15px;
  margin-left: 2px;
  background: rgba(148, 163, 184, 0.18);
  color: #64748b;
  font-size: 10px;
  font-weight: 760;
  z-index: auto;
}

.yh2 .inputs .hint::after {
  z-index: 10001;
}



.yh2 .inputs .marketplace-search {
  position: relative;
  z-index: 20;
}

.yh2 .inputs .marketplace-results {
  z-index: 4000;
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.2);
}

.yh2 .inputs .marketplace-result__label {
  font-weight: 520;
}

.yh2 .inputs .marketplace-result__meta,
.yh2 .inputs .marketplace-empty,
.yh2 .inputs .marketplace-selection,
.yh2 .inputs .commission-source {
  font-weight: 560;
}

.yh2 .inputs .marketplace-selection.selected,
.yh2 .inputs .commission-source:not(.manual) {
  color: #166534;
}

.yh2 .inputs .seller-levels {
  --seller-index: 0;
  position: relative;
  isolation: isolate;
  gap: 4px;
  padding: 4px;
  border-color: rgba(15, 23, 42, 0.1);
  background: #eef2f7;
  overflow: hidden;
}

.yh2 .inputs .seller-levels::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: calc(4px + var(--seller-index) * ((100% - 24px) / 5 + 4px));
  width: calc((100% - 24px) / 5);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
  transition: left 0.22s ease;
  z-index: 0;
}

.yh2 .inputs .seller-levels:has(input[value="2"]:checked) {
  --seller-index: 1;
}

.yh2 .inputs .seller-levels:has(input[value="3"]:checked) {
  --seller-index: 2;
}

.yh2 .inputs .seller-levels:has(input[value="4"]:checked) {
  --seller-index: 3;
}

.yh2 .inputs .seller-levels:has(input[value="5"]:checked) {
  --seller-index: 4;
}

.yh2 .inputs .seller-levels label,
.yh2 .inputs .seller-levels span {
  position: relative;
  z-index: 1;
}

.yh2 .inputs .seller-levels span {
  min-height: 30px;
  color: #64748b;
  font-weight: 650;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.yh2 .inputs .seller-levels input:checked + span {
  background: transparent;
  color: var(--yhc-accent-color);
  box-shadow: none;
  transform: translateY(-1px);
}

.yh2 .inputs .inline {
  display: flex;
  align-items: flex-end;
}

.yh2 .inputs .check {
  width: 100%;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.75);
  color: #334155;
  font-size: 12.5px;
  font-weight: 620;
  line-height: 1.25;
}

.yh2 .inputs .check input {
  flex: 0 0 16px;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
}

.yh2 .inputs .check .hint {
  margin-left: auto;
}

.yh2 .inputs .link {
  color: #c65f14;
  font-weight: 650;
  font-size: 12px;
  text-decoration-thickness: 1px;
}

.yh2 .calc-inputs {
  background: var(--yh-surface-contrast, #fff);
}

.yh2 .calc-inputs .head {
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.yh2 .calc-inputs h2 {
  color: var(--yhc-primary-color);
  font-size: 19px;
  font-weight: 760;
}

.yh2 .calc-fields {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: 12px;
}

.yh2 .calc-fields > .field-card--platform,
.yh2 .calc-fields > .field-card--marketplace,
.yh2 .calc-fields > .field-pair,
.yh2 .calc-fields > .collapsible,
.yh2 .calc-fields > .field-card--wide {
  grid-column: 1 / -1;
}

.yh2 .field-pair {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px !important;
}

.yh2 .field-card {
  min-width: 0;
}

.yh2 .calc-inputs input,
.yh2 .calc-inputs select {
  min-height: 42px;
  border-color: rgba(15, 23, 42, 0.12);
  background: #fff;
  color: #1f2937;
  font-weight: 560;
}

.yh2 .calc-inputs input:hover,
.yh2 .calc-inputs select:hover {
  border-color: rgba(15, 23, 42, 0.2);
}

.yh2 .calc-inputs input:focus,
.yh2 .calc-inputs select:focus {
  border-color: rgba(242, 122, 26, 0.48);
  box-shadow: 0 0 0 3px rgba(242, 122, 26, 0.12);
}

.yh2 .calc-inputs input[type="number"] {
  font-variant-numeric: tabular-nums;
}

.yh2 .calc-inputs .input-affix input,
.yh2 .calc-inputs .input-affix select {
  padding-right: 42px;
}

.yh2 .calc-inputs .input-affix::after {
  color: #94a3b8;
  font-weight: 780;
}

.yh2 .calc-inputs .input-affix:not([data-suffix]) select {
  padding-right: 11px;
}

.yh2 .calc-inputs .input-affix:not([data-suffix])::after {
  display: none;
}

.yh2 .field-card--marketplace {
  padding: 0;
  border: 0;
  background: transparent;
}

.yh2 .marketplace-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.yh2 .marketplace-category-field {
  min-width: 0;
}

.yh2 .field-card--marketplace .marketplace-search input {
  padding-right: 11px;
}

.yh2 .field-card--marketplace .marketplace-results {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
}

.yh2 .field-card--marketplace .marketplace-selection,
.yh2 .field-card--commission .commission-source {
  color: #64748b;
  font-weight: 520;
}

.yh2 .field-card--marketplace .marketplace-selection.selected,
.yh2 .field-card--commission .commission-source:not(.manual) {
  color: #64748b;
}

.yh2 .field-card--marketplace .marketplace-selection.selected {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
}

.yh2 .marketplace-selection__label {
  color: #64748b;
  font-weight: 520;
}

.yh2 .marketplace-selection__meta {
  color: #94a3b8;
  font-weight: 520;
}

.yh2 .seller-level-panel {
  width: 176px;
  min-width: 176px;
}

.yh2 .seller-level-title {
  margin-bottom: 6px;
  color: #64748b;
  font-size: 11px;
  font-weight: 720;
  line-height: 1;
}

.yh2 .inputs .seller-level-panel .seller-levels {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  min-height: 42px;
  margin: 0;
  padding: 4px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #f8fafc;
  overflow: hidden;
}

.yh2 .inputs .seller-level-panel .seller-levels::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc((100% - 20px) / 5);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1px 5px rgba(15, 23, 42, 0.1);
  transition: left 0.18s ease;
  z-index: 0;
}

.yh2 .inputs .seller-level-panel .seller-levels:has(input[value="2"]:checked)::before {
  left: calc(4px + ((100% - 20px) / 5) + 3px);
}

.yh2 .inputs .seller-level-panel .seller-levels:has(input[value="3"]:checked)::before {
  left: calc(4px + ((100% - 20px) / 5) + 3px + ((100% - 20px) / 5) + 3px);
}

.yh2 .inputs .seller-level-panel .seller-levels:has(input[value="4"]:checked)::before {
  left: calc(4px + ((100% - 20px) / 5) + 3px + ((100% - 20px) / 5) + 3px + ((100% - 20px) / 5) + 3px);
}

.yh2 .inputs .seller-level-panel .seller-levels:has(input[value="5"]:checked)::before {
  left: calc(4px + ((100% - 20px) / 5) + 3px + ((100% - 20px) / 5) + 3px + ((100% - 20px) / 5) + 3px + ((100% - 20px) / 5) + 3px);
}

.yh2 .inputs .seller-level-panel .seller-levels label {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0;
  min-width: 0;
  cursor: pointer;
}

.yh2 .inputs .seller-level-panel .seller-levels input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.yh2 .inputs .seller-level-panel .seller-levels span {
  display: grid;
  place-items: center;
  min-height: 32px;
  width: 100%;
  border-radius: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 720;
  line-height: 1;
  text-align: center;
  transform: none;
  transition: color 0.16s ease;
  user-select: none;
}

.yh2 .inputs .seller-level-panel .seller-levels input:checked + span {
  background: transparent;
  color: var(--yhc-accent-color);
  box-shadow: none;
  transform: none;
}

.yh2 .inputs .seller-level-panel .seller-levels input:focus-visible + span {
  outline: 2px solid rgba(242, 122, 26, 0.45);
  outline-offset: 1px;
}

.yh2 .field-card--option {
  display: flex !important;
  align-items: flex-end;
  min-width: 0;
}

.yh2 .field-card--option .check {
  min-height: 42px;
  border-color: rgba(15, 23, 42, 0.1);
  background: #f8fafc;
}

.yh2 .field-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.yh2 .field-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.yh2 .field-pair--compact {
  gap: 10px !important;
}

.yh2 .advanced-settings-row.open {
  overflow: visible;
  padding-bottom:8px;
}

.yh2 .advanced-settings-row .field-card--compact {
  min-width: 0;
}

@media (max-width: 760px) {

  .yh2 .calc-fields,
  .yh2 .field-pair,
  .yh2 .field-pair--compact,
  .yh2 .marketplace-controls {
    grid-template-columns: 1fr;
  }

  .yh2 .calc-fields > .field-card,
  .yh2 .calc-fields > .field-pair,
  .yh2 .calc-fields > .collapsible {
    grid-column: 1;
  }

  .yh2 .seller-level-panel {
    width: 100%;
    min-width: 0;
  }

}


.yh2 .risk {
  padding: 9px 12px;
  border-radius: 8px;
  font-weight: 950;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f1f5f9;
  min-width: 110px;
  text-align: center;
}

.yh2 .risk.red {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.25);
  color: #7f1d1d;
}

.yh2 .risk.yellow {
  background: rgba(242, 122, 26, 0.12);
  border-color: rgba(242, 122, 26, 0.28);
  color: #7a3a0c;
}

.yh2 .risk.green {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
  color: #14532d;
}

.yh2 .metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 480px) {

  .yh2 .metrics {
    grid-template-columns: 1fr;
  }

}


.yh2 .m {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  padding: 10px 12px;
  background: #f8fafc;
}

.yh2 .m.wide {
  grid-column: 1 / -1;
}

.yh2 .m .k {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.yh2 .m .k .hint {
  margin-left: auto;
}

.yh2 .m .v {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.2px;
  font-variant-numeric: tabular-nums;
}

.yh2 .tone-blue {
  background: rgba(2, 132, 199, 0.1);
  border-color: rgba(2, 132, 199, 0.2);
}

.yh2 .tone-redsoft {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.18);
}

.yh2 .tone-risk-red {
  background: rgba(239, 68, 68, 0.1) !important;
  border-color: rgba(239, 68, 68, 0.25) !important;
}

.yh2 .tone-risk-yellow {
  background: rgba(242, 122, 26, 0.12) !important;
  border-color: rgba(242, 122, 26, 0.28) !important;
}

.yh2 .tone-risk-green {
  background: rgba(34, 197, 94, 0.12) !important;
  border-color: rgba(34, 197, 94, 0.25) !important;
}

.yh2 .pie-wrap {
  margin-top: 12px;
}

.yh2 .pie-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.yh2 .pie-title {
  font-size: 12.5px;
  font-weight: 950;
}

.yh2 .tiny {
  color: #64748b;
  font-weight: 850;
  font-size: 11.5px;
}

.yh2 .pie-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 12px;
  align-items: start;
}

@media (max-width: 480px) {

  .yh2 .pie-row {
    grid-template-columns: 1fr;
  }

}


.yh2 .pie-shell {
  position: relative;
  width: 240px;
  height: 240px;
}

.yh2 .pie {
  width: 240px;
  height: 240px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: conic-gradient(#e2e8f0 0deg 360deg);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.92);
}

.yh2 .pie-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.yh2 .pl {
  position: absolute;
  font-size: 11.5px;
  font-weight: 950;
  color: var(--yhc-primary-color);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  padding: 4px 6px;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.yh2 .legend {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.yh2 .leg-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px dashed rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12.5px;
  background: #fff;
}

.yh2 .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  flex: 0 0 auto;
}

.yh2 .leg-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--yhc-primary-color);
  font-weight: 900;
}

.yh2 .leg-right {
  color: #475569;
  font-weight: 900;
}

.yh2 .below {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 480px) {

  .yh2 .below {
    grid-template-columns: 1fr;
  }

}


.yh2 .be,
.yh2 .fee {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
}

.yh2 .be .k,
.yh2 .fee .k {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 900;
}

.yh2 .be .v {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.yh2 .fee .v {
  margin-top: 6px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.yh2 .fee .v.small {
  font-size: 13px;
  color: #334155;
}

.yh2 .qty-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
  align-items: center;
}

@media (max-width: 480px) {

  .yh2 .qty-row {
    grid-template-columns: 1fr;
  }

}


.yh2 .qty-box input {
  font-weight: 950;
}

.yh2 .qty-range {
  display: grid;
  grid-template-columns: 20px 1fr 34px;
  gap: 10px;
  align-items: center;
  color: #64748b;
  font-weight: 900;
  font-size: 12px;
}

.yh2 #qtySlider {
  width: 100%;
  display: block;
  padding: 0;
  margin: 0;
  background: transparent;
  accent-color: var(--yhc-accent-color);
  --track: rgba(242, 122, 26, 0.25);
  --thumb: var(--yhc-accent-color);
}

.yh2 input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: var(--track);
}

.yh2 input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  margin-top: -6px;
  border-radius: 999px;
  background: var(--thumb);
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.yh2 input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: var(--track);
}

.yh2 input[type="range"]::-moz-range-thumb {
  height: 18px;
  width: 18px;
  border-radius: 999px;
  background: var(--thumb);
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.yh2 .mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 480px) {

  .yh2 .mini-grid {
    grid-template-columns: 1fr;
  }

}


.yh2 .mini {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  padding: 10px 12px;
  background: #f8fafc;
}

.yh2 .mini .k {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 950;
}

.yh2 .mini .v {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {

  .yh2-shell .card {
    transition: none;
  }

  .yh2 input,
  .yh2 select,
  .yh2 .collapsible {
    transition: none;
  }

}


.yh2 .tone-owe {
  background: rgba(242, 122, 26, 0.12);
  border-color: rgba(242, 122, 26, 0.28);
}

.yh2 .tone-credit {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.22);
}

.yh2 .mini.total {
  grid-column: 1 / -1;
  background: #fff;
}

.yh2 .mini.total.good {
  border-color: rgba(34, 197, 94, 0.25);
}

.yh2 .mini.total.bad {
  border-color: rgba(239, 68, 68, 0.25);
}

.yh2 .mini.total.neutral {
  border-color: rgba(242, 122, 26, 0.28);
}

.yh2 .kdv-note {
  margin-top: 10px;
  font-size: 12.5px;
  color: #475569;
  font-weight: 850;
}

.yh2 .roi-badge {
  padding: 9px 12px;
  border-radius: 8px;
  font-weight: 950;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f1f5f9;
  min-width: 110px;
  text-align: center;
}

.yh2 .roi-badge.red {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.25);
  color: #7f1d1d;
}

.yh2 .roi-badge.yellow {
  background: rgba(242, 122, 26, 0.12);
  border-color: rgba(242, 122, 26, 0.28);
  color: #7a3a0c;
}

.yh2 .roi-badge.green {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
  color: #14532d;
}

.yh2 .roi-layout {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {

  .yh2 .roi-layout {
    justify-content: center;
  }

}


.yh2 .roi-pyramid-wrap {
  margin-top: 6px;
}

.yh2 .roi-pyramid {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.yh2 .roi-pyr-layer polygon {
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.yh2 .roi-pyr-layer.revenue polygon {
  fill: rgba(59, 130, 246, 0.14);
  stroke: rgba(59, 130, 246, 0.3);
}

.yh2 .roi-pyr-layer.cost polygon {
  fill: rgba(242, 122, 26, 0.14);
  stroke: rgba(242, 122, 26, 0.3);
}

.yh2 .roi-pyr-layer.expenses polygon {
  fill: rgba(239, 68, 68, 0.14);
  stroke: rgba(239, 68, 68, 0.28);
}

.yh2 .roi-pyr-layer.qty polygon {
  fill: rgba(56, 189, 248, 0.16);
  stroke: rgba(56, 189, 248, 0.32);
}

.yh2 .roi-pyr-layer.roi polygon {
  fill: rgba(34, 197, 94, 0.18);
  stroke: rgba(34, 197, 94, 0.3);
}

.yh2 .roi-pyr-text {
  font-family: var(--yhc-font);
  fill: var(--yhc-primary-color);
}

.yh2 .roi-pyr-label {
  font-size: 10.5px;
  font-weight: 900;
  fill: #475569;
}

.yh2 .roi-pyr-value {
  font-size: 13px;
  font-weight: 950;
}

@keyframes yh-heading-title-badge-shimmer {
  0% {
    left: -0.8rem;
  }
  100% {
    left: 100%;
  }
}

.yh-heading-title {
  width: var(--yh-heading-title-width, 100%);
  font-size: var(--yh-heading-title-font-size, 20px);
  --yh-custom-bg: linear-gradient(325deg, #111111 0, #2a2a2a 55%, #111111 90%);

  display: flex;
  flex-direction: column;

  .yh-heading-title__badge {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    margin: 0 0 1em;
    overflow: hidden;
    padding: 0.5em 1em;
    display: inline-flex;
    align-items: center;
    background-image: var(--yh-gradiant);
    color: var(--yh-text-main);
    font-size: 0.7em;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.8;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .yh-heading-title__title {
    font-size: clamp(2.2rem, 4.5vw, 4.2rem);
    font-weight: 800;
    color: var(--yh-primary-color);
    line-height: 1.05;
    margin-bottom: 0.25em;
  }

  .yh-heading-title__focus {
    background: var(--yh-gradiant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }

  .yh-heading-title__desc {
    color: var(--yh-primary-color);
    opacity: 0.8;
    font-size: clamp(0.95em, 1.25vw, 1rem);
    width: 100%;
    max-width: 50em;
    margin-bottom: 0.3em;
    line-height: 1.6;
  }

  .yh-heading-title__buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .yh-heading-title__btn {
    cursor: pointer;
    padding: 0.9em 1.8em;
    min-width: 140px;
    min-height: 48px;
    font-size: 0.9em;
    font-weight: 800;
    transition: var(--yh-transition-ultra);
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: none;
    user-select: none;
  }

  .yh-heading-title__btn:focus-visible {
    outline: 2px solid rgba(242, 122, 26, 0.6);
    outline-offset: 2px;
  }

  .yh-heading-title__btn:hover {
    transform: translateY(-2px);
  }

  .yh-heading-title__btn--fill:hover {
    background-position: right top;
  }

  .yh-heading-title__btn--stroke:hover {
    background-position: right top;
  }

  .yh-heading-title__btn:active {
    transform: scale(0.97);
  }

  .yh-heading-title__btn--fill {
    color: var(--yh-text-main);
    background-image: var(--yh-custom-bg);
    background-size: 200% 200%;
    background-position: left top;
    background-repeat: no-repeat;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.16);
  }

  .yh-heading-title__btn--stroke {
    background-image: linear-gradient(
      325deg,
      #ffffff 0,
      #fff5ed 55%,
      #ffffff 90%
    );
    background-size: 200% 200%;
    background-position: left top;
    background-repeat: no-repeat;
    border: 2px solid var(--yh-accent-color);
    color: var(--yh-accent-color);
    box-shadow: 0 6px 18px rgba(242, 122, 26, 0.12);
    backdrop-filter: blur(10px);
  }
}

.yh-heading-title__badge[shimmer="true"]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0.8rem;
  background-color: #fff;
  mix-blend-mode: soft-light;
  opacity: 0.8;
  transform: skew(-12deg);
  pointer-events: none;
  animation: yh-heading-title-badge-shimmer 2.5s
    cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
}

.yh-heading-title--align-left {
  align-items: flex-start;
  text-align: left;
  margin-right: auto;
}
.yh-heading-title--align-center {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.yh-heading-title--align-right {
  align-items: flex-end;
  text-align: right;
  margin-left: auto;
}

@media (max-width: 768px) {

  .yh-heading-title {
    --yh-heading-title-width: 100%;
    font-size: 18px;
  }

}


@media (max-width: 480px) {

  .yh-heading-title {
    font-size: 16px;
  }

}

