/* 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;
  }

}


.yh-woo-page {
  --yh-woo-surface: var(--yh-surface-contrast, #ffffff);
  --yh-woo-surface-soft: var(--yh-surface, rgb(251, 248, 245));
  --yh-woo-border-color: rgba(15, 23, 42, 0.1);
  --yh-woo-border: 1px solid var(--yh-woo-border-color);
  --yh-woo-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  --yh-woo-text: var(--yh-primary-color, #2c2c2c);
  --yh-woo-muted: rgba(44, 44, 44, 0.66);
  --yh-woo-subtle: rgba(44, 44, 44, 0.48);
  --yh-woo-accent: var(--yh-accent-color, #f27a1a);
  --yh-woo-accent-hover: #d95f0d;
  --yh-woo-focus: rgba(242, 122, 26, 0.24);
  --yh-woo-radius: 8px;
  --yh-custom-radius: 8px;
  --yh-custom-field-radius: 8px;
  --yh-woo-field-height: 42px;

  color: var(--yh-woo-text);
}

.yh-woo-page__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px 56px;
  min-height: 100dvh;
}

.yh-woo-page__hero {
  margin-bottom: 16px;
}

.yh-woo-page__hero-card {
  padding: 22px 24px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(249, 247, 243, 0.96)
  );
  color: var(--yh-text-color, #0f172a);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.yh-woo-page__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(248, 150, 29, 0.12);
  color: #9a5d12;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.yh-woo-page__title {
  margin: 12px 0 6px;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.12;
  color: inherit;
}

.yh-woo-page__desc {
  max-width: 620px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.68);
}

.yh-woo-page__stepper {
  margin-bottom: 18px;
}

.yh-woo-page__surface--cart {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.yh-woo-page__empty,
.yh-woo-cart-empty-card {
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--yh-custom-radius);
  background: rgba(255, 255, 255, 0.98);
  color: var(--yh-woo-muted);
  font-size: 13px;
}

.yh-woo-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 14px;
  align-items: start;
  color: var(--yh-woo-text);
}

.yh-woo-cart-layout--empty {
  display: block;
}

.yh-woo-page--cart .woocommerce-notices-wrapper,
.yh-woo-page--cart .woocommerce-message,
.yh-woo-page--cart .woocommerce-info,
.yh-woo-page--cart .woocommerce-error,
.yh-woo-page--cart .cart-empty,
.yh-woo-page--cart .return-to-shop {
  grid-column: 1 / -1;
}

.yh-woo-page--cart .woocommerce-notices-wrapper:empty {
  display: none;
}

.yh-woo-page--cart .woocommerce-message,
.yh-woo-page--cart .woocommerce-info,
.yh-woo-page--cart .woocommerce-error,
.yh-woo-page--cart .cart-empty {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--yh-custom-radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: none;
  font-size: 13px;
}

.yh-woo-page--cart .yh-woo-cart-card {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: var(--yh-woo-border);
  border-radius: var(--yh-custom-radius);
  background: var(--yh-woo-surface);
}

.yh-woo-cart-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  background: var(--yh-woo-surface-soft);
}

.yh-woo-cart-card__header h2 {
  margin: 0 0 3px;
  color: #111827;
  font-size: 16px;
  line-height: 1.25;
}

.yh-woo-cart-card__header p {
  margin: 0;
  color: rgba(15, 23, 42, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

.yh-woo-cart-card__header span {
  flex: 0 0 auto;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.yh-woo-cart-table-shell {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.yh-woo-page--cart table.shop_table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  border-radius: 0;
  background: transparent;
}

.yh-woo-page--cart .yh-woo-cart-card table.shop_table {
  min-width: 680px;
}

.yh-woo-page--cart table.shop_table th,
.yh-woo-page--cart table.shop_table td {
  padding: 12px 10px;
  border: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  font-size: 13px;
  line-height: 1.4;
  vertical-align: middle;
}

.yh-woo-page--cart table.shop_table thead th {
  padding-top: 10px;
  padding-bottom: 10px;
  color: rgba(15, 23, 42, 0.54);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(247, 245, 241, 0.62);
}

.yh-woo-page--cart .yh-woo-cart-card table.shop_table tbody tr:last-child td,
.yh-woo-page--cart .yh-woo-cart-card table.shop_table tbody tr:last-child th {
  border-bottom: 0;
}

.yh-woo-page--cart .product-remove {
  width: 36px;
  text-align: center;
}

.yh-woo-page--cart .product-remove .remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: rgba(15, 23, 42, 0.52) !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.yh-woo-page--cart .product-remove .remove:hover,
.yh-woo-page--cart .product-remove .remove:focus-visible {
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c !important;
}

.yh-woo-page--cart .product-thumbnail {
  width: 64px;
}

.yh-woo-page--cart .product-thumbnail a,
.yh-woo-page--cart .product-thumbnail img {
  display: block;
}

.yh-woo-page--cart .product-thumbnail img {
  width: 48px;
  height: 48px;
  padding: 6px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--yh-custom-field-radius);
  background: var(--yh-woo-surface-soft);
  object-fit: contain;
  box-sizing: border-box;
}

.yh-woo-page--cart .product-name a {
  color: inherit;
  font-weight: 650;
  text-decoration: none;
}

.yh-woo-page--cart .product-name a:hover,
.yh-woo-page--cart .product-name a:focus-visible {
  color: #111827;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.yh-woo-page--cart .product-name .variation,
.yh-woo-page--cart .product-name .wc-item-meta,
.yh-woo-page--cart .product-name .backorder_notification {
  margin: 4px 0 0;
  color: rgba(15, 23, 42, 0.62);
  font-size: 12px;
}

.yh-woo-page--cart .product-name .variation p,
.yh-woo-page--cart .product-name .wc-item-meta p {
  margin: 0;
}

.yh-woo-page--cart .product-price,
.yh-woo-page--cart .product-quantity,
.yh-woo-page--cart .product-subtotal {
  text-align: right;
}

.yh-woo-page--cart .product-price,
.yh-woo-page--cart .product-subtotal {
  white-space: nowrap;
}

.yh-woo-page--cart .product-subtotal {
  font-weight: 650;
}

.yh-woo-page--cart .quantity {
  display: inline-flex;
  justify-content: flex-end;
}

.yh-woo-page--cart .quantity .qty {
  width: 64px;
  min-height: 36px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--yh-custom-field-radius);
  background: #fff;
  padding: 0 8px;
  color: var(--yh-woo-text);
  font-size: 13px;
  text-align: center;
  box-shadow: none;
}

.yh-woo-page--cart .quantity .qty:focus {
  border-color: rgba(242, 122, 26, 0.56);
  box-shadow: 0 0 0 3px var(--yh-woo-focus);
  outline: none;
}

.yh-woo-cart-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  background: var(--yh-woo-surface-soft);
}

.yh-woo-page--cart .coupon,
.yh-woo-cart-actions__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.yh-woo-page--cart .coupon {
  flex: 1 1 360px;
  min-width: 0;
}

.yh-woo-page--cart .coupon input.input-text {
  flex: 1 1 180px;
  min-width: 0;
  min-height: var(--yh-woo-field-height);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--yh-custom-field-radius);
  background: var(--yh-woo-surface);
  padding: 0 12px;
  color: var(--yh-woo-text);
  font-size: 13px;
  box-shadow: none;
}

.yh-woo-page--cart .coupon input.input-text:focus {
  border-color: rgba(242, 122, 26, 0.56);
  box-shadow: 0 0 0 3px var(--yh-woo-focus);
  outline: none;
}

.yh-woo-page--cart .coupon button.button,
.yh-woo-page--cart .yh-woo-cart-actions__buttons button.button {
  border-color: rgba(15, 23, 42, 0.12);
  background: var(--yh-woo-surface);
  color: var(--yh-woo-text);
}

.yh-woo-page--cart .coupon button.button:hover,
.yh-woo-page--cart .coupon button.button:focus-visible,
.yh-woo-page--cart .yh-woo-cart-actions__buttons button.button:hover,
.yh-woo-page--cart .yh-woo-cart-actions__buttons button.button:focus-visible {
  border-color: rgba(242, 122, 26, 0.3);
  background: rgba(242, 122, 26, 0.08);
  color: #9a5d12;
}

.yh-woo-page--cart .woocommerce .button,
.yh-woo-page--cart .woocommerce button.button,
.yh-woo-page--cart .woocommerce input.button,
.yh-woo-page--cart .woocommerce a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--yh-woo-field-height);
  padding: 0 14px;
  border: 1px solid var(--yh-woo-border-color);
  border-radius: var(--yh-custom-field-radius);
  background: var(--yh-woo-surface);
  color: var(--yh-woo-text);
  font-family: inherit;
  font-size: 13px;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  text-shadow: none;
  box-shadow: none;
  cursor: pointer;
  appearance: none;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.yh-woo-page--cart .woocommerce .button:hover,
.yh-woo-page--cart .woocommerce .button:focus-visible,
.yh-woo-page--cart .woocommerce button.button:hover,
.yh-woo-page--cart .woocommerce button.button:focus-visible,
.yh-woo-page--cart .woocommerce input.button:hover,
.yh-woo-page--cart .woocommerce input.button:focus-visible,
.yh-woo-page--cart .woocommerce a.button:hover,
.yh-woo-page--cart .woocommerce a.button:focus-visible {
  border-color: rgba(242, 122, 26, 0.3);
  background: rgba(242, 122, 26, 0.08);
  color: #9a5d12;
  outline: none;
}

.yh-woo-page--cart .woocommerce .button:disabled,
.yh-woo-page--cart .woocommerce button.button:disabled,
.yh-woo-page--cart .woocommerce button.button:disabled[disabled],
.yh-woo-page--cart .woocommerce input.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.yh-woo-page--cart .cart-collaterals {
  position: sticky;
  top: 20px;
  width: 100%;
  min-width: 0;
}

.yh-woo-page--cart .cart_totals {
  float: none !important;
  width: 100% !important;
  max-width: none;
  margin: 0;
  padding: 16px;
  border: var(--yh-woo-border);
  border-radius: var(--yh-custom-radius);
  background: var(--yh-woo-surface);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.yh-woo-page--cart .cart_totals h2 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.25;
  color: var(--yh-woo-text);
}

.yh-woo-page--cart .cart_totals table.shop_table {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.yh-woo-page--cart .cart_totals table.shop_table th,
.yh-woo-page--cart .cart_totals table.shop_table td {
  padding: 9px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  font-size: 13px;
  line-height: 1.4;
  vertical-align: top;
}

.yh-woo-page--cart .cart_totals table.shop_table th {
  color: var(--yh-woo-muted);
  font-weight: 600;
  text-align: left;
  background: transparent;
}

.yh-woo-page--cart .cart_totals table.shop_table td {
  text-align: right;
  font-weight: 650;
}

.yh-woo-page--cart .cart_totals .order-total th,
.yh-woo-page--cart .cart_totals .order-total td {
  padding-top: 12px;
  border-bottom: 0;
  color: var(--yh-woo-text);
  font-size: 16px;
  font-weight: 760;
}

.yh-woo-page--cart .cart_totals small,
.yh-woo-page--cart .cart_totals .includes_tax {
  color: rgba(15, 23, 42, 0.56);
  font-size: 11px;
  font-weight: 500;
}

.yh-woo-page--cart .woocommerce-shipping-calculator {
  margin: 8px 0 0;
  text-align: left;
}

.yh-woo-page--cart .shipping-calculator-button {
  color: #9a5d12;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.yh-woo-page--cart .shipping-calculator-form {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.yh-woo-page--cart .shipping-calculator-form p {
  margin: 0;
}

.yh-woo-page--cart .shipping-calculator-form input,
.yh-woo-page--cart .shipping-calculator-form select {
  min-height: 38px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--yh-custom-field-radius);
  padding: 0 10px;
  font-size: 13px;
  box-shadow: none;
}

.yh-woo-page--cart .shipping-calculator-form input:focus,
.yh-woo-page--cart .shipping-calculator-form select:focus {
  border-color: rgba(242, 122, 26, 0.56);
  box-shadow: 0 0 0 3px var(--yh-woo-focus);
  outline: none;
}

.yh-woo-page--cart .wc-proceed-to-checkout {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.yh-woo-page--cart .woocommerce .wc-proceed-to-checkout .checkout-button,
.yh-woo-page--cart .cart_totals .wc-proceed-to-checkout a.checkout-button,
.yh-woo-page--cart
  .cart_totals
  .wc-proceed-to-checkout
  a.checkout-button.button,
.yh-woo-page--cart
  .cart_totals
  .wc-proceed-to-checkout
  a.checkout-button.button.alt {
  display: inline-flex;
  float: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 0 18px;
  border: 1px solid rgba(242, 122, 26, 0.24);
  border-radius: var(--yh-custom-field-radius);
  background: var(--yh-woo-accent);
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  box-shadow: none;
  appearance: none;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.yh-woo-page--cart .woocommerce .wc-proceed-to-checkout .checkout-button:hover,
.yh-woo-page--cart
  .woocommerce
  .wc-proceed-to-checkout
  .checkout-button:focus-visible,
.yh-woo-page--cart .cart_totals .wc-proceed-to-checkout a.checkout-button:hover,
.yh-woo-page--cart
  .cart_totals
  .wc-proceed-to-checkout
  a.checkout-button:focus-visible,
.yh-woo-page--cart
  .cart_totals
  .wc-proceed-to-checkout
  a.checkout-button.button.alt:hover,
.yh-woo-page--cart
  .cart_totals
  .wc-proceed-to-checkout
  a.checkout-button.button.alt:focus-visible {
  border-color: rgba(217, 95, 13, 0.34);
  background: var(--yh-woo-accent-hover);
  color: #ffffff;
  transform: translateY(-1px);
  outline: none;
}

.yh-woo-cart-collateral-extra {
  grid-column: 1 / -1;
}

.yh-woo-cart-collateral-extra .cross-sells {
  margin: 0;
  padding: 16px;
  border: var(--yh-woo-border);
  border-radius: var(--yh-custom-radius);
  background: var(--yh-woo-surface);
}

.yh-woo-cart-collateral-extra .cross-sells h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 16px;
  line-height: 1.25;
}

.yh-woo-page--cart .return-to-shop {
  margin: 12px 0 0;
}

.yh-woo-page--cart .return-to-shop .button,
.yh-woo-page--cart .return-to-shop a.button.wc-backward {
  border-color: rgba(242, 122, 26, 0.24);
  background: var(--yh-woo-accent);
  color: #ffffff;
}

.yh-woo-page--cart .return-to-shop .button:hover,
.yh-woo-page--cart .return-to-shop .button:focus-visible,
.yh-woo-page--cart .return-to-shop a.button.wc-backward:hover,
.yh-woo-page--cart .return-to-shop a.button.wc-backward:focus-visible {
  border-color: rgba(217, 95, 13, 0.34);
  background: var(--yh-woo-accent-hover);
  color: #ffffff;
}

@media (max-width: 980px) {

  .yh-woo-cart-layout {
    grid-template-columns: 1fr;
  }

  .yh-woo-page--cart .cart-collaterals {
    position: static;
  }

}


@media (max-width: 782px) {

  .yh-woo-page__inner {
    padding: 22px 16px 40px;
  }

  .yh-woo-cart-card__header {
    align-items: flex-start;
    padding: 13px 14px;
  }

  .yh-woo-page--cart .yh-woo-cart-card table.shop_table {
    display: block;
    min-width: 0;
  }

  .yh-woo-page--cart .yh-woo-cart-card table.shop_table thead {
    display: none;
  }

  .yh-woo-page--cart .yh-woo-cart-card table.shop_table tbody {
    display: grid;
    gap: 10px;
    padding: 12px;
  }

  .yh-woo-page--cart .yh-woo-cart-card table.shop_table tbody tr.cart_item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 28px;
    grid-template-areas:
      "thumb name remove"
      "thumb price price"
      "thumb quantity quantity"
      "thumb subtotal subtotal";
    gap: 7px 10px;
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--yh-custom-radius);
    background: rgba(255, 255, 255, 0.92);
  }

  .yh-woo-page--cart .yh-woo-cart-card table.shop_table tbody tr.cart_item td {
    display: block !important;
    width: auto !important;
    padding: 0 !important;
    border: 0 !important;
    text-align: left !important;
  }

  .yh-woo-page--cart
    .yh-woo-cart-card
    table.shop_table
    tbody
    tr.cart_item
    td::before {
    display: none !important;
  }

  .yh-woo-page--cart .yh-woo-cart-card .product-thumbnail {
    grid-area: thumb;
  }

  .yh-woo-page--cart .yh-woo-cart-card .product-name {
    grid-area: name;
    min-width: 0;
  }

  .yh-woo-page--cart .yh-woo-cart-card .product-remove {
    grid-area: remove;
    justify-self: end;
  }

  .yh-woo-page--cart .yh-woo-cart-card .product-price {
    grid-area: price;
  }

  .yh-woo-page--cart .yh-woo-cart-card .product-quantity {
    grid-area: quantity;
  }

  .yh-woo-page--cart .yh-woo-cart-card .product-subtotal {
    grid-area: subtotal;
  }

  .yh-woo-page--cart .yh-woo-cart-card .product-price,
  .yh-woo-page--cart .yh-woo-cart-card .product-quantity,
  .yh-woo-page--cart .yh-woo-cart-card .product-subtotal {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 28px;
    color: rgba(15, 23, 42, 0.74);
    font-size: 12px;
  }

  .yh-woo-page--cart .yh-woo-cart-card .product-price::before,
  .yh-woo-page--cart .yh-woo-cart-card .product-quantity::before,
  .yh-woo-page--cart .yh-woo-cart-card .product-subtotal::before {
    content: attr(data-title);
    display: block !important;
    float: none;
    color: rgba(15, 23, 42, 0.54);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .yh-woo-page--cart .product-thumbnail img {
    width: 52px;
    height: 52px;
  }

  .yh-woo-page--cart .quantity .qty {
    width: 68px;
    min-height: 34px;
  }

  .yh-woo-cart-actions,
  .yh-woo-page--cart .coupon,
  .yh-woo-cart-actions__buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .yh-woo-page--cart .coupon input.input-text,
  .yh-woo-page--cart .woocommerce .button,
  .yh-woo-page--cart .woocommerce button.button,
  .yh-woo-page--cart .woocommerce input.button,
  .yh-woo-page--cart .woocommerce a.button {
    width: 100%;
  }

  .yh-woo-page--cart .cart_totals {
    padding: 14px;
  }

}


.woocommerce-info::before{
	    position: sticky !important;
    top: 1px !important;
	color:inherit !important;
}

.yh-checkout-stepper {
  width: 100%;
}

.yh-checkout-stepper__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.yh-checkout-stepper__item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 1 auto;
  min-width: 0;
}

.yh-checkout-stepper__item:not(:last-child) {
  flex: 1 1 0;
}

.yh-checkout-stepper__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.yh-checkout-stepper__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 999px;
  border: 1px solid rgba(248, 150, 29, 0.24);
  background: rgba(248, 150, 29, 0.1);
  color: #c96d07;
  font-size: 14px;
  font-weight: 700;
}

.yh-checkout-stepper__label {
  display: inline-block;
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.68);
}

.yh-checkout-stepper__connector {
  display: block;
  flex: 1 1 auto;
  min-width: 24px;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(248, 150, 29, 0.38), rgba(15, 23, 42, 0.14));
}

.yh-checkout-stepper__item--active .yh-checkout-stepper__badge {
  border-color: transparent;
  background: linear-gradient(135deg, #f8961d, #ffb648);
  color: #fff;
  box-shadow: 0 12px 22px rgba(248, 150, 29, 0.28);
}

.yh-checkout-stepper__item--active .yh-checkout-stepper__label {
  color: #0f172a;
}

.yh-checkout-stepper__item--complete .yh-checkout-stepper__badge {
  border-color: rgba(34, 197, 94, 0.16);
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.yh-checkout-stepper__item--complete .yh-checkout-stepper__label {
  color: rgba(15, 23, 42, 0.88);
}

.yh-checkout-stepper__item--complete .yh-checkout-stepper__connector {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.34), rgba(248, 150, 29, 0.28));
}

.yh-checkout-stepper__item--upcoming .yh-checkout-stepper__badge {
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(148, 163, 184, 0.08);
  color: rgba(15, 23, 42, 0.52);
}

.yh-checkout-stepper__item--upcoming .yh-checkout-stepper__label {
  color: rgba(15, 23, 42, 0.48);
}

@media (max-width: 768px) {

  .yh-checkout-stepper__list {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
  }

  .yh-checkout-stepper__item {
    gap: 0;
    flex: 0 0 auto;
  }

  .yh-checkout-stepper__connector {
    display: none;
  }

}

